instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query
|
What is the maximum number of assists for players named Anastasia Kostaki?
|
SELECT MAX Assists FROM table WHERE Player = Anastasia Kostaki
|
Translate the following into a SQL query
|
What is Tiffani Johnson's maximum steals?
|
SELECT MAX Steals FROM table WHERE Player = Tiffani Johnson
|
Translate the following into a SQL query
|
Which player has 17 blocks?
|
SELECT Player FROM table WHERE Blocks = 17
|
Translate the following into a SQL query
|
How many field goals does the player with 84 rebounds have?
|
SELECT MIN Field Goals FROM table WHERE Rebounds = 84
|
Translate the following into a SQL query
|
How many blocks does the player who played 893 minutes have?
|
SELECT Blocks FROM table WHERE Minutes = 893
|
Translate the following into a SQL query
|
How many points does the player with 2 steals have?
|
SELECT Points FROM table WHERE Steals = 2
|
Translate the following into a SQL query
|
Name the most number
|
SELECT MAX Number FROM table
|
Translate the following into a SQL query
|
Name the titles for tko 11/12
|
SELECT Titles FROM table WHERE Result = TKO 11/12
|
Translate the following into a SQL query
|
Name the most number
|
SELECT MAX Number FROM table
|
Translate the following into a SQL query
|
Where was the game played when the result/margin was won by 70?
|
SELECT Venue FROM table WHERE Result/Margin = WON by 70
|
Translate the following into a SQL query
|
What is the result/margin when fox sports 1 broadcast the game played at mcg?
|
SELECT Result/Margin FROM table WHERE Broadcaster = Fox Sports 1 AND Venue = MCG
|
Translate the following into a SQL query
|
Which network broadcast the game when the Western Bulldogs played melbourne?
|
SELECT Broadcaster FROM table WHERE Opposition = Melbourne
|
Translate the following into a SQL query
|
Where was the game played when the score was 14.16 (100)-12.12 (84)?
|
SELECT Venue FROM table WHERE Score = 14.16 (100)-12.12 (84)
|
Translate the following into a SQL query
|
What was the ladder position when the score was 15.9 (99)–14.6 (90)?
|
SELECT Ladder Position FROM table WHERE Score = 15.9 (99)–14.6 (90)
|
Translate the following into a SQL query
|
On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team?
|
SELECT Date FROM table WHERE Ladder Position = 8th AND Opposition = Hawthorn
|
Translate the following into a SQL query
|
What school is nicknamed the panthers?
|
SELECT School FROM table WHERE Nickname = Panthers
|
Translate the following into a SQL query
|
What school is in Jeromesville?
|
SELECT Location FROM table WHERE School = Jeromesville
|
Translate the following into a SQL query
|
What was the previous school of the ft7in (m) tall player?
|
SELECT Previous School FROM table WHERE Height = ft7in (m)
|
Translate the following into a SQL query
|
What was the previous school of #22?
|
SELECT Previous School FROM table WHERE # = 22
|
Translate the following into a SQL query
|
What is the title of the episode with production code 3x5402?
|
SELECT Title FROM table WHERE Production code = 3X5402
|
Translate the following into a SQL query
|
What is the title of the episode with production code 3x5405?
|
SELECT Title FROM table WHERE Production code = 3X5405
|
Translate the following into a SQL query
|
Who as the home team for game on 5 october 2011?
|
SELECT Home team FROM table WHERE Date = 5 October 2011
|
Translate the following into a SQL query
|
What was the stadium for the home team of shamrock rovers and result of 3–0?
|
SELECT Stadium FROM table WHERE Home team = Shamrock Rovers AND Result = 3–0
|
Translate the following into a SQL query
|
What was the away team when the result was 2–1 and home team was the bohemians?
|
SELECT Away team FROM table WHERE Result = 2–1 AND Home team = Bohemians
|
Translate the following into a SQL query
|
Who was the home team for the 2013 season and the result was 0–0?
|
SELECT Home team FROM table WHERE Season = 2013 AND Result = 0–0
|
Translate the following into a SQL query
|
What is the date for the game at the tallaght stadium and result was 0–1?
|
SELECT Date FROM table WHERE Stadium = Tallaght Stadium AND Result = 0–1
|
Translate the following into a SQL query
|
What opponents played Waldstadion in a game?
|
SELECT Opponent FROM table WHERE Game site = Waldstadion
|
Translate the following into a SQL query
|
What was the maximum week that had attendance of 10738?
|
SELECT MAX Week FROM table WHERE Attendance = 10738
|
Translate the following into a SQL query
|
Who wrote "Concordia"?
|
SELECT Written by FROM table WHERE Title = "Concordia"
|
Translate the following into a SQL query
|
What is the production code of the episode written by Cathryn Humphris?
|
SELECT Production code FROM table WHERE Written by = Cathryn Humphris
|
Translate the following into a SQL query
|
What is the production code of the episode that had 5.43 million viewers?
|
SELECT Production code FROM table WHERE U.S. viewers (million) = 5.43
|
Translate the following into a SQL query
|
What was the title of the episode directed by Jesse Warn?
|
SELECT Production code FROM table WHERE Directed by = Jesse Warn
|
Translate the following into a SQL query
|
What episode number was written by Gregg Hurwitz?
|
SELECT No. FROM table WHERE Written by = Gregg Hurwitz
|
Translate the following into a SQL query
|
If the dry density is 800, what is the drying shrinkage %?
|
SELECT Drying Shrinkage (%) FROM table WHERE Dry Density (kg/m3) = 800
|
Translate the following into a SQL query
|
What number in the series was episode 7 in the season?
|
SELECT Series # FROM table WHERE Season # = 7
|
Translate the following into a SQL query
|
Who wrote "Voir Dire"?
|
SELECT Written by FROM table WHERE Title = "Voir Dire"
|
Translate the following into a SQL query
|
When was "Rewind" originally aired?
|
SELECT Original air date FROM table WHERE Title = "Rewind"
|
Translate the following into a SQL query
|
How many episodes had the title "Rise and Fall"?
|
SELECT COUNT Season # FROM table WHERE Title = "Rise and Fall"
|
Translate the following into a SQL query
|
Who wrote the episode that had 12.15 million viewers?
|
SELECT Written by FROM table WHERE U.S. viewers (millions) = 12.15
|
Translate the following into a SQL query
|
What number in the season was the episode with 12.23 million viewers?
|
SELECT Season # FROM table WHERE U.S. viewers (millions) = 12.23
|
Translate the following into a SQL query
|
What is the date of the game at Olympic Stadium?
|
SELECT Date FROM table WHERE Game site = Olympic Stadium
|
Translate the following into a SQL query
|
How many weeks total are there?
|
SELECT MAX Week FROM table
|
Translate the following into a SQL query
|
What was the team's record when they played at Rheinenergiestadion?
|
SELECT Team record FROM table WHERE Game site = RheinEnergieStadion
|
Translate the following into a SQL query
|
What is the lowest overall number of 09-10 oi 2nd?
|
SELECT MIN 09-10 OI 2nd FROM table
|
Translate the following into a SQL query
|
What is the lowest overall number for 09-10 oi 2nd?
|
SELECT MIN 09-10 OI 2nd FROM table
|
Translate the following into a SQL query
|
What was the maximum 09-10 i/o best?
|
SELECT MAX 09-10 I/O best FROM table
|
Translate the following into a SQL query
|
If 09-10 i/o best is 972, what is the 09-10 gp/jgp 2nd maximum?
|
SELECT MAX 09-10 GP/JGP 2nd FROM table WHERE 09-10 I/O best = 972
|
Translate the following into a SQL query
|
If the rank is 17, what are the names?
|
SELECT Name FROM table WHERE Rank = 17
|
Translate the following into a SQL query
|
If the WS points is 947, what is the 08-09 gp/jgp 2nd ?
|
SELECT 08-09 GP/JGP 2nd FROM table WHERE WS Points = 947
|
Translate the following into a SQL query
|
If the 08-09 gp/jgp 2nd is bigger than 227.0 and the 08-09 gp/jgp best is 252, what is the 08-09 oi best?
|
SELECT 08-09 OI best FROM table WHERE 08-09 GP/JGP best = 252 AND 08-09 GP/JGP 2nd > 227.0
|
Translate the following into a SQL query
|
How many points did he have when he has in the 34th position?
|
SELECT Points FROM table WHERE Position = 34th
|
Translate the following into a SQL query
|
How many wins were listed when he had 112 points?
|
SELECT Wins FROM table WHERE Points = 112
|
Translate the following into a SQL query
|
In what series did he have the 7th position?
|
SELECT Series FROM table WHERE Position = 7th
|
Translate the following into a SQL query
|
what were his points when he was in 8th position?
|
SELECT Points FROM table WHERE Position = 8th
|
Translate the following into a SQL query
|
What was the vote when the air date is 4 october 1997?
|
SELECT Vote FROM table WHERE Air date = 4 October 1997
|
Translate the following into a SQL query
|
Who was eliminated when immunity went to kent (jürgen)?
|
SELECT Eliminated FROM table WHERE Immunity = Kent (Jürgen)
|
Translate the following into a SQL query
|
Who was eliminated when the vote was 8-1?
|
SELECT Eliminated FROM table WHERE Vote = 8-1
|
Translate the following into a SQL query
|
How many entries are there for vote when the air date was 15 november 1997?
|
SELECT COUNT Vote FROM table WHERE Air date = 15 November 1997
|
Translate the following into a SQL query
|
What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46?
|
SELECT Reward FROM table WHERE Immunity = Martin AND Finish = 13th Voted Out 8th Jury Member Day 46
|
Translate the following into a SQL query
|
How many values for Macedonian correspond to Slovianski value of Veliki?
|
SELECT COUNT Macedonian FROM table WHERE Slovianski = veliki
|
Translate the following into a SQL query
|
What area all values for Slovak when value for Ukranian is пес, собака?
|
SELECT Slovak FROM table WHERE Ukrainian = пес, собака
|
Translate the following into a SQL query
|
What is every value for Croatian when value for English is dog?
|
SELECT Croatian FROM table WHERE English = dog
|
Translate the following into a SQL query
|
What is every value for Polish when Balarusian is ноч?
|
SELECT Polish FROM table WHERE Belarusian = ноч
|
Translate the following into a SQL query
|
What is every value for Russian when value for Bulgarian is пес, куче?
|
SELECT Russian FROM table WHERE Bulgarian = пес, куче
|
Translate the following into a SQL query
|
What is every value for словјански if polish is książka?
|
SELECT Словјански FROM table WHERE Polish = książka
|
Translate the following into a SQL query
|
Name the position for christopher smith
|
SELECT Position FROM table WHERE Player = Christopher Smith
|
Translate the following into a SQL query
|
Name the college for nate binder
|
SELECT College FROM table WHERE Player = Nate Binder
|
Translate the following into a SQL query
|
Name the least pick number for steven turner
|
SELECT MIN Pick # FROM table WHERE Player = Steven Turner
|
Translate the following into a SQL query
|
Name the cfl team for steven turner
|
SELECT CFL Team FROM table WHERE Player = Steven Turner
|
Translate the following into a SQL query
|
Name the cfl team for lb position
|
SELECT CFL Team FROM table WHERE Position = LB
|
Translate the following into a SQL query
|
Name the cfl team for saskatchewan
|
SELECT CFL Team FROM table WHERE College = Saskatchewan
|
Translate the following into a SQL query
|
Name the position for michael warner
|
SELECT Position FROM table WHERE Player = Michael Warner
|
Translate the following into a SQL query
|
How many episodes were numbered 5?
|
SELECT COUNT Production Count FROM table WHERE Episode # = 5
|
Translate the following into a SQL query
|
What are the original air date(s) for episodes with production code ipea343l?
|
SELECT Original Airdate FROM table WHERE Prod. Code = IPEA343L
|
Translate the following into a SQL query
|
What are the original air date(s) for episodes with production code ipea345a?
|
SELECT Original Airdate FROM table WHERE Prod. Code = IPEA345A
|
Translate the following into a SQL query
|
What are the original air date(s) for episodes with 8.63 million viewers?
|
SELECT Original Airdate FROM table WHERE Viewing Figures Millions = 8.63
|
Translate the following into a SQL query
|
What is the power of the Type R?
|
SELECT Power FROM table WHERE Model = Type R
|
Translate the following into a SQL query
|
What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres?
|
SELECT Brakes FROM table WHERE Wheels = 16x8.0JJ (front) 16x8.0JJ (rear) AND Tyres = 225/50R16 92V(front) 225/50R16 92V(rear) AND Model = Type RB 4AT
|
Translate the following into a SQL query
|
What brakes for the 4-speed automatic gearbox?
|
SELECT Brakes FROM table WHERE Gearbox = 4-speed automatic
|
Translate the following into a SQL query
|
What is the power for the Spirit R (Type B)?
|
SELECT Power FROM table WHERE Model = Spirit R (Type B)
|
Translate the following into a SQL query
|
What is the gearbox when the torque is torque?
|
SELECT Gearbox FROM table WHERE Torque = Torque
|
Translate the following into a SQL query
|
Name the first elected for alabama 3
|
SELECT COUNT First elected FROM table WHERE District = Alabama 3
|
Translate the following into a SQL query
|
Name the party for spencer bachus
|
SELECT Party FROM table WHERE Incumbent = Spencer Bachus
|
Translate the following into a SQL query
|
Name the district for mike rogers
|
SELECT District FROM table WHERE Incumbent = Mike Rogers
|
Translate the following into a SQL query
|
Name the district for spencer bachus
|
SELECT District FROM table WHERE Incumbent = Spencer Bachus
|
Translate the following into a SQL query
|
In what district was keith ellison the incumbent?
|
SELECT District FROM table WHERE Incumbent = Keith Ellison
|
Translate the following into a SQL query
|
List the kilo watt hoours per day for moline.
|
SELECT Day Power ( W ) FROM table WHERE City = Moline
|
Translate the following into a SQL query
|
In which year did the voice of muscatine show start?
|
SELECT Start FROM table WHERE Nickname = Voice of Muscatine
|
Translate the following into a SQL query
|
In what year was cumulus founded?
|
SELECT MIN Start FROM table WHERE Owner = Cumulus
|
Translate the following into a SQL query
|
Does the city of moline have stereo?
|
SELECT Stereo FROM table WHERE City = Moline
|
Translate the following into a SQL query
|
what is the company with the parent company wrightbus?
|
SELECT Company FROM table WHERE Parent company = Wrightbus
|
Translate the following into a SQL query
|
what is the name ofhte company where the plant is in burnaston?
|
SELECT Company FROM table WHERE Plant = Burnaston
|
Translate the following into a SQL query
|
what models are produced where the plant is scarborough?
|
SELECT Models produced FROM table WHERE Plant = Scarborough
|
Translate the following into a SQL query
|
how many models produced where the plant is castle bromwich?
|
SELECT COUNT Models produced FROM table WHERE Plant = Castle Bromwich
|
Translate the following into a SQL query
|
what is the production where the parent company is ariel?
|
SELECT Production (latest figures) FROM table WHERE Parent company = Ariel
|
Translate the following into a SQL query
|
What kind of chassis on the angie's list sponsored car?
|
SELECT Chassis FROM table WHERE Primary Sponsor = Angie's List
|
Translate the following into a SQL query
|
What team owns the car owned by chip ganassi?
|
SELECT Team FROM table WHERE Listed Owner(s) = Chip Ganassi
|
Translate the following into a SQL query
|
What chassis is on the car repped by team rahal letterman lanigan racing?
|
SELECT Chassis FROM table WHERE Team = Rahal Letterman Lanigan Racing
|
Translate the following into a SQL query
|
Who drives the abc supply sponsored cor?
|
SELECT Driver(s) FROM table WHERE Primary Sponsor = ABC Supply
|
Translate the following into a SQL query
|
Name the number of district for tom marino
|
SELECT COUNT District FROM table WHERE Incumbent = Tom Marino
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.