instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
How many games were played on March 15?
SELECT COUNT Game FROM table WHERE Date = March 15
Translate the following into a SQL query
What was the team's record when they faced orlando?
SELECT Record FROM table WHERE Team = Orlando
Translate the following into a SQL query
Whic teams scored l 97–107 (ot)
SELECT Team FROM table WHERE Score = L 97–107 (OT)
Translate the following into a SQL query
Who had the high assists when the team was @ Minnesota?
SELECT High assists FROM table WHERE Team = @ Minnesota
Translate the following into a SQL query
On what date did the Team Minnesota play?
SELECT Date FROM table WHERE Team = Minnesota
Translate the following into a SQL query
Who had the high points on the date February 10?
SELECT High points FROM table WHERE Date = February 10
Translate the following into a SQL query
How many players had high points in the location/attendance FedexForum 11,498 respectively?
SELECT COUNT High points FROM table WHERE Location Attendance = FedExForum 11,498
Translate the following into a SQL query
When the high assists were Shawn Marion (6) who had high rebounds?
SELECT High rebounds FROM table WHERE High assists = Shawn Marion (6)
Translate the following into a SQL query
What dates did they play Miami?
SELECT Date FROM table WHERE Team = Miami
Translate the following into a SQL query
What dates did Chris Bosh (18) score the high points?
SELECT Date FROM table WHERE High points = Chris Bosh (18)
Translate the following into a SQL query
Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?
SELECT Location Attendance FROM table WHERE High assists = Anthony Parker (7)
Translate the following into a SQL query
Who earned high points in game 69?
SELECT High points FROM table WHERE Game = 69
Translate the following into a SQL query
What is the total number of high points on January 21?
SELECT COUNT High points FROM table WHERE Date = January 21
Translate the following into a SQL query
What is the location and attendance for the Orlando team?
SELECT Location Attendance FROM table WHERE Team = Orlando
Translate the following into a SQL query
what was the final score of the game versus Milwaukee?
SELECT Score FROM table WHERE Team = Milwaukee
Translate the following into a SQL query
What is the record against Boston?
SELECT Record FROM table WHERE Team = Boston
Translate the following into a SQL query
What is every high point when the team is Washington?
SELECT High points FROM table WHERE Team = Washington
Translate the following into a SQL query
How many games occur on the date December 12?
SELECT COUNT Game FROM table WHERE Date = December 12
Translate the following into a SQL query
How many high assist are on the date December 13?
SELECT COUNT High assists FROM table WHERE Date = December 13
Translate the following into a SQL query
What is every location attendance on the date December 12?
SELECT Location Attendance FROM table WHERE Date = December 12
Translate the following into a SQL query
What was the high rebounds on November 26?
SELECT High rebounds FROM table WHERE Date = November 26
Translate the following into a SQL query
What was the high assists on November 14?
SELECT High assists FROM table WHERE Date = November 14
Translate the following into a SQL query
Who had the most assists in the game against Miami?
SELECT High assists FROM table WHERE Team = Miami
Translate the following into a SQL query
How many assists were made in the game against San Antonio?
SELECT COUNT High assists FROM table WHERE Team = San Antonio
Translate the following into a SQL query
Who did the most high rebounds in the game played on November 1?
SELECT High rebounds FROM table WHERE Date = November 1
Translate the following into a SQL query
What team was the game on November 21 played against?
SELECT Team FROM table WHERE Date = November 21
Translate the following into a SQL query
What was the score in the game against Boston?
SELECT Score FROM table WHERE Team = Boston
Translate the following into a SQL query
Name the date of appointment for petrik sander
SELECT Date of appointment FROM table WHERE Replaced by = Petrik Sander
Translate the following into a SQL query
Name the date of appointment for sacked and 14th position replaced by marco kostmann
SELECT Date of appointment FROM table WHERE Manner of departure = Sacked AND Position in table = 14th AND Replaced by = Marco Kostmann
Translate the following into a SQL query
How many location attendance was recorded for December 5?
SELECT COUNT Location Attendance FROM table WHERE Date = December 5
Translate the following into a SQL query
What was the attendance and location on December 15?
SELECT Location Attendance FROM table WHERE Date = December 15
Translate the following into a SQL query
How many games were recorded when the team was @ Memphis?
SELECT COUNT Game FROM table WHERE Team = @ Memphis
Translate the following into a SQL query
What was the score of the game when the high rebounds Jeff Foster (10)?
SELECT Score FROM table WHERE High rebounds = Jeff Foster (10)
Translate the following into a SQL query
What team appointed a manager on 12 June?
SELECT Team FROM table WHERE Date of appointment = 12 June
Translate the following into a SQL query
Who was replaced on 11 July?
SELECT Replaced by FROM table WHERE Date of appointment = 11 July
Translate the following into a SQL query
Who left a position on 29 May?
SELECT Outgoing manager FROM table WHERE Date of vacancy = 29 May
Translate the following into a SQL query
Who left a position on 24 January?
SELECT Outgoing manager FROM table WHERE Date of vacancy = 24 January
Translate the following into a SQL query
How many vacancies happened on 25 May?
SELECT COUNT Manner of departure FROM table WHERE Date of vacancy = 25 May
Translate the following into a SQL query
how many 1391 carelia where 1398 donnera is 2397 lappajärvi
SELECT COUNT 1391 Carelia FROM table WHERE 1398 Donnera = 2397 Lappajärvi
Translate the following into a SQL query
what is the 1398 donnera of asteroid which 1391 carelia is 1529 oterma
SELECT 1398 Donnera FROM table WHERE 1391 Carelia = 1529 Oterma
Translate the following into a SQL query
what is the 1405 sibelius of asteroid which 1407 lindelöf is 2020 ukko
SELECT 1405 Sibelius FROM table WHERE 1407 Lindelöf = 2020 Ukko
Translate the following into a SQL query
what is the 1406 komppa of asteroid which 1391 carelia is 1460 haltia
SELECT 1406 Komppa FROM table WHERE 1391 Carelia = 1460 Haltia
Translate the following into a SQL query
what is the 1391 carelia of asteroid which 1407 lindelöf is 1527 malmquista
SELECT 1391 Carelia FROM table WHERE 1407 Lindelöf = 1527 Malmquista
Translate the following into a SQL query
what is the 1406 komppa of asteroid which 1405 sibelius is 2737 kotka
SELECT 1406 Komppa FROM table WHERE 1405 Sibelius = 2737 Kotka
Translate the following into a SQL query
If the points is 15, what is the fin. pos?
SELECT COUNT Fin. Pos FROM table WHERE Points = 15
Translate the following into a SQL query
What is the car number for driver Hélio Castroneves
SELECT MIN Car No. FROM table WHERE Driver = Hélio Castroneves
Translate the following into a SQL query
If grid is 2, what is the minimum fin. pos number?
SELECT MIN Fin. Pos FROM table WHERE Grid = 2
Translate the following into a SQL query
If there are 28 points, what is the time/retired?
SELECT Time/Retired FROM table WHERE Points = 28
Translate the following into a SQL query
How many winning scores were there in the rr donnelley lpga founders cup?
SELECT COUNT Winning score FROM table WHERE Tournament = RR Donnelley LPGA Founders Cup
Translate the following into a SQL query
When was the mcdonald's lpga championship?
SELECT Date FROM table WHERE Tournament = McDonald's LPGA Championship
Translate the following into a SQL query
What was the winner's share in the wegmans lpga championship?
SELECT MAX Winners share ( $ ) FROM table WHERE Tournament = Wegmans LPGA Championship
Translate the following into a SQL query
Name the kerry # for others# is 44
SELECT Kerry# FROM table WHERE Others# = 44
Translate the following into a SQL query
Name the minimum kerry # for bush % for 50.9%
SELECT MIN Kerry# FROM table WHERE Bush% = 50.9%
Translate the following into a SQL query
Name the others % for johnson
SELECT Others% FROM table WHERE County = Johnson
Translate the following into a SQL query
Name the maximum kerry # for where others is 47
SELECT MAX Kerry# FROM table WHERE Others# = 47
Translate the following into a SQL query
Name the bush% for where others # is 90
SELECT Bush% FROM table WHERE Others# = 90
Translate the following into a SQL query
Name the others % for cleveland
SELECT Others% FROM table WHERE County = Cleveland
Translate the following into a SQL query
What is the percentage of others when the number of others is 2286?
SELECT Others% FROM table WHERE Others# = 2286
Translate the following into a SQL query
What was the percentage of others when the number for Bush was 3196?
SELECT Others% FROM table WHERE Bush# = 3196
Translate the following into a SQL query
What is the percentage of others when the number for Bush is 1329?
SELECT Others% FROM table WHERE Bush# = 1329
Translate the following into a SQL query
Which game was played by team milwaukee
SELECT Game FROM table WHERE Team = Milwaukee
Translate the following into a SQL query
Who made high points on games of score w 106–104 (ot)
SELECT High assists FROM table WHERE Score = W 106–104 (OT)
Translate the following into a SQL query
What are the records of games where high rebounds is amar'e stoudemire (11)
SELECT COUNT Record FROM table WHERE High rebounds = Amar'e Stoudemire (11)
Translate the following into a SQL query
What is the location of the the game on december 10
SELECT Location Attendance FROM table WHERE Date = December 10
Translate the following into a SQL query
List the all the scores where the high assis is b. shaw (5)
SELECT Score FROM table WHERE High assists = B. Shaw (5)
Translate the following into a SQL query
List of high assists with high rebounds for k. mchale (10)
SELECT High assists FROM table WHERE High rebounds = K. McHale (10)
Translate the following into a SQL query
List all location attendance for series 1-1.
SELECT Location Attendance FROM table WHERE Series = 1-1
Translate the following into a SQL query
What day(s) did the team play indiana?
SELECT Date FROM table WHERE Team = Indiana
Translate the following into a SQL query
Who had the high assist total on january 2?
SELECT High assists FROM table WHERE Date = January 2
Translate the following into a SQL query
What was the title used in nomination in the original Bābǎi Zhuàngshì (八百壯士)?
SELECT Film title used in nomination FROM table WHERE Original title = Bābǎi zhuàngshì (八百壯士)
Translate the following into a SQL query
What was the year when Chūnqiū Cháshì (春秋茶室) was submitted?
SELECT Year (Ceremony) FROM table WHERE Original title = Chūnqiū cháshì (春秋茶室)
Translate the following into a SQL query
Old Mo's Second Spring was the film title used in nomination in what year?
SELECT Year (Ceremony) FROM table WHERE Film title used in nomination = Old Mo's Second Spring
Translate the following into a SQL query
What was the year when My Mother's Teahouse was not nominated?
SELECT Year (Ceremony) FROM table WHERE Result = Not Nominated AND Film title used in nomination = My Mother's Teahouse
Translate the following into a SQL query
What titles were released in 2006?
SELECT Title FROM table WHERE Release = 2006
Translate the following into a SQL query
What year(s) was axis & allies: d-day released?
SELECT Release FROM table WHERE Title = Axis & Allies: D-Day
Translate the following into a SQL query
What game was on May 25?
SELECT Game FROM table WHERE Date = May 25
Translate the following into a SQL query
What game was the record 2-3?
SELECT COUNT Game FROM table WHERE Record = 2-3
Translate the following into a SQL query
Who had the high rebounds when the team played Sacramento?
SELECT High rebounds FROM table WHERE Team = Sacramento
Translate the following into a SQL query
Who had the high points on April 8?
SELECT High points FROM table WHERE Date = April 8
Translate the following into a SQL query
Who had the high assists in game 80?
SELECT High assists FROM table WHERE Game = 80
Translate the following into a SQL query
Name the highh points for december 29
SELECT High points FROM table WHERE Date = December 29
Translate the following into a SQL query
Name the high assists for 29 game
SELECT High assists FROM table WHERE Game = 29
Translate the following into a SQL query
Name the high points for pepsi center 18,611
SELECT High points FROM table WHERE Location Attendance = Pepsi Center 18,611
Translate the following into a SQL query
Name the date for chicago
SELECT Date FROM table WHERE Team = Chicago
Translate the following into a SQL query
Name the record for new orleans
SELECT Record FROM table WHERE Team = New Orleans
Translate the following into a SQL query
Name the high assists for chauncey billups , carmelo anthony (18)
SELECT High assists FROM table WHERE High points = Chauncey Billups , Carmelo Anthony (18)
Translate the following into a SQL query
What was the final score for @ Orlando?
SELECT Score FROM table WHERE Team = @ Orlando
Translate the following into a SQL query
Chauncey Billups (6) had a high assist on what date?
SELECT Date FROM table WHERE High assists = Chauncey Billups (6)
Translate the following into a SQL query
@ Chicago had a high points of what?
SELECT High points FROM table WHERE Team = @ Chicago
Translate the following into a SQL query
High assists belonging to Carmelo Anthony (11) have a record of what?
SELECT Record FROM table WHERE High assists = Carmelo Anthony (11)
Translate the following into a SQL query
Name the high assists for april 8
SELECT High assists FROM table WHERE Date = April 8
Translate the following into a SQL query
Name the score for charlotte
SELECT Score FROM table WHERE Team = Charlotte
Translate the following into a SQL query
Name the location attendance for chucky atkins , russell westbrook (4)
SELECT Location Attendance FROM table WHERE High assists = Chucky Atkins , Russell Westbrook (4)
Translate the following into a SQL query
Name the series number directed by richard thorpe written by dee johnson
SELECT MAX Series # FROM table WHERE Directed by = Richard Thorpe AND Written by = Dee Johnson
Translate the following into a SQL query
Name the team where the date is november 17
SELECT Team FROM table WHERE Date = November 17
Translate the following into a SQL query
Name the team for november 5
SELECT Team FROM table WHERE Date = November 5
Translate the following into a SQL query
What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes?
SELECT MAX Series # FROM table WHERE Directed by = Laura Innes AND Season # < 7.0
Translate the following into a SQL query
If Arthur Albert is the director, what is the maximum series number?
SELECT MAX Series # FROM table WHERE Directed by = Arthur Albert
Translate the following into a SQL query
What was the number of seasons that was directed by Joanna Kerns?
SELECT COUNT Season # FROM table WHERE Directed by = Joanna Kerns
Translate the following into a SQL query
For series number 256, what was the original air date?
SELECT Original air date FROM table WHERE Series # = 256