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