question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What's the record in the game where Greg Monroe (8) did the high rebounds? | CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR) | SELECT record FROM table_27755603_2 WHERE high_rebounds = "Greg Monroe (8)" | ### Context: CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR) ### Question: What's the record in the game where Greg Monroe (8) did the high rebounds? ### Answer: SELECT record FROM table_27755603_2 WHERE high_rebounds = "Greg Monroe (8)" |
Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points? | CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR) | SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)" | ### Context: CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR) ### Question: Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points? ### Answer: SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)" |
Who was the opponent in the game in which Austin Daye (16) did the most high points? | CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR) | SELECT team FROM table_27755603_2 WHERE high_points = "Austin Daye (16)" | ### Context: CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR) ### Question: Who was the opponent in the game in which Austin Daye (16) did the most high points? ### Answer: SELECT team FROM table_27755603_2 WHERE high_points = "Austin Daye (16)" |
Where was the game in which Will Bynum (5) did the high assists played? | CREATE TABLE table_27755603_2 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_27755603_2 WHERE high_assists = "Will Bynum (5)" | ### Context: CREATE TABLE table_27755603_2 (location_attendance VARCHAR, high_assists VARCHAR) ### Question: Where was the game in which Will Bynum (5) did the high assists played? ### Answer: SELECT location_attendance FROM table_27755603_2 WHERE high_assists = "Will Bynum (5)" |
What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)? | CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR) | SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)" | ### Context: CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR) ### Question: What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)? ### Answer: SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)" |
What is the highest game number? | CREATE TABLE table_27755784_10 (game INTEGER) | SELECT MAX(game) FROM table_27755784_10 | ### Context: CREATE TABLE table_27755784_10 (game INTEGER) ### Question: What is the highest game number? ### Answer: SELECT MAX(game) FROM table_27755784_10 |
What is the score when the team is @ dallas? | CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27755784_10 WHERE team = "@ Dallas" | ### Context: CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR) ### Question: What is the score when the team is @ dallas? ### Answer: SELECT score FROM table_27755784_10 WHERE team = "@ Dallas" |
Name the high rebounds for january 14 | CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" | ### Context: CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR) ### Question: Name the high rebounds for january 14 ### Answer: SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" |
Name the number of score for january 12 | CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_27755603_8 WHERE date = "January 12" | ### Context: CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR) ### Question: Name the number of score for january 12 ### Answer: SELECT COUNT(score) FROM table_27755603_8 WHERE date = "January 12" |
Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20) | CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR) | SELECT location_attendance FROM table_27755603_8 WHERE high_points = "Austin Daye , Tracy McGrady , Tayshaun Prince (20)" | ### Context: CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR) ### Question: Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20) ### Answer: SELECT location_attendance FROM table_27755603_8 WHERE high_points = "Austin Daye , Tracy McGrady , Tayshaun Prince (20)" |
Name the number of date for stephen curry , dorell wright (27) | CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR) | SELECT COUNT(date) FROM table_27755784_11 WHERE high_points = "Stephen Curry , Dorell Wright (27)" | ### Context: CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR) ### Question: Name the number of date for stephen curry , dorell wright (27) ### Answer: SELECT COUNT(date) FROM table_27755784_11 WHERE high_points = "Stephen Curry , Dorell Wright (27)" |
Name the high rebounds for 77 game | CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_27755784_11 WHERE game = 77 | ### Context: CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR) ### Question: Name the high rebounds for 77 game ### Answer: SELECT high_rebounds FROM table_27755784_11 WHERE game = 77 |
What was the record after the game on November 10? | CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27755784_6 WHERE date = "November 10" | ### Context: CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR) ### Question: What was the record after the game on November 10? ### Answer: SELECT record FROM table_27755784_6 WHERE date = "November 10" |
What is the score when the hight points is Monta Ellis (29)? | CREATE TABLE table_27755784_8 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27755784_8 WHERE high_points = "Monta Ellis (29)" | ### Context: CREATE TABLE table_27755784_8 (score VARCHAR, high_points VARCHAR) ### Question: What is the score when the hight points is Monta Ellis (29)? ### Answer: SELECT score FROM table_27755784_8 WHERE high_points = "Monta Ellis (29)" |
How many teams have hight points listed as David Lee (31)? | CREATE TABLE table_27755784_8 (team VARCHAR, high_points VARCHAR) | SELECT COUNT(team) FROM table_27755784_8 WHERE high_points = "David Lee (31)" | ### Context: CREATE TABLE table_27755784_8 (team VARCHAR, high_points VARCHAR) ### Question: How many teams have hight points listed as David Lee (31)? ### Answer: SELECT COUNT(team) FROM table_27755784_8 WHERE high_points = "David Lee (31)" |
What is the record when the high points is listed as Stephen Curry (32)? | CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_27755784_8 WHERE high_points = "Stephen Curry (32)" | ### Context: CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR) ### Question: What is the record when the high points is listed as Stephen Curry (32)? ### Answer: SELECT record FROM table_27755784_8 WHERE high_points = "Stephen Curry (32)" |
What is the record when the date is January 7? | CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27755784_8 WHERE date = "January 7" | ### Context: CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR) ### Question: What is the record when the date is January 7? ### Answer: SELECT record FROM table_27755784_8 WHERE date = "January 7" |
What is the date when the team is listed as New Orleans? | CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR) | SELECT date FROM table_27755784_8 WHERE team = "New Orleans" | ### Context: CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR) ### Question: What is the date when the team is listed as New Orleans? ### Answer: SELECT date FROM table_27755784_8 WHERE team = "New Orleans" |
What was the team where Darren Collison (7) scored high assists? | CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR) | SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (7)" | ### Context: CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR) ### Question: What was the team where Darren Collison (7) scored high assists? ### Answer: SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (7)" |
When did the Roy Hibbert (27) did the high points? | CREATE TABLE table_27756164_2 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_27756164_2 WHERE high_points = "Roy Hibbert (27)" | ### Context: CREATE TABLE table_27756164_2 (date VARCHAR, high_points VARCHAR) ### Question: When did the Roy Hibbert (27) did the high points? ### Answer: SELECT date FROM table_27756164_2 WHERE high_points = "Roy Hibbert (27)" |
In how many different games did Roy Hibbert (16) did the most high rebounds? | CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)" | ### Context: CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR) ### Question: In how many different games did Roy Hibbert (16) did the most high rebounds? ### Answer: SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)" |
What was the score of the game in which Danny Granger (30) did the high points? | CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27756164_2 WHERE high_points = "Danny Granger (30)" | ### Context: CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR) ### Question: What was the score of the game in which Danny Granger (30) did the high points? ### Answer: SELECT score FROM table_27756164_2 WHERE high_points = "Danny Granger (30)" |
Who scored the most points when the Bucks played against Houston? | CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_27756014_6 WHERE team = "Houston" | ### Context: CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR) ### Question: Who scored the most points when the Bucks played against Houston? ### Answer: SELECT high_points FROM table_27756014_6 WHERE team = "Houston" |
What date was game number 22 on? | CREATE TABLE table_27756014_6 (date VARCHAR, game VARCHAR) | SELECT date FROM table_27756014_6 WHERE game = 22 | ### Context: CREATE TABLE table_27756014_6 (date VARCHAR, game VARCHAR) ### Question: What date was game number 22 on? ### Answer: SELECT date FROM table_27756014_6 WHERE game = 22 |
How many people scored the most points during the game on December 10? | CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR) | SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = "December 10" | ### Context: CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR) ### Question: How many people scored the most points during the game on December 10? ### Answer: SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = "December 10" |
When the team is chicago what is the location attendence? | CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_27756164_8 WHERE team = "Chicago" | ### Context: CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR) ### Question: When the team is chicago what is the location attendence? ### Answer: SELECT location_attendance FROM table_27756164_8 WHERE team = "Chicago" |
What is the score when the team is Orlando? | CREATE TABLE table_27756164_8 (score VARCHAR, team VARCHAR) | SELECT COUNT(score) FROM table_27756164_8 WHERE team = "Orlando" | ### Context: CREATE TABLE table_27756164_8 (score VARCHAR, team VARCHAR) ### Question: What is the score when the team is Orlando? ### Answer: SELECT COUNT(score) FROM table_27756164_8 WHERE team = "Orlando" |
What was the score in the game on March 26? | CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR) | SELECT score FROM table_27756572_10 WHERE date = "March 26" | ### Context: CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR) ### Question: What was the score in the game on March 26? ### Answer: SELECT score FROM table_27756572_10 WHERE date = "March 26" |
What was the record when the Clippers played Philadelphia? | CREATE TABLE table_27756572_10 (record VARCHAR, team VARCHAR) | SELECT record FROM table_27756572_10 WHERE team = "Philadelphia" | ### Context: CREATE TABLE table_27756572_10 (record VARCHAR, team VARCHAR) ### Question: What was the record when the Clippers played Philadelphia? ### Answer: SELECT record FROM table_27756572_10 WHERE team = "Philadelphia" |
What location and attendance were there for game 5? | CREATE TABLE table_27756474_2 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_27756474_2 WHERE game = 5 | ### Context: CREATE TABLE table_27756474_2 (location_attendance VARCHAR, game VARCHAR) ### Question: What location and attendance were there for game 5? ### Answer: SELECT location_attendance FROM table_27756474_2 WHERE game = 5 |
Which game did rudy gay (12) have the highest points? | CREATE TABLE table_27756474_2 (game VARCHAR, high_points VARCHAR) | SELECT game FROM table_27756474_2 WHERE high_points = "Rudy Gay (12)" | ### Context: CREATE TABLE table_27756474_2 (game VARCHAR, high_points VARCHAR) ### Question: Which game did rudy gay (12) have the highest points? ### Answer: SELECT game FROM table_27756474_2 WHERE high_points = "Rudy Gay (12)" |
How many high assists where there for the team of caja laboral? | CREATE TABLE table_27756474_2 (high_assists VARCHAR, team VARCHAR) | SELECT COUNT(high_assists) FROM table_27756474_2 WHERE team = "Caja Laboral" | ### Context: CREATE TABLE table_27756474_2 (high_assists VARCHAR, team VARCHAR) ### Question: How many high assists where there for the team of caja laboral? ### Answer: SELECT COUNT(high_assists) FROM table_27756474_2 WHERE team = "Caja Laboral" |
Which game did marc gasol (10) have the high rebounds? | CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR) | SELECT game FROM table_27756474_2 WHERE high_rebounds = "Marc Gasol (10)" | ### Context: CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR) ### Question: Which game did marc gasol (10) have the high rebounds? ### Answer: SELECT game FROM table_27756474_2 WHERE high_rebounds = "Marc Gasol (10)" |
Who had the high assists on october 6? | CREATE TABLE table_27756474_2 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27756474_2 WHERE date = "October 6" | ### Context: CREATE TABLE table_27756474_2 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the high assists on october 6? ### Answer: SELECT high_assists FROM table_27756474_2 WHERE date = "October 6" |
Name the total number of high assists for fedexforum 11,283 | CREATE TABLE table_27756474_6 (high_assists VARCHAR, location_attendance VARCHAR) | SELECT COUNT(high_assists) FROM table_27756474_6 WHERE location_attendance = "FedExForum 11,283" | ### Context: CREATE TABLE table_27756474_6 (high_assists VARCHAR, location_attendance VARCHAR) ### Question: Name the total number of high assists for fedexforum 11,283 ### Answer: SELECT COUNT(high_assists) FROM table_27756474_6 WHERE location_attendance = "FedExForum 11,283" |
Name the most game for us airways center 16,470 | CREATE TABLE table_27756474_6 (game INTEGER, location_attendance VARCHAR) | SELECT MIN(game) FROM table_27756474_6 WHERE location_attendance = "US Airways Center 16,470" | ### Context: CREATE TABLE table_27756474_6 (game INTEGER, location_attendance VARCHAR) ### Question: Name the most game for us airways center 16,470 ### Answer: SELECT MIN(game) FROM table_27756474_6 WHERE location_attendance = "US Airways Center 16,470" |
Who and what were the high points player for the game against Detroit? | CREATE TABLE table_27756572_6 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_27756572_6 WHERE team = "Detroit" | ### Context: CREATE TABLE table_27756572_6 (high_points VARCHAR, team VARCHAR) ### Question: Who and what were the high points player for the game against Detroit? ### Answer: SELECT high_points FROM table_27756572_6 WHERE team = "Detroit" |
How many times did the Centurions play the Rhein Fire? | CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR) | SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire" | ### Context: CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR) ### Question: How many times did the Centurions play the Rhein Fire? ### Answer: SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire" |
Where did the Centurions play the Hamburg Sea Devils? | CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR) | SELECT game_site FROM table_27764201_2 WHERE opponent = "Hamburg Sea Devils" | ### Context: CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR) ### Question: Where did the Centurions play the Hamburg Sea Devils? ### Answer: SELECT game_site FROM table_27764201_2 WHERE opponent = "Hamburg Sea Devils" |
What time was the kickoff against the Frankfurt Galaxy? | CREATE TABLE table_27764201_2 (kickoff VARCHAR, opponent VARCHAR) | SELECT kickoff FROM table_27764201_2 WHERE opponent = "Frankfurt Galaxy" | ### Context: CREATE TABLE table_27764201_2 (kickoff VARCHAR, opponent VARCHAR) ### Question: What time was the kickoff against the Frankfurt Galaxy? ### Answer: SELECT kickoff FROM table_27764201_2 WHERE opponent = "Frankfurt Galaxy" |
How many total catches did the player with no. 46 have? | CREATE TABLE table_27770426_1 (catches VARCHAR, no VARCHAR) | SELECT COUNT(catches) FROM table_27770426_1 WHERE no = 46 | ### Context: CREATE TABLE table_27770426_1 (catches VARCHAR, no VARCHAR) ### Question: How many total catches did the player with no. 46 have? ### Answer: SELECT COUNT(catches) FROM table_27770426_1 WHERE no = 46 |
How did the manager who was replaced by Jakob Michelsen depart? | CREATE TABLE table_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR) | SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = "Jakob Michelsen" | ### Context: CREATE TABLE table_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR) ### Question: How did the manager who was replaced by Jakob Michelsen depart? ### Answer: SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = "Jakob Michelsen" |
What was the AB team's position in table? | CREATE TABLE table_27782699_3 (position_in_table VARCHAR, team VARCHAR) | SELECT position_in_table FROM table_27782699_3 WHERE team = "AB" | ### Context: CREATE TABLE table_27782699_3 (position_in_table VARCHAR, team VARCHAR) ### Question: What was the AB team's position in table? ### Answer: SELECT position_in_table FROM table_27782699_3 WHERE team = "AB" |
On what date did Kim Fogh replace the previous manager? | CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR) | SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = "Kim Fogh" | ### Context: CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR) ### Question: On what date did Kim Fogh replace the previous manager? ### Answer: SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = "Kim Fogh" |
What was the vacancy date for Thomas Thomasberg? | CREATE TABLE table_27782699_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_vacancy FROM table_27782699_3 WHERE outgoing_manager = "Thomas Thomasberg" | ### Context: CREATE TABLE table_27782699_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ### Question: What was the vacancy date for Thomas Thomasberg? ### Answer: SELECT date_of_vacancy FROM table_27782699_3 WHERE outgoing_manager = "Thomas Thomasberg" |
Which manager was replaced by Thomas Thomasberg? | CREATE TABLE table_27782699_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by = "Thomas Thomasberg" | ### Context: CREATE TABLE table_27782699_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) ### Question: Which manager was replaced by Thomas Thomasberg? ### Answer: SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by = "Thomas Thomasberg" |
How many total dismissals did the player for Guyana have? | CREATE TABLE table_27771406_1 (total_dismissals INTEGER, club VARCHAR) | SELECT MAX(total_dismissals) FROM table_27771406_1 WHERE club = "Guyana" | ### Context: CREATE TABLE table_27771406_1 (total_dismissals INTEGER, club VARCHAR) ### Question: How many total dismissals did the player for Guyana have? ### Answer: SELECT MAX(total_dismissals) FROM table_27771406_1 WHERE club = "Guyana" |
The player for what club had 2 tests? | CREATE TABLE table_27771406_1 (club VARCHAR, tests VARCHAR) | SELECT club FROM table_27771406_1 WHERE tests = 2 | ### Context: CREATE TABLE table_27771406_1 (club VARCHAR, tests VARCHAR) ### Question: The player for what club had 2 tests? ### Answer: SELECT club FROM table_27771406_1 WHERE tests = 2 |
What is the most amount of stumpings any player had? | CREATE TABLE table_27771406_1 (stumpings INTEGER) | SELECT MAX(stumpings) FROM table_27771406_1 | ### Context: CREATE TABLE table_27771406_1 (stumpings INTEGER) ### Question: What is the most amount of stumpings any player had? ### Answer: SELECT MAX(stumpings) FROM table_27771406_1 |
What club did Cyril Christiani play for? | CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR) | SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani" | ### Context: CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR) ### Question: What club did Cyril Christiani play for? ### Answer: SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani" |
How many catches did Clifford McWatt have? | CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR) | SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt" | ### Context: CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR) ### Question: How many catches did Clifford McWatt have? ### Answer: SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt" |
Name the points for top tens being 24 and ownder david pearson | CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR) | SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = "David Pearson" | ### Context: CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR) ### Question: Name the points for top tens being 24 and ownder david pearson ### Answer: SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = "David Pearson" |
Name the starts for bobby labonte | CREATE TABLE table_27786562_1 (starts VARCHAR, driver VARCHAR) | SELECT starts FROM table_27786562_1 WHERE driver = "Bobby Labonte" | ### Context: CREATE TABLE table_27786562_1 (starts VARCHAR, driver VARCHAR) ### Question: Name the starts for bobby labonte ### Answer: SELECT starts FROM table_27786562_1 WHERE driver = "Bobby Labonte" |
Name the poles for season 2006 | CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR) | SELECT poles FROM table_27786562_1 WHERE season = 2006 | ### Context: CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR) ### Question: Name the poles for season 2006 ### Answer: SELECT poles FROM table_27786562_1 WHERE season = 2006 |
What was the production code of the episode no. 55 in the series? | CREATE TABLE table_27776266_1 (production_code VARCHAR, no_in_series VARCHAR) | SELECT production_code FROM table_27776266_1 WHERE no_in_series = 55 | ### Context: CREATE TABLE table_27776266_1 (production_code VARCHAR, no_in_series VARCHAR) ### Question: What was the production code of the episode no. 55 in the series? ### Answer: SELECT production_code FROM table_27776266_1 WHERE no_in_series = 55 |
What was the production code of the episode with an audience of 14.79 million in the US? | CREATE TABLE table_27776266_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) | SELECT production_code FROM table_27776266_1 WHERE us_viewers__million_ = "14.79" | ### Context: CREATE TABLE table_27776266_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) ### Question: What was the production code of the episode with an audience of 14.79 million in the US? ### Answer: SELECT production_code FROM table_27776266_1 WHERE us_viewers__million_ = "14.79" |
Who directed the episode with an audience of 14.11 million? | CREATE TABLE table_27776266_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_27776266_1 WHERE us_viewers__million_ = "14.11" | ### Context: CREATE TABLE table_27776266_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed the episode with an audience of 14.11 million? ### Answer: SELECT directed_by FROM table_27776266_1 WHERE us_viewers__million_ = "14.11" |
What was the title of the episode with a production code of 3x6404? | CREATE TABLE table_27776266_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_27776266_1 WHERE production_code = "3X6404" | ### Context: CREATE TABLE table_27776266_1 (title VARCHAR, production_code VARCHAR) ### Question: What was the title of the episode with a production code of 3x6404? ### Answer: SELECT title FROM table_27776266_1 WHERE production_code = "3X6404" |
Which school players have a number of 255 | CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, pick VARCHAR) | SELECT college_junior_club_team FROM table_2781227_10 WHERE pick = 255 | ### Context: CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, pick VARCHAR) ### Question: Which school players have a number of 255 ### Answer: SELECT college_junior_club_team FROM table_2781227_10 WHERE pick = 255 |
what educational institute does wes swinson attend | CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_10 WHERE player = "Wes Swinson" | ### Context: CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: what educational institute does wes swinson attend ### Answer: SELECT college_junior_club_team FROM table_2781227_10 WHERE player = "Wes Swinson" |
which part on the team does rick schuhwerk play | CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR) | SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk" | ### Context: CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR) ### Question: which part on the team does rick schuhwerk play ### Answer: SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk" |
For college/junior/club team is brandon wheat kings (whl) mention all the player name | CREATE TABLE table_2781227_4 (player VARCHAR, college_junior_club_team VARCHAR) | SELECT player FROM table_2781227_4 WHERE college_junior_club_team = "Brandon Wheat Kings (WHL)" | ### Context: CREATE TABLE table_2781227_4 (player VARCHAR, college_junior_club_team VARCHAR) ### Question: For college/junior/club team is brandon wheat kings (whl) mention all the player name ### Answer: SELECT player FROM table_2781227_4 WHERE college_junior_club_team = "Brandon Wheat Kings (WHL)" |
For player is jamal mayers mention the minimum pick | CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR) | SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" | ### Context: CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR) ### Question: For player is jamal mayers mention the minimum pick ### Answer: SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" |
For player is john jakopin mention the total number of position | CREATE TABLE table_2781227_4 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_2781227_4 WHERE player = "John Jakopin" | ### Context: CREATE TABLE table_2781227_4 (position VARCHAR, player VARCHAR) ### Question: For player is john jakopin mention the total number of position ### Answer: SELECT COUNT(position) FROM table_2781227_4 WHERE player = "John Jakopin" |
For nhl team is san jose sharks mention all the college/junior/club team | CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_2781227_4 WHERE nhl_team = "San Jose Sharks" | ### Context: CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: For nhl team is san jose sharks mention all the college/junior/club team ### Answer: SELECT college_junior_club_team FROM table_2781227_4 WHERE nhl_team = "San Jose Sharks" |
For player is adam wiesel mention all the college/junior/club team | CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_4 WHERE player = "Adam Wiesel" | ### Context: CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: For player is adam wiesel mention all the college/junior/club team ### Answer: SELECT college_junior_club_team FROM table_2781227_4 WHERE player = "Adam Wiesel" |
How many values are displayed under pick for Vlastimil Kroupa? | CREATE TABLE table_2781227_2 (pick VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_2781227_2 WHERE player = "Vlastimil Kroupa" | ### Context: CREATE TABLE table_2781227_2 (pick VARCHAR, player VARCHAR) ### Question: How many values are displayed under pick for Vlastimil Kroupa? ### Answer: SELECT COUNT(pick) FROM table_2781227_2 WHERE player = "Vlastimil Kroupa" |
How many positions does Janne Niinimaa play? | CREATE TABLE table_2781227_2 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_2781227_2 WHERE player = "Janne Niinimaa" | ### Context: CREATE TABLE table_2781227_2 (position VARCHAR, player VARCHAR) ### Question: How many positions does Janne Niinimaa play? ### Answer: SELECT COUNT(position) FROM table_2781227_2 WHERE player = "Janne Niinimaa" |
How many teams does Lee Sorochan play for? | CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan" | ### Context: CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: How many teams does Lee Sorochan play for? ### Answer: SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan" |
What player belongs to the Chicago Blackhawks? | CREATE TABLE table_2781227_2 (player VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_2781227_2 WHERE nhl_team = "Chicago Blackhawks" | ### Context: CREATE TABLE table_2781227_2 (player VARCHAR, nhl_team VARCHAR) ### Question: What player belongs to the Chicago Blackhawks? ### Answer: SELECT player FROM table_2781227_2 WHERE nhl_team = "Chicago Blackhawks" |
How many teams does Maxim Bets play for? | CREATE TABLE table_2781227_2 (nhl_team VARCHAR, player VARCHAR) | SELECT COUNT(nhl_team) FROM table_2781227_2 WHERE player = "Maxim Bets" | ### Context: CREATE TABLE table_2781227_2 (nhl_team VARCHAR, player VARCHAR) ### Question: How many teams does Maxim Bets play for? ### Answer: SELECT COUNT(nhl_team) FROM table_2781227_2 WHERE player = "Maxim Bets" |
What was the minimum pick by the Florida Panthers? | CREATE TABLE table_2781227_11 (pick INTEGER, nhl_team VARCHAR) | SELECT MIN(pick) FROM table_2781227_11 WHERE nhl_team = "Florida Panthers" | ### Context: CREATE TABLE table_2781227_11 (pick INTEGER, nhl_team VARCHAR) ### Question: What was the minimum pick by the Florida Panthers? ### Answer: SELECT MIN(pick) FROM table_2781227_11 WHERE nhl_team = "Florida Panthers" |
What NHL team picked Ryan Meade for the draft? | CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2781227_7 WHERE player = "Ryan Meade" | ### Context: CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR) ### Question: What NHL team picked Ryan Meade for the draft? ### Answer: SELECT nhl_team FROM table_2781227_7 WHERE player = "Ryan Meade" |
What college team did Ryan Golden come from? | CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_7 WHERE player = "Ryan Golden" | ### Context: CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: What college team did Ryan Golden come from? ### Answer: SELECT college_junior_club_team FROM table_2781227_7 WHERE player = "Ryan Golden" |
How many different nationalities is pick number 179? | CREATE TABLE table_2781227_7 (nationality VARCHAR, pick VARCHAR) | SELECT COUNT(nationality) FROM table_2781227_7 WHERE pick = 179 | ### Context: CREATE TABLE table_2781227_7 (nationality VARCHAR, pick VARCHAR) ### Question: How many different nationalities is pick number 179? ### Answer: SELECT COUNT(nationality) FROM table_2781227_7 WHERE pick = 179 |
What college team did the pick for Pittsburgh Penguins come from? | CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_2781227_7 WHERE nhl_team = "Pittsburgh Penguins" | ### Context: CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: What college team did the pick for Pittsburgh Penguins come from? ### Answer: SELECT college_junior_club_team FROM table_2781227_7 WHERE nhl_team = "Pittsburgh Penguins" |
What NHL team picked Tom White? | CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2781227_7 WHERE player = "Tom White" | ### Context: CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR) ### Question: What NHL team picked Tom White? ### Answer: SELECT nhl_team FROM table_2781227_7 WHERE player = "Tom White" |
How many weeks in the top 10 was spent by a song performed by Peter Kay? | CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER, artist VARCHAR) | SELECT MAX(weeks_in_top_10) FROM table_27813010_2 WHERE artist = "Peter Kay" | ### Context: CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER, artist VARCHAR) ### Question: How many weeks in the top 10 was spent by a song performed by Peter Kay? ### Answer: SELECT MAX(weeks_in_top_10) FROM table_27813010_2 WHERE artist = "Peter Kay" |
How long has the longest song spent in the top 10? | CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER) | SELECT MAX(weeks_in_top_10) FROM table_27813010_2 | ### Context: CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER) ### Question: How long has the longest song spent in the top 10? ### Answer: SELECT MAX(weeks_in_top_10) FROM table_27813010_2 |
What college/junior/club team did dmitri gorenko play for? | CREATE TABLE table_2781227_9 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_9 WHERE player = "Dmitri Gorenko" | ### Context: CREATE TABLE table_2781227_9 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: What college/junior/club team did dmitri gorenko play for? ### Answer: SELECT college_junior_club_team FROM table_2781227_9 WHERE player = "Dmitri Gorenko" |
What position does krylja sovetov (russia) play? | CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR) | SELECT position FROM table_2781227_9 WHERE college_junior_club_team = "Krylja Sovetov (Russia)" | ### Context: CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR) ### Question: What position does krylja sovetov (russia) play? ### Answer: SELECT position FROM table_2781227_9 WHERE college_junior_club_team = "Krylja Sovetov (Russia)" |
What position(s) does barrie moore play? | CREATE TABLE table_2781227_9 (position VARCHAR, player VARCHAR) | SELECT position FROM table_2781227_9 WHERE player = "Barrie Moore" | ### Context: CREATE TABLE table_2781227_9 (position VARCHAR, player VARCHAR) ### Question: What position(s) does barrie moore play? ### Answer: SELECT position FROM table_2781227_9 WHERE player = "Barrie Moore" |
How many pac-12 sports are shown for california polytechnic state university? | CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR) | SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University" | ### Context: CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR) ### Question: How many pac-12 sports are shown for california polytechnic state university? ### Answer: SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University" |
When was the institution in boise, idaho founded? | CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR) | SELECT founded FROM table_27816698_2 WHERE location = "Boise, Idaho" | ### Context: CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR) ### Question: When was the institution in boise, idaho founded? ### Answer: SELECT founded FROM table_27816698_2 WHERE location = "Boise, Idaho" |
Which conference did boise state university play at? | CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR) | SELECT current_conference FROM table_27816698_2 WHERE institution = "Boise State University" | ### Context: CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR) ### Question: Which conference did boise state university play at? ### Answer: SELECT current_conference FROM table_27816698_2 WHERE institution = "Boise State University" |
When was the Titans founded? | CREATE TABLE table_27816698_2 (founded INTEGER, nickname VARCHAR) | SELECT MAX(founded) FROM table_27816698_2 WHERE nickname = "Titans" | ### Context: CREATE TABLE table_27816698_2 (founded INTEGER, nickname VARCHAR) ### Question: When was the Titans founded? ### Answer: SELECT MAX(founded) FROM table_27816698_2 WHERE nickname = "Titans" |
Which institution was founded in 1932? | CREATE TABLE table_27816698_2 (institution VARCHAR, founded VARCHAR) | SELECT institution FROM table_27816698_2 WHERE founded = 1932 | ### Context: CREATE TABLE table_27816698_2 (institution VARCHAR, founded VARCHAR) ### Question: Which institution was founded in 1932? ### Answer: SELECT institution FROM table_27816698_2 WHERE founded = 1932 |
Which institution was located in bakersfield, california? | CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California" | ### Context: CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR) ### Question: Which institution was located in bakersfield, california? ### Answer: SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California" |
Name the least games played for 6 points | CREATE TABLE table_27816332_2 (games_played INTEGER, total_points VARCHAR) | SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6 | ### Context: CREATE TABLE table_27816332_2 (games_played INTEGER, total_points VARCHAR) ### Question: Name the least games played for 6 points ### Answer: SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6 |
who is the manufacturer is no.50? | CREATE TABLE table_27821519_1 (manufacturer VARCHAR, no VARCHAR) | SELECT manufacturer FROM table_27821519_1 WHERE no = 50 | ### Context: CREATE TABLE table_27821519_1 (manufacturer VARCHAR, no VARCHAR) ### Question: who is the manufacturer is no.50? ### Answer: SELECT manufacturer FROM table_27821519_1 WHERE no = 50 |
Which episodes did Katie Palmer write? | CREATE TABLE table_27823058_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_27823058_1 WHERE written_by = "Katie Palmer" | ### Context: CREATE TABLE table_27823058_1 (title VARCHAR, written_by VARCHAR) ### Question: Which episodes did Katie Palmer write? ### Answer: SELECT title FROM table_27823058_1 WHERE written_by = "Katie Palmer" |
What's the highest series number ? | CREATE TABLE table_27823058_1 (series__number INTEGER) | SELECT MAX(series__number) FROM table_27823058_1 | ### Context: CREATE TABLE table_27823058_1 (series__number INTEGER) ### Question: What's the highest series number ? ### Answer: SELECT MAX(series__number) FROM table_27823058_1 |
when changsha 長沙 is the commandery what is the commandery capital? | CREATE TABLE table_278229_1 (commandery VARCHAR) | SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Changsha 長沙" | ### Context: CREATE TABLE table_278229_1 (commandery VARCHAR) ### Question: when changsha 長沙 is the commandery what is the commandery capital? ### Answer: SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Changsha 長沙" |
When yidu 宜都 is the commandery what is the lowest number of countries? | CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR) | SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = "Yidu 宜都" | ### Context: CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR) ### Question: When yidu 宜都 is the commandery what is the lowest number of countries? ### Answer: SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = "Yidu 宜都" |
When nanhai 南海 is the commandery what is the commandery capital? | CREATE TABLE table_278229_1 (commandery VARCHAR) | SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Nanhai 南海" | ### Context: CREATE TABLE table_278229_1 (commandery VARCHAR) ### Question: When nanhai 南海 is the commandery what is the commandery capital? ### Answer: SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Nanhai 南海" |
When gaoliang 高涼 is the commandery what is the commandery capital? | CREATE TABLE table_278229_1 (commandery VARCHAR) | SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Gaoliang 高涼" | ### Context: CREATE TABLE table_278229_1 (commandery VARCHAR) ### Question: When gaoliang 高涼 is the commandery what is the commandery capital? ### Answer: SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Gaoliang 高涼" |
What is the title of episode number 9-10? | CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) | SELECT title FROM table_27832075_2 WHERE episode__number = "9-10" | ### Context: CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) ### Question: What is the title of episode number 9-10? ### Answer: SELECT title FROM table_27832075_2 WHERE episode__number = "9-10" |
How many million U.S. viewers wtched episode 69 of the series? | CREATE TABLE table_27832075_2 (us_viewers__millions_ VARCHAR, series__number VARCHAR) | SELECT us_viewers__millions_ FROM table_27832075_2 WHERE series__number = 69 | ### Context: CREATE TABLE table_27832075_2 (us_viewers__millions_ VARCHAR, series__number VARCHAR) ### Question: How many million U.S. viewers wtched episode 69 of the series? ### Answer: SELECT us_viewers__millions_ FROM table_27832075_2 WHERE series__number = 69 |
Who directed episode number 23 in the season? | CREATE TABLE table_27832075_2 (directed_by VARCHAR, episode__number VARCHAR) | SELECT directed_by FROM table_27832075_2 WHERE episode__number = "23" | ### Context: CREATE TABLE table_27832075_2 (directed_by VARCHAR, episode__number VARCHAR) ### Question: Who directed episode number 23 in the season? ### Answer: SELECT directed_by FROM table_27832075_2 WHERE episode__number = "23" |
What is the name of episode number 12 of the season? | CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) | SELECT title FROM table_27832075_2 WHERE episode__number = "12" | ### Context: CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) ### Question: What is the name of episode number 12 of the season? ### Answer: SELECT title FROM table_27832075_2 WHERE episode__number = "12" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.