instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query
|
as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat
|
SELECT COUNT Score in final FROM table WHERE Opponents in final = Alexandra Fusai Nathalie Tauziat
|
Translate the following into a SQL query
|
what are every one of the rivals in conclusive where title is zürich
|
SELECT Opponents in final FROM table WHERE Championship = Zürich
|
Translate the following into a SQL query
|
what are all the score in conclusive where title is rome
|
SELECT Score in final FROM table WHERE Championship = Rome
|
Translate the following into a SQL query
|
At what # does 10 3 bbl/day (2006) equal 5097?
|
SELECT MIN # FROM table WHERE 10 3 bbl/day (2006) = 5097
|
Translate the following into a SQL query
|
In how many importing nations is 10 3 m 3 /day (2006) equivalent to 150?
|
SELECT COUNT Importing Nation FROM table WHERE 10 3 m 3 /day (2006) = 150
|
Translate the following into a SQL query
|
What is the highest number in 10 3 m 3 /day (2011) where 10 3 bbl/day (2006) is equivalent to 787?
|
SELECT MAX 10 3 m 3 /day (2011) FROM table WHERE 10 3 bbl/day (2006) = 787
|
Translate the following into a SQL query
|
Name the most 10 3 bbl/d (2008) for present share being 1.7%
|
SELECT MAX 10 3 bbl/d (2008) FROM table WHERE Present Share = 1.7%
|
Translate the following into a SQL query
|
Name the present share for australia
|
SELECT Present Share FROM table WHERE Producing Nation = Australia
|
Translate the following into a SQL query
|
Name the 10 3 bbl/d (2009) when 10 3 bbl/d (2007) is 180
|
SELECT 10 3 bbl/d (2009) FROM table WHERE 10 3 bbl/d (2007) = 180
|
Translate the following into a SQL query
|
Name the location attendance for utah
|
SELECT Location Attendance FROM table WHERE Team = Utah
|
Translate the following into a SQL query
|
How many games were played against houston?
|
SELECT COUNT Game FROM table WHERE Team = Houston
|
Translate the following into a SQL query
|
What team was played on november 24?
|
SELECT Team FROM table WHERE Date = November 24
|
Translate the following into a SQL query
|
Who had the most points in game 4?
|
SELECT High points FROM table WHERE Game = 4
|
Translate the following into a SQL query
|
Who had the highest points against new york?
|
SELECT High points FROM table WHERE Team = New York
|
Translate the following into a SQL query
|
Name the syrian christians for thiruvananthapuram
|
SELECT Syrian Christians FROM table WHERE District = Thiruvananthapuram
|
Translate the following into a SQL query
|
Name the ezhavas for muslims being 5.4
|
SELECT Ezhavas FROM table WHERE Muslims = 5.4
|
Translate the following into a SQL query
|
Name the ezhavas and syrian christians being 26.2
|
SELECT Ezhavas FROM table WHERE Syrian Christians = 26.2
|
Translate the following into a SQL query
|
Name the syrian christians for kollam
|
SELECT Syrian Christians FROM table WHERE District = Kollam
|
Translate the following into a SQL query
|
Name the district for others being 18.3
|
SELECT District FROM table WHERE Others = 18.3
|
Translate the following into a SQL query
|
Name the district for nairs 8.2
|
SELECT District FROM table WHERE Nairs = 8.2
|
Translate the following into a SQL query
|
If the total points is 5, what is the 2005-2006 points total number?
|
SELECT COUNT 2005-06 Points FROM table WHERE Total Points = 5
|
Translate the following into a SQL query
|
What is the 2006-2007 points minimum is the team is Overmach Parma?
|
SELECT MIN 2006-07 Points FROM table WHERE Team = Overmach Parma
|
Translate the following into a SQL query
|
If the team is Worcester, what is the 2005-2006 points?
|
SELECT 2005-06 Points FROM table WHERE Team = Worcester
|
Translate the following into a SQL query
|
What is the 2006-2007 points total number if the team is Saracens?
|
SELECT COUNT 2006-07 Points FROM table WHERE Team = Saracens
|
Translate the following into a SQL query
|
If the points is 1, what is the total points minimum?
|
SELECT MIN Total Points FROM table WHERE 2005-06 Points = 1
|
Translate the following into a SQL query
|
When spvgg vohenstrauß is the oberpfalz what is the season?
|
SELECT Season FROM table WHERE Oberpfalz = SpVgg Vohenstrauß
|
Translate the following into a SQL query
|
When esv ingolstadt is the oberbayern b what is the niederbayern?
|
SELECT Niederbayern FROM table WHERE Oberbayern B = ESV Ingolstadt
|
Translate the following into a SQL query
|
When wacker burghausen is the oberbayern a what is the schwaben?
|
SELECT Schwaben FROM table WHERE Oberbayern A = Wacker Burghausen
|
Translate the following into a SQL query
|
When fc oberau is the oberbayern a what is the oberpfalz?
|
SELECT Oberpfalz FROM table WHERE Oberbayern A = FC Oberau
|
Translate the following into a SQL query
|
When tus rosenberg is the oberpfalz what is the oberbayern b?
|
SELECT Oberbayern B FROM table WHERE Oberpfalz = TuS Rosenberg
|
Translate the following into a SQL query
|
When fc schwandorf is the oberpfalz what is the oberbayern b?
|
SELECT Oberbayern B FROM table WHERE Oberpfalz = FC Schwandorf
|
Translate the following into a SQL query
|
What was the score in the final when the outcome was winner in 1989?
|
SELECT Score in the final FROM table WHERE Outcome = Winner AND Year = 1989
|
Translate the following into a SQL query
|
What was the score in the final when Mats Wilander was the opponent in the Australian Open?
|
SELECT Score in the final FROM table WHERE Championship = Australian Open AND Opponent in the final = Mats Wilander
|
Translate the following into a SQL query
|
If the number in the season is 22, what is the original air date?
|
SELECT Original air date FROM table WHERE No. in season = 22
|
Translate the following into a SQL query
|
What is the maximum season number for the episode written by Jonathan Greene?
|
SELECT MAX No. in season FROM table WHERE Written by = Jonathan Greene
|
Translate the following into a SQL query
|
Name the original air date for prod code 201
|
SELECT Original air dates FROM table WHERE Prod. code = 201
|
Translate the following into a SQL query
|
Name the written by for prod code being 206
|
SELECT Written by FROM table WHERE Prod. code = 206
|
Translate the following into a SQL query
|
How many positions are there in Canadian Nascar?
|
SELECT MAX Position FROM table
|
Translate the following into a SQL query
|
How many drivers have 1942 points?
|
SELECT COUNT Driver FROM table WHERE Points = 1942
|
Translate the following into a SQL query
|
How many starts are there?
|
SELECT MIN Starts FROM table
|
Translate the following into a SQL query
|
How many wins did Andrew Ranger have?
|
SELECT COUNT Wins FROM table WHERE Driver = Andrew Ranger
|
Translate the following into a SQL query
|
What are the winnings for position 7?
|
SELECT MAX Winnings ($) FROM table WHERE Position = 7
|
Translate the following into a SQL query
|
What number episode in the series was written by David Zuckerman?
|
SELECT No. in series FROM table WHERE Written by = David Zuckerman
|
Translate the following into a SQL query
|
What is the original air date of the episode written by David Zuckerman?
|
SELECT Original air date FROM table WHERE Written by = David Zuckerman
|
Translate the following into a SQL query
|
What is the title of the episode directed by Rodney Clouden?
|
SELECT Title FROM table WHERE Directed by = Rodney Clouden
|
Translate the following into a SQL query
|
How many millions of U.S. viewers watched the episode with the production code of 3AJN01?
|
SELECT U.S. viewers (millions) FROM table WHERE Production code = 3AJN01
|
Translate the following into a SQL query
|
Who directed the episode that had 6.76 million U.S. viewers?
|
SELECT Directed by FROM table WHERE U.S. viewers (millions) = 6.76
|
Translate the following into a SQL query
|
What episode number of the season was also number 75 in the series?
|
SELECT MAX No. in season FROM table WHERE No. in series = 75
|
Translate the following into a SQL query
|
Who wrote the episode that had a production code of 3ajn20?
|
SELECT Written by FROM table WHERE Production code = 3AJN20
|
Translate the following into a SQL query
|
Who directed the episode that was written by Jonathan Fener?
|
SELECT Directed by FROM table WHERE Written by = Jonathan Fener
|
Translate the following into a SQL query
|
What was the name of the episode with a production code of 3ajn20?
|
SELECT Title FROM table WHERE Production code = 3AJN20
|
Translate the following into a SQL query
|
Who wrote the episode with production code 1AJN05?
|
SELECT Written by FROM table WHERE Production code = 1AJN05
|
Translate the following into a SQL query
|
How many different series numbers are there for the episode seen by 7.84 million people in the US?
|
SELECT COUNT No. in series FROM table WHERE U.S. viewers (millions) = 7.84
|
Translate the following into a SQL query
|
How many millions of people in the US saw the episode titled "Francine's Flashback"?
|
SELECT U.S. viewers (millions) FROM table WHERE Title = "Francine's Flashback"
|
Translate the following into a SQL query
|
What's the series number of the episode written by Dan Vebber?
|
SELECT MAX No. in series FROM table WHERE Written by = Dan Vebber
|
Translate the following into a SQL query
|
How many different titles are there of episodes that have been seen by 7.84 million people in the US/
|
SELECT COUNT Title FROM table WHERE U.S. viewers (millions) = 7.84
|
Translate the following into a SQL query
|
When did 6.09 million people in the US see the original airing of an episode of the show?
|
SELECT Original air date FROM table WHERE U.S. viewers (millions) = 6.09
|
Translate the following into a SQL query
|
What's the season number of the episode titled "Dungeons and wagons"?
|
SELECT MIN No. in season FROM table WHERE Title = "Dungeons and Wagons"
|
Translate the following into a SQL query
|
What's the season number of the episode originally seen by 6.64 million people in the US?
|
SELECT MIN No. in season FROM table WHERE U.S. viewers (millions) = 6.64
|
Translate the following into a SQL query
|
What's the production code of the episode seen by 7.49 million people in the US?
|
SELECT Production code FROM table WHERE U.S. viewers (millions) = 7.49
|
Translate the following into a SQL query
|
What opponent got 44 points in their game?
|
SELECT Opponent FROM table WHERE Opp. Points = 44
|
Translate the following into a SQL query
|
Where was the game with a 4-1 record played?
|
SELECT Location FROM table WHERE Record = 4-1
|
Translate the following into a SQL query
|
Who did the high rebounds in the game where Larry Hughes (21) did the high ponts?
|
SELECT High rebounds FROM table WHERE High points = Larry Hughes (21)
|
Translate the following into a SQL query
|
How many different people did different scores of high assists during the December 11 game?
|
SELECT COUNT High assists FROM table WHERE Date = December 11
|
Translate the following into a SQL query
|
Who did the high assists in the game against Portland?
|
SELECT High assists FROM table WHERE Team = Portland
|
Translate the following into a SQL query
|
What is every score for location attendance of Madison Square Garden 19,763 and game less than 80.0?
|
SELECT Score FROM table WHERE Location Attendance = Madison Square Garden 19,763 AND Game < 80.0
|
Translate the following into a SQL query
|
What is every record for the team Boston?
|
SELECT Record FROM table WHERE Team = Boston
|
Translate the following into a SQL query
|
How many values for high assists when the game is 81?
|
SELECT COUNT High assists FROM table WHERE Game = 81
|
Translate the following into a SQL query
|
How many times was the high points david lee (30)
|
SELECT COUNT Date FROM table WHERE High points = David Lee (30)
|
Translate the following into a SQL query
|
Who had the high assists when the score was l 85–118 (ot)
|
SELECT High assists FROM table WHERE Score = L 85–118 (OT)
|
Translate the following into a SQL query
|
What was the record when the high rebounds was david lee (8)
|
SELECT Record FROM table WHERE High rebounds = David Lee (8)
|
Translate the following into a SQL query
|
How many times was the record 19–34
|
SELECT COUNT Score FROM table WHERE Record = 19–34
|
Translate the following into a SQL query
|
What was the score when the record was 19–35
|
SELECT Score FROM table WHERE Record = 19–35
|
Translate the following into a SQL query
|
What was the game when high points was david lee (30)
|
SELECT MIN Game FROM table WHERE High points = David Lee (30)
|
Translate the following into a SQL query
|
If the population density is 7,447.32, what is the population total number?
|
SELECT COUNT Population (2010 Census) FROM table WHERE Pop. density (per km²) = 7,447.32
|
Translate the following into a SQL query
|
If the number of barangays is 19, what is the population density?
|
SELECT Pop. density (per km²) FROM table WHERE No. of Barangays = 19
|
Translate the following into a SQL query
|
If the area is 66.34, what is the minimum (2010 census) population?
|
SELECT MIN Population (2010 Census) FROM table WHERE Area (km²) = 66.34
|
Translate the following into a SQL query
|
What is the name of the city/municipality if the population is 1,388.88?
|
SELECT City / Municipality FROM table WHERE Pop. density (per km²) = 1,388.88
|
Translate the following into a SQL query
|
When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there?
|
SELECT COUNT Rank FROM table WHERE Country = England AND County = Merseyside AND City/Town = Birkenhead
|
Translate the following into a SQL query
|
When 2 is the rank what is the city/town?
|
SELECT City/Town FROM table WHERE Rank = 2
|
Translate the following into a SQL query
|
When 20 is the rank and north west is the region/province what is the county?
|
SELECT County FROM table WHERE Region/Province = North West AND Rank = 20
|
Translate the following into a SQL query
|
When fleetwood is the city/town how many sets of population are there?
|
SELECT COUNT Population FROM table WHERE City/Town = Fleetwood
|
Translate the following into a SQL query
|
When 142900 is the population what is the highest rank?
|
SELECT MAX Rank FROM table WHERE Population = 142900
|
Translate the following into a SQL query
|
When 31901 is the population what is the county?
|
SELECT County FROM table WHERE Population = 31901
|
Translate the following into a SQL query
|
What was the score against the team with an 11-3 record against the Hawks?
|
SELECT Score FROM table WHERE Record = 11-3
|
Translate the following into a SQL query
|
Who had the most rebounds in the game against the team with a 5-2 record against the Hawks?
|
SELECT High rebounds FROM table WHERE Record = 5-2
|
Translate the following into a SQL query
|
What location and it's attendance was the game against the cavaliers?
|
SELECT Location Attendance FROM table WHERE Team = Cavaliers
|
Translate the following into a SQL query
|
Who scored the highest points and how much against the raptors?
|
SELECT High points FROM table WHERE Team = Raptors
|
Translate the following into a SQL query
|
What location and it's attendance was the game against the Nets?
|
SELECT Location Attendance FROM table WHERE Team = Nets
|
Translate the following into a SQL query
|
List all players with highest assists from April 2.
|
SELECT High assists FROM table WHERE Date = April 2
|
Translate the following into a SQL query
|
List high points from the April 7 game.
|
SELECT High points FROM table WHERE Date = April 7
|
Translate the following into a SQL query
|
What is every team on March 5?
|
SELECT Team FROM table WHERE Date = March 5
|
Translate the following into a SQL query
|
Who is every high points for the Pistons team?
|
SELECT High points FROM table WHERE Team = Pistons
|
Translate the following into a SQL query
|
What is every score with a record of 46-25?
|
SELECT Score FROM table WHERE Record = 46-25
|
Translate the following into a SQL query
|
How many people had high rebounds during the game with a record of 34-32?
|
SELECT COUNT High rebounds FROM table WHERE Record = 34-32
|
Translate the following into a SQL query
|
How many people led in assists on game 71?
|
SELECT COUNT High assists FROM table WHERE Game = 71
|
Translate the following into a SQL query
|
What was the location and it's attendance when the Bobcats played against Washington?
|
SELECT Location Attendance FROM table WHERE Team = Washington
|
Translate the following into a SQL query
|
Name the record for milwaukee
|
SELECT Record FROM table WHERE Team = Milwaukee
|
Translate the following into a SQL query
|
Name the location attendance for 10-14
|
SELECT Location Attendance FROM table WHERE Record = 10-14
|
Translate the following into a SQL query
|
Name the record for december 8
|
SELECT Record FROM table WHERE Date = December 8
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.