question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Name the gs for points being 12.1
CREATE TABLE table_17309500_1 (gs VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT gs FROM table_17309500_1 WHERE points = \"12.1\"" }
Name the assists for 157 games
CREATE TABLE table_17309500_1 (assists VARCHAR, games VARCHAR)
{ "SQL_Query": "SELECT assists FROM table_17309500_1 WHERE games = 157" }
Name the steals for season 2007/2008
CREATE TABLE table_17309500_1 (steals VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT steals FROM table_17309500_1 WHERE season = \"2007/2008\"" }
Name the total number of assists for 77 blocks
CREATE TABLE table_17309500_1 (assists VARCHAR, blocks VARCHAR)
{ "SQL_Query": "SELECT COUNT(assists) FROM table_17309500_1 WHERE blocks = \"77\"" }
When mike bibby (8) had the highest amount of assists what is the record?
CREATE TABLE table_17311759_9 (record VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT record FROM table_17311759_9 WHERE high_assists = \"Mike Bibby (8)\"" }
When mike bibby (9) has the highest amount of assists what is the location and attendance?
CREATE TABLE table_17311759_9 (location_attendance VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17311759_9 WHERE high_assists = \"Mike Bibby (9)\"" }
Who was the team played on January 23?
CREATE TABLE table_17311759_6 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17311759_6 WHERE date = \"January 23\"" }
Where was the game held and what was the attendance when they played Orlando?
CREATE TABLE table_17311759_6 (location_attendance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17311759_6 WHERE team = \"Orlando\"" }
In what game did Miami play Charlotte?
CREATE TABLE table_17311783_8 (game INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_17311783_8 WHERE team = \"Charlotte\"" }
Who had the high points on February 6?
CREATE TABLE table_17311797_8 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17311797_8 WHERE date = \"February 6\"" }
What is the highest number of laps led with 16 points?
CREATE TABLE table_17319931_1 (laps INTEGER, points VARCHAR)
{ "SQL_Query": "SELECT MAX(laps) AS Led FROM table_17319931_1 WHERE points = \"16\"" }
How many drivers were there for Samax Motorsport?
CREATE TABLE table_17319931_1 (driver VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(driver) FROM table_17319931_1 WHERE team = \"SAMAX Motorsport\"" }
What is the team whose driver Jeff Simmons?
CREATE TABLE table_17319931_1 (team VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17319931_1 WHERE driver = \"Jeff Simmons\"" }
How many drivers where there when the time/retired +3 laps and points were 24?
CREATE TABLE table_17319931_1 (driver VARCHAR, time_retired VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT COUNT(driver) FROM table_17319931_1 WHERE time_retired = \"+3 laps\" AND points = \"24\"" }
What is the highest number of laps for Darren Manning?
CREATE TABLE table_17319931_1 (laps INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT MAX(laps) FROM table_17319931_1 WHERE driver = \"Darren Manning\"" }
How many car numbers were recorded when the time/retired is +4.0019?
CREATE TABLE table_17319931_1 (car_no VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT COUNT(car_no) FROM table_17319931_1 WHERE time_retired = \"+4.0019\"" }
What game number was played on January 28?
CREATE TABLE table_17311812_7 (game VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT game FROM table_17311812_7 WHERE date = \"January 28\"" }
What is the high amount of points on February 11?
CREATE TABLE table_17311812_8 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17311812_8 WHERE date = \"February 11\"" }
Who has the most assists on Denver?
CREATE TABLE table_17311812_8 (high_assists VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17311812_8 WHERE team = \"Denver\"" }
Name the location attendance for april 13
CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17322817_10 WHERE date = \"April 13\"" }
Name the location attendance for april 5
CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17322817_10 WHERE date = \"April 5\"" }
Who had the high points on December 17?
CREATE TABLE table_17323042_6 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17323042_6 WHERE date = \"December 17\"" }
How many scores are listed for the game against Houston
CREATE TABLE table_17323042_7 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(score) FROM table_17323042_7 WHERE team = \"Houston\"" }
What was the location and attendance of the game when High Assists were Andre Miller (7)?
CREATE TABLE table_17323042_11 (location_attendance VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17323042_11 WHERE high_assists = \"Andre Miller (7)\"" }
Who was the High Assist in game 1?
CREATE TABLE table_17323042_11 (high_assists VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17323042_11 WHERE game = 1" }
Who was the High Assist when the High Rebounds was andre iguodala (8)?
CREATE TABLE table_17323042_11 (high_assists VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17323042_11 WHERE high_rebounds = \"Andre Iguodala (8)\"" }
What was the W-L record when HIgh Points was andre miller (30)?
CREATE TABLE table_17323042_11 (record VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT record FROM table_17323042_11 WHERE high_points = \"Andre Miller (30)\"" }
What was the score and game outcome when High Points was andre miller (17)?
CREATE TABLE table_17323042_11 (score VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT score FROM table_17323042_11 WHERE high_points = \"Andre Miller (17)\"" }
How many games was High Points andre iguodala (29)?
CREATE TABLE table_17323042_11 (game VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_17323042_11 WHERE high_points = \"Andre Iguodala (29)\"" }
How many games were played on March 15?
CREATE TABLE table_17323042_9 (game VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_17323042_9 WHERE date = \"March 15\"" }
What was the team's record when they faced orlando?
CREATE TABLE table_17323042_5 (record VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT record FROM table_17323042_5 WHERE team = \"Orlando\"" }
Whic teams scored l 97–107 (ot)
CREATE TABLE table_17323092_5 (team VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17323092_5 WHERE score = \"L 97–107 (OT)\"" }
Who had the high assists when the team was @ Minnesota?
CREATE TABLE table_17323092_7 (high_assists VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17323092_7 WHERE team = \"@ Minnesota\"" }
On what date did the Team Minnesota play?
CREATE TABLE table_17323092_7 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17323092_7 WHERE team = \"Minnesota\"" }
Who had the high points on the date February 10?
CREATE TABLE table_17323092_7 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17323092_7 WHERE date = \"February 10\"" }
How many players had high points in the location/attendance FedexForum 11,498 respectively?
CREATE TABLE table_17323092_7 (high_points VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = \"FedExForum 11,498\"" }
When the high assists were Shawn Marion (6) who had high rebounds?
CREATE TABLE table_17323092_7 (high_rebounds VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_17323092_7 WHERE high_assists = \"Shawn Marion (6)\"" }
What dates did they play Miami?
CREATE TABLE table_17323092_8 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17323092_8 WHERE team = \"Miami\"" }
What dates did Chris Bosh (18) score the high points?
CREATE TABLE table_17323092_8 (date VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17323092_8 WHERE high_points = \"Chris Bosh (18)\"" }
Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?
CREATE TABLE table_17323092_8 (location_attendance VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17323092_8 WHERE high_assists = \"Anthony Parker (7)\"" }
Who earned high points in game 69?
CREATE TABLE table_17323092_8 (high_points VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17323092_8 WHERE game = 69" }
What is the total number of high points on January 21?
CREATE TABLE table_17323092_6 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_17323092_6 WHERE date = \"January 21\"" }
What is the location and attendance for the Orlando team?
CREATE TABLE table_17323092_6 (location_attendance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17323092_6 WHERE team = \"Orlando\"" }
what was the final score of the game versus Milwaukee?
CREATE TABLE table_17325580_5 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_17325580_5 WHERE team = \"Milwaukee\"" }
What is the record against Boston?
CREATE TABLE table_17323529_8 (record VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT record FROM table_17323529_8 WHERE team = \"Boston\"" }
What is every high point when the team is Washington?
CREATE TABLE table_17325580_6 (high_points VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17325580_6 WHERE team = \"Washington\"" }
How many games occur on the date December 12?
CREATE TABLE table_17325580_6 (game VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_17325580_6 WHERE date = \"December 12\"" }
How many high assist are on the date December 13?
CREATE TABLE table_17325580_6 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_assists) FROM table_17325580_6 WHERE date = \"December 13\"" }
What is every location attendance on the date December 12?
CREATE TABLE table_17325580_6 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17325580_6 WHERE date = \"December 12\"" }
What was the high rebounds on November 26?
CREATE TABLE table_17325937_5 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_17325937_5 WHERE date = \"November 26\"" }
What was the high assists on November 14?
CREATE TABLE table_17325937_5 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17325937_5 WHERE date = \"November 14\"" }
Who had the most assists in the game against Miami?
CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17325937_8 WHERE team = \"Miami\"" }
How many assists were made in the game against San Antonio?
CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_assists) FROM table_17325937_8 WHERE team = \"San Antonio\"" }
Who did the most high rebounds in the game played on November 1?
CREATE TABLE table_17326036_5 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_17326036_5 WHERE date = \"November 1\"" }
What team was the game on November 21 played against?
CREATE TABLE table_17326036_5 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17326036_5 WHERE date = \"November 21\"" }
What was the score in the game against Boston?
CREATE TABLE table_17326036_5 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_17326036_5 WHERE team = \"Boston\"" }
Name the date of appointment for petrik sander
CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)
{ "SQL_Query": "SELECT date_of_appointment FROM table_17327264_3 WHERE replaced_by = \"Petrik Sander\"" }
Name the date of appointment for sacked and 14th position replaced by marco kostmann
CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
{ "SQL_Query": "SELECT date_of_appointment FROM table_17327264_3 WHERE manner_of_departure = \"Sacked\" AND position_in_table = \"14th\" AND replaced_by = \"Marco Kostmann\"" }
How many location attendance was recorded for December 5?
CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(location_attendance) FROM table_17326036_6 WHERE date = \"December 5\"" }
What was the attendance and location on December 15?
CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17326036_6 WHERE date = \"December 15\"" }
How many games were recorded when the team was @ Memphis?
CREATE TABLE table_17326036_6 (game VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_17326036_6 WHERE team = \"@ Memphis\"" }
What was the score of the game when the high rebounds Jeff Foster (10)?
CREATE TABLE table_17326036_6 (score VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT score FROM table_17326036_6 WHERE high_rebounds = \"Jeff Foster (10)\"" }
What team appointed a manager on 12 June?
CREATE TABLE table_17327458_1 (team VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17327458_1 WHERE date_of_appointment = \"12 June\"" }
Who was replaced on 11 July?
CREATE TABLE table_17327458_1 (replaced_by VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT replaced_by FROM table_17327458_1 WHERE date_of_appointment = \"11 July\"" }
Who left a position on 29 May?
CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
{ "SQL_Query": "SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = \"29 May\"" }
Who left a position on 24 January?
CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
{ "SQL_Query": "SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = \"24 January\"" }
How many vacancies happened on 25 May?
CREATE TABLE table_17327458_1 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
{ "SQL_Query": "SELECT COUNT(manner_of_departure) FROM table_17327458_1 WHERE date_of_vacancy = \"25 May\"" }
If the points is 15, what is the fin. pos?
CREATE TABLE table_17330069_1 (fin_pos VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT COUNT(fin_pos) FROM table_17330069_1 WHERE points = \"15\"" }
What is the car number for driver Hélio Castroneves
CREATE TABLE table_17330069_1 (car_no INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT MIN(car_no) FROM table_17330069_1 WHERE driver = \"Hélio Castroneves\"" }
If grid is 2, what is the minimum fin. pos number?
CREATE TABLE table_17330069_1 (fin_pos INTEGER, grid VARCHAR)
{ "SQL_Query": "SELECT MIN(fin_pos) FROM table_17330069_1 WHERE grid = 2" }
If there are 28 points, what is the time/retired?
CREATE TABLE table_17330069_1 (time_retired VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_17330069_1 WHERE points = \"28\"" }
How many winning scores were there in the rr donnelley lpga founders cup?
CREATE TABLE table_17335602_1 (winning_score VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT COUNT(winning_score) FROM table_17335602_1 WHERE tournament = \"RR Donnelley LPGA Founders Cup\"" }
When was the mcdonald's lpga championship?
CREATE TABLE table_17335602_1 (date VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17335602_1 WHERE tournament = \"McDonald's LPGA Championship\"" }
What was the winner's share in the wegmans lpga championship?
CREATE TABLE table_17335602_1 (winners_share___ INTEGER, tournament VARCHAR)
{ "SQL_Query": "SELECT MAX(winners_share___) AS $__ FROM table_17335602_1 WHERE tournament = \"Wegmans LPGA Championship\"" }
Name the kerry # for others# is 44
CREATE TABLE table_1733457_1 (kerry_number VARCHAR, others_number VARCHAR)
{ "SQL_Query": "SELECT kerry_number FROM table_1733457_1 WHERE others_number = 44" }
Name the minimum kerry # for bush % for 50.9%
CREATE TABLE table_1733457_1 (kerry_number INTEGER, bush_percentage VARCHAR)
{ "SQL_Query": "SELECT MIN(kerry_number) FROM table_1733457_1 WHERE bush_percentage = \"50.9%\"" }
Name the others % for johnson
CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT others_percentage FROM table_1733457_1 WHERE county = \"Johnson\"" }
Name the maximum kerry # for where others is 47
CREATE TABLE table_1733457_1 (kerry_number INTEGER, others_number VARCHAR)
{ "SQL_Query": "SELECT MAX(kerry_number) FROM table_1733457_1 WHERE others_number = 47" }
Name the bush% for where others # is 90
CREATE TABLE table_1733457_1 (bush_percentage VARCHAR, others_number VARCHAR)
{ "SQL_Query": "SELECT bush_percentage FROM table_1733457_1 WHERE others_number = 90" }
Name the others % for cleveland
CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT others_percentage FROM table_1733457_1 WHERE county = \"Cleveland\"" }
What is the percentage of others when the number of others is 2286?
CREATE TABLE table_1733513_1 (others_percentage VARCHAR, others_number VARCHAR)
{ "SQL_Query": "SELECT others_percentage FROM table_1733513_1 WHERE others_number = 2286" }
What was the percentage of others when the number for Bush was 3196?
CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)
{ "SQL_Query": "SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 3196" }
What is the percentage of others when the number for Bush is 1329?
CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)
{ "SQL_Query": "SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 1329" }
Which game was played by team milwaukee
CREATE TABLE table_17340355_6 (game VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT game FROM table_17340355_6 WHERE team = \"Milwaukee\"" }
Who made high points on games of score w 106–104 (ot)
CREATE TABLE table_17340355_6 (high_assists VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17340355_6 WHERE score = \"W 106–104 (OT)\"" }
What are the records of games where high rebounds is amar'e stoudemire (11)
CREATE TABLE table_17340355_6 (record VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT COUNT(record) FROM table_17340355_6 WHERE high_rebounds = \"Amar'e Stoudemire (11)\"" }
What is the location of the the game on december 10
CREATE TABLE table_17340355_6 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17340355_6 WHERE date = \"December 10\"" }
List the all the scores where the high assis is b. shaw (5)
CREATE TABLE table_17344582_11 (score VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT score FROM table_17344582_11 WHERE high_assists = \"B. Shaw (5)\"" }
List of high assists with high rebounds for k. mchale (10)
CREATE TABLE table_17344582_11 (high_assists VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17344582_11 WHERE high_rebounds = \"K. McHale (10)\"" }
List all location attendance for series 1-1.
CREATE TABLE table_17344582_11 (location_attendance VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_17344582_11 WHERE series = \"1-1\"" }
What day(s) did the team play indiana?
CREATE TABLE table_17340355_7 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17340355_7 WHERE team = \"Indiana\"" }
Who had the high assist total on january 2?
CREATE TABLE table_17340355_7 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17340355_7 WHERE date = \"January 2\"" }
What was the title used in nomination in the original Bābǎi Zhuàngshì (八百壯士)?
CREATE TABLE table_17350255_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT film_title_used_in_nomination FROM table_17350255_1 WHERE original_title = \"Bābǎi zhuàngshì (八百壯士)\"" }
What was the year when Chūnqiū Cháshì (春秋茶室) was submitted?
CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_17350255_1 WHERE original_title = \"Chūnqiū cháshì (春秋茶室)\"" }
Old Mo's Second Spring was the film title used in nomination in what year?
CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_17350255_1 WHERE film_title_used_in_nomination = \"Old Mo's Second Spring\"" }
What was the year when My Mother's Teahouse was not nominated?
CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_17350255_1 WHERE result = \"Not Nominated\" AND film_title_used_in_nomination = \"My Mother's Teahouse\"" }
What titles were released in 2006?
CREATE TABLE table_173475_1 (title VARCHAR, release VARCHAR)
{ "SQL_Query": "SELECT title FROM table_173475_1 WHERE release = 2006" }
What year(s) was axis & allies: d-day released?
CREATE TABLE table_173475_1 (release VARCHAR, title VARCHAR)
{ "SQL_Query": "SELECT release FROM table_173475_1 WHERE title = \"Axis & Allies: D-Day\"" }
What game was on May 25?
CREATE TABLE table_17355408_12 (game VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT game FROM table_17355408_12 WHERE date = \"May 25\"" }
What game was the record 2-3?
CREATE TABLE table_17355408_12 (game VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_17355408_12 WHERE record = \"2-3\"" }