question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What championship had a final score of 6β4, 6β2, 6β2? | CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR) | SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6β4, 6β2, 6β2" | ### Context: CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR) ### Question: What championship had a final score of 6β4, 6β2, 6β2? ### Answer: SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6β4, 6β2, 6β2" |
If the year is 2007, what is the top ten? | CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR) | SELECT top_10s FROM table_22838521_3 WHERE year = 2007 | ### Context: CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR) ### Question: If the year is 2007, what is the top ten? ### Answer: SELECT top_10s FROM table_22838521_3 WHERE year = 2007 |
What is the possible maximum money list rank? | CREATE TABLE table_22838521_3 (money_list_rank INTEGER) | SELECT MAX(money_list_rank) FROM table_22838521_3 | ### Context: CREATE TABLE table_22838521_3 (money_list_rank INTEGER) ### Question: What is the possible maximum money list rank? ### Answer: SELECT MAX(money_list_rank) FROM table_22838521_3 |
If the scoring average is 72.46, what is the best finish? | CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR) | SELECT best_finish FROM table_22838521_3 WHERE scoring_average = "72.46" | ### Context: CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR) ### Question: If the scoring average is 72.46, what is the best finish? ### Answer: SELECT best_finish FROM table_22838521_3 WHERE scoring_average = "72.46" |
Name the result for wesley moodie | CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_22853654_9 WHERE opponent = "Wesley Moodie" | ### Context: CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR) ### Question: Name the result for wesley moodie ### Answer: SELECT result FROM table_22853654_9 WHERE opponent = "Wesley Moodie" |
Name the surface against monaco | CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR) | SELECT surface FROM table_22853654_9 WHERE against = "Monaco" | ### Context: CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR) ### Question: Name the surface against monaco ### Answer: SELECT surface FROM table_22853654_9 WHERE against = "Monaco" |
Name the result for alexander shvec | CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_22853654_9 WHERE opponent = "Alexander Shvec" | ### Context: CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR) ### Question: Name the result for alexander shvec ### Answer: SELECT result FROM table_22853654_9 WHERE opponent = "Alexander Shvec" |
Name the opponent for 3β6, 4β6, 6β1, 6β7 (7β9) | CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_22853654_9 WHERE result = "3β6, 4β6, 6β1, 6β7 (7β9)" | ### Context: CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR) ### Question: Name the opponent for 3β6, 4β6, 6β1, 6β7 (7β9) ### Answer: SELECT opponent FROM table_22853654_9 WHERE result = "3β6, 4β6, 6β1, 6β7 (7β9)" |
Name the annual rainfail for 2002 population being 493984 | CREATE TABLE table_22854436_1 (average_annual_rainfall__mm_ VARCHAR, population__2002_census_data_ VARCHAR) | SELECT average_annual_rainfall__mm_ FROM table_22854436_1 WHERE population__2002_census_data_ = 493984 | ### Context: CREATE TABLE table_22854436_1 (average_annual_rainfall__mm_ VARCHAR, population__2002_census_data_ VARCHAR) ### Question: Name the annual rainfail for 2002 population being 493984 ### Answer: SELECT average_annual_rainfall__mm_ FROM table_22854436_1 WHERE population__2002_census_data_ = 493984 |
Name the most population 2002 | CREATE TABLE table_22854436_1 (population__2002_census_data_ INTEGER) | SELECT MAX(population__2002_census_data_) FROM table_22854436_1 | ### Context: CREATE TABLE table_22854436_1 (population__2002_census_data_ INTEGER) ### Question: Name the most population 2002 ### Answer: SELECT MAX(population__2002_census_data_) FROM table_22854436_1 |
Name the total water resources m3 for rainfall being 650 | CREATE TABLE table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 VARCHAR, average_annual_rainfall__mm_ VARCHAR) | SELECT COUNT(per_capita_average_annual_renewable_water_resources_m_3) FROM table_22854436_1 WHERE average_annual_rainfall__mm_ = "650" | ### Context: CREATE TABLE table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 VARCHAR, average_annual_rainfall__mm_ VARCHAR) ### Question: Name the total water resources m3 for rainfall being 650 ### Answer: SELECT COUNT(per_capita_average_annual_renewable_water_resources_m_3) FROM table_22854436_... |
What were the carpet w-l in 1993? | CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR) | SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993 | ### Context: CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR) ### Question: What were the carpet w-l in 1993? ### Answer: SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993 |
What is the amount of US open runner-up score? | CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR) | SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = "US Open" AND outcome = "Runner-up" | ### Context: CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR) ### Question: What is the amount of US open runner-up score? ### Answer: SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = "US Open" AND outcome = "Runner-up" |
What is the year where the runner-up outcome was at its basic minimum? | CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR) | SELECT MIN(year) FROM table_22858557_1 WHERE outcome = "Runner-up" | ### Context: CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR) ### Question: What is the year where the runner-up outcome was at its basic minimum? ### Answer: SELECT MIN(year) FROM table_22858557_1 WHERE outcome = "Runner-up" |
How many championships have there been with Steffi Graf? | CREATE TABLE table_22858557_1 (championship VARCHAR, opponent_in_final VARCHAR) | SELECT championship FROM table_22858557_1 WHERE opponent_in_final = "Steffi Graf" | ### Context: CREATE TABLE table_22858557_1 (championship VARCHAR, opponent_in_final VARCHAR) ### Question: How many championships have there been with Steffi Graf? ### Answer: SELECT championship FROM table_22858557_1 WHERE opponent_in_final = "Steffi Graf" |
How many opponents have wimbledon (2) as the championship? | CREATE TABLE table_22860698_2 (opponents VARCHAR, championship VARCHAR) | SELECT COUNT(opponents) FROM table_22860698_2 WHERE championship = "Wimbledon (2)" | ### Context: CREATE TABLE table_22860698_2 (opponents VARCHAR, championship VARCHAR) ### Question: How many opponents have wimbledon (2) as the championship? ### Answer: SELECT COUNT(opponents) FROM table_22860698_2 WHERE championship = "Wimbledon (2)" |
What is the surface when the us open is the championship in the year 1979? | CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR) | SELECT surface FROM table_22860698_2 WHERE championship = "US Open" AND year = 1979 | ### Context: CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR) ### Question: What is the surface when the us open is the championship in the year 1979? ### Answer: SELECT surface FROM table_22860698_2 WHERE championship = "US Open" AND year = 1979 |
What is the game number that was on November 27? | CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR) | SELECT _number FROM table_22871239_5 WHERE date = "November 27" | ### Context: CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR) ### Question: What is the game number that was on November 27? ### Answer: SELECT _number FROM table_22871239_5 WHERE date = "November 27" |
What was the score when the team was @ New Jersey? | CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR) | SELECT score FROM table_22871239_5 WHERE team = "@ New Jersey" | ### Context: CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR) ### Question: What was the score when the team was @ New Jersey? ### Answer: SELECT score FROM table_22871239_5 WHERE team = "@ New Jersey" |
How many high rebound catagories are listed for game number 5? | CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5 | ### Context: CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR) ### Question: How many high rebound catagories are listed for game number 5? ### Answer: SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5 |
Who were the opponents when the record was 11-2? | CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_22862203_2 WHERE record = "11-2" | ### Context: CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR) ### Question: Who were the opponents when the record was 11-2? ### Answer: SELECT opponent FROM table_22862203_2 WHERE record = "11-2" |
What were the records when the opponents had 50 points? | CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR) | SELECT record FROM table_22862203_2 WHERE opp_points = 50 | ### Context: CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR) ### Question: What were the records when the opponents had 50 points? ### Answer: SELECT record FROM table_22862203_2 WHERE opp_points = 50 |
What are the terps points for the nov. 25/05 game? | CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR) | SELECT terps_points FROM table_22862203_2 WHERE date = "Nov. 25/05" | ### Context: CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR) ### Question: What are the terps points for the nov. 25/05 game? ### Answer: SELECT terps_points FROM table_22862203_2 WHERE date = "Nov. 25/05" |
Where were games played when the record was 9-1? | CREATE TABLE table_22862203_2 (location VARCHAR, record VARCHAR) | SELECT location FROM table_22862203_2 WHERE record = "9-1" | ### Context: CREATE TABLE table_22862203_2 (location VARCHAR, record VARCHAR) ### Question: Where were games played when the record was 9-1? ### Answer: SELECT location FROM table_22862203_2 WHERE record = "9-1" |
What is the highest number of terps points in games where the opponent made 53 points? | CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR) | SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53 | ### Context: CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR) ### Question: What is the highest number of terps points in games where the opponent made 53 points? ### Answer: SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53 |
Where was the game on jan. 16/06 played? | CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR) | SELECT location FROM table_22862203_2 WHERE date = "Jan. 16/06" | ### Context: CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR) ### Question: Where was the game on jan. 16/06 played? ### Answer: SELECT location FROM table_22862203_2 WHERE date = "Jan. 16/06" |
Name the high points for 21-45 record | CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR) | SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = "21-45" | ### Context: CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR) ### Question: Name the high points for 21-45 record ### Answer: SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = "21-45" |
Name the visitor for march 23 | CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_22871239_9 WHERE date = "March 23" | ### Context: CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR) ### Question: Name the visitor for march 23 ### Answer: SELECT visitor FROM table_22871239_9 WHERE date = "March 23" |
Name the high rebounds for td garden 18,624 | CREATE TABLE table_22871239_9 (high_rebounds VARCHAR, arena_attendance VARCHAR) | SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = "TD Garden 18,624" | ### Context: CREATE TABLE table_22871239_9 (high_rebounds VARCHAR, arena_attendance VARCHAR) ### Question: Name the high rebounds for td garden 18,624 ### Answer: SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = "TD Garden 18,624" |
Name the record for march 16 | CREATE TABLE table_22871239_9 (record VARCHAR, date VARCHAR) | SELECT record FROM table_22871239_9 WHERE date = "March 16" | ### Context: CREATE TABLE table_22871239_9 (record VARCHAR, date VARCHAR) ### Question: Name the record for march 16 ### Answer: SELECT record FROM table_22871239_9 WHERE date = "March 16" |
Name the total number for score l 110-112 | CREATE TABLE table_22871239_8 (_number VARCHAR, score VARCHAR) | SELECT COUNT(_number) FROM table_22871239_8 WHERE score = "L 110-112" | ### Context: CREATE TABLE table_22871239_8 (_number VARCHAR, score VARCHAR) ### Question: Name the total number for score l 110-112 ### Answer: SELECT COUNT(_number) FROM table_22871239_8 WHERE score = "L 110-112" |
Name the team for w 125-115 score | CREATE TABLE table_22871239_8 (team VARCHAR, score VARCHAR) | SELECT team FROM table_22871239_8 WHERE score = "W 125-115" | ### Context: CREATE TABLE table_22871239_8 (team VARCHAR, score VARCHAR) ### Question: Name the team for w 125-115 score ### Answer: SELECT team FROM table_22871239_8 WHERE score = "W 125-115" |
Name the high assists for american airlines center 19,585 | CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR) | SELECT high_assists FROM table_22871239_8 WHERE location_attendance = "American Airlines Center 19,585" | ### Context: CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR) ### Question: Name the high assists for american airlines center 19,585 ### Answer: SELECT high_assists FROM table_22871239_8 WHERE location_attendance = "American Airlines Center 19,585" |
Who has the high points when 3-2 is the series? | CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR) | SELECT high_points FROM table_22871316_11 WHERE series = "3-2" | ### Context: CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR) ### Question: Who has the high points when 3-2 is the series? ### Answer: SELECT high_points FROM table_22871316_11 WHERE series = "3-2" |
Who has the high assists when 0-1 is the series? | CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR) | SELECT high_assists FROM table_22871316_11 WHERE series = "0-1" | ### Context: CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR) ### Question: Who has the high assists when 0-1 is the series? ### Answer: SELECT high_assists FROM table_22871316_11 WHERE series = "0-1" |
How many high rebounds are in series 3-3? | CREATE TABLE table_22871316_11 (high_rebounds VARCHAR, series VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22871316_11 WHERE series = "3-3" | ### Context: CREATE TABLE table_22871316_11 (high_rebounds VARCHAR, series VARCHAR) ### Question: How many high rebounds are in series 3-3? ### Answer: SELECT COUNT(high_rebounds) FROM table_22871316_11 WHERE series = "3-3" |
How many games are on the date of April 30? | CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR) | SELECT MIN(game) FROM table_22871316_11 WHERE date = "April 30" | ### Context: CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR) ### Question: How many games are on the date of April 30? ### Answer: SELECT MIN(game) FROM table_22871316_11 WHERE date = "April 30" |
Who did the high points in the game played on December 18? | CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_22871316_6 WHERE date = "December 18" | ### Context: CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR) ### Question: Who did the high points in the game played on December 18? ### Answer: SELECT high_points FROM table_22871316_6 WHERE date = "December 18" |
Who did the high points in the game played on December 2? | CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_22871316_6 WHERE date = "December 2" | ### Context: CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR) ### Question: Who did the high points in the game played on December 2? ### Answer: SELECT high_points FROM table_22871316_6 WHERE date = "December 2" |
What's the record of the game in which Carlos Delfino (17) did the most high points? | CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_22871316_6 WHERE high_points = "Carlos Delfino (17)" | ### Context: CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR) ### Question: What's the record of the game in which Carlos Delfino (17) did the most high points? ### Answer: SELECT record FROM table_22871316_6 WHERE high_points = "Carlos Delfino (17)" |
Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists? | CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR) | SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = "Brandon Jennings (8)" | ### Context: CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR) ### Question: Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists? ### Answer: SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = "Brandon Jennings (8)" |
Which player has 18-50 .360 field goals? | CREATE TABLE table_22875514_3 (player VARCHAR, field_goals VARCHAR) | SELECT player FROM table_22875514_3 WHERE field_goals = "18-50 .360" | ### Context: CREATE TABLE table_22875514_3 (player VARCHAR, field_goals VARCHAR) ### Question: Which player has 18-50 .360 field goals? ### Answer: SELECT player FROM table_22875514_3 WHERE field_goals = "18-50 .360" |
What is the most assists for points 129-3.9? | CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR) | SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9" | ### Context: CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR) ### Question: What is the most assists for points 129-3.9? ### Answer: SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9" |
Name the date for irish points being 89 | CREATE TABLE table_22875369_3 (date VARCHAR, irish_points VARCHAR) | SELECT date FROM table_22875369_3 WHERE irish_points = 89 | ### Context: CREATE TABLE table_22875369_3 (date VARCHAR, irish_points VARCHAR) ### Question: Name the date for irish points being 89 ### Answer: SELECT date FROM table_22875369_3 WHERE irish_points = 89 |
Name the number of location for 22-1 | CREATE TABLE table_22875369_3 (location VARCHAR, record VARCHAR) | SELECT COUNT(location) FROM table_22875369_3 WHERE record = "22-1" | ### Context: CREATE TABLE table_22875369_3 (location VARCHAR, record VARCHAR) ### Question: Name the number of location for 22-1 ### Answer: SELECT COUNT(location) FROM table_22875369_3 WHERE record = "22-1" |
Name the opponent for 2-27-10 | CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_22875369_3 WHERE date = "2-27-10" | ### Context: CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for 2-27-10 ### Answer: SELECT opponent FROM table_22875369_3 WHERE date = "2-27-10" |
Name the max irish points for eastern michigan | CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR) | SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = "Eastern Michigan" | ### Context: CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR) ### Question: Name the max irish points for eastern michigan ### Answer: SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = "Eastern Michigan" |
Name the irish points for 23-1 record | CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR) | SELECT irish_points FROM table_22875369_3 WHERE record = "23-1" | ### Context: CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR) ### Question: Name the irish points for 23-1 record ### Answer: SELECT irish_points FROM table_22875369_3 WHERE record = "23-1" |
Name the number of high rebounds for l 92β96 (ot) | CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = "L 92β96 (OT)" | ### Context: CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR) ### Question: Name the number of high rebounds for l 92β96 (ot) ### Answer: SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = "L 92β96 (OT)" |
what ist he date of game 29? | CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR) | SELECT date FROM table_22879262_7 WHERE game = 29 | ### Context: CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR) ### Question: what ist he date of game 29? ### Answer: SELECT date FROM table_22879262_7 WHERE game = 29 |
what is the location attendance for game 27? | CREATE TABLE table_22879262_7 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_22879262_7 WHERE game = 27 | ### Context: CREATE TABLE table_22879262_7 (location_attendance VARCHAR, game VARCHAR) ### Question: what is the location attendance for game 27? ### Answer: SELECT location_attendance FROM table_22879262_7 WHERE game = 27 |
what is the total number of high rebounds for minnesota? | CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = "Minnesota" | ### Context: CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR) ### Question: what is the total number of high rebounds for minnesota? ### Answer: SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = "Minnesota" |
What were the high rebounds on April 4? | CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_22879323_10 WHERE date = "April 4" | ### Context: CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR) ### Question: What were the high rebounds on April 4? ### Answer: SELECT high_rebounds FROM table_22879323_10 WHERE date = "April 4" |
What was the score when the game was 80? | CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR) | SELECT score FROM table_22879323_10 WHERE game = 80 | ### Context: CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR) ### Question: What was the score when the game was 80? ### Answer: SELECT score FROM table_22879323_10 WHERE game = 80 |
What date was the record 11-67? | CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR) | SELECT date FROM table_22879323_10 WHERE record = "11-67" | ### Context: CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR) ### Question: What date was the record 11-67? ### Answer: SELECT date FROM table_22879323_10 WHERE record = "11-67" |
How many high rebounds were there on April 7? | CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = "April 7" | ### Context: CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR) ### Question: How many high rebounds were there on April 7? ### Answer: SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = "April 7" |
What was the high points when rebounds were Terrence Williams (8)? | CREATE TABLE table_22879323_10 (high_points VARCHAR, high_rebounds VARCHAR) | SELECT high_points FROM table_22879323_10 WHERE high_rebounds = "Terrence Williams (8)" | ### Context: CREATE TABLE table_22879323_10 (high_points VARCHAR, high_rebounds VARCHAR) ### Question: What was the high points when rebounds were Terrence Williams (8)? ### Answer: SELECT high_points FROM table_22879323_10 WHERE high_rebounds = "Terrence Williams (8)" |
When the record was 2-29 who had the most assists? | CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR) | SELECT high_assists FROM table_22879323_6 WHERE record = "2-29" | ### Context: CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR) ### Question: When the record was 2-29 who had the most assists? ### Answer: SELECT high_assists FROM table_22879323_6 WHERE record = "2-29" |
When we played Houston who had the most points? | CREATE TABLE table_22879323_6 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_22879323_6 WHERE team = "Houston" | ### Context: CREATE TABLE table_22879323_6 (high_points VARCHAR, team VARCHAR) ### Question: When we played Houston who had the most points? ### Answer: SELECT high_points FROM table_22879323_6 WHERE team = "Houston" |
Name the number of high points for ford center | CREATE TABLE table_22879323_9 (high_points VARCHAR, location_attendance VARCHAR) | SELECT COUNT(high_points) FROM table_22879323_9 WHERE location_attendance = "Ford Center" | ### Context: CREATE TABLE table_22879323_9 (high_points VARCHAR, location_attendance VARCHAR) ### Question: Name the number of high points for ford center ### Answer: SELECT COUNT(high_points) FROM table_22879323_9 WHERE location_attendance = "Ford Center" |
Name the high rebounds for american airlines center | CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR) | SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = "American Airlines Center" | ### Context: CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: Name the high rebounds for american airlines center ### Answer: SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = "American Airlines Center" |
Name the record for l 90β100 (ot) | CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR) | SELECT record FROM table_22879323_9 WHERE score = "L 90β100 (OT)" | ### Context: CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR) ### Question: Name the record for l 90β100 (ot) ### Answer: SELECT record FROM table_22879323_9 WHERE score = "L 90β100 (OT)" |
Name the location attendance for l 83β106 (ot) | CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_22879323_9 WHERE score = "L 83β106 (OT)" | ### Context: CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR) ### Question: Name the location attendance for l 83β106 (ot) ### Answer: SELECT location_attendance FROM table_22879323_9 WHERE score = "L 83β106 (OT)" |
Name the score for 49-31 | CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR) | SELECT score FROM table_22883210_10 WHERE record = "49-31" | ### Context: CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR) ### Question: Name the score for 49-31 ### Answer: SELECT score FROM table_22883210_10 WHERE record = "49-31" |
Name the location attendance for minnesota | CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_22883210_10 WHERE team = "Minnesota" | ### Context: CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR) ### Question: Name the location attendance for minnesota ### Answer: SELECT location_attendance FROM table_22883210_10 WHERE team = "Minnesota" |
What location had a record of 20-12, and how many people attended? | CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_22883210_7 WHERE record = "20-12" | ### Context: CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR) ### Question: What location had a record of 20-12, and how many people attended? ### Answer: SELECT location_attendance FROM table_22883210_7 WHERE record = "20-12" |
What was the total score for january 18? | CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_22883210_7 WHERE date = "January 18" | ### Context: CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR) ### Question: What was the total score for january 18? ### Answer: SELECT COUNT(score) FROM table_22883210_7 WHERE date = "January 18" |
Where was game 41 held, and how many people attended? | CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_22883210_7 WHERE game = 41 | ### Context: CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR) ### Question: Where was game 41 held, and how many people attended? ### Answer: SELECT location_attendance FROM table_22883210_7 WHERE game = 41 |
What was the date for the record 23-13? | CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR) | SELECT date FROM table_22883210_7 WHERE record = "23-13" | ### Context: CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR) ### Question: What was the date for the record 23-13? ### Answer: SELECT date FROM table_22883210_7 WHERE record = "23-13" |
What was the high point for January 20? | CREATE TABLE table_22883210_7 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_22883210_7 WHERE date = "January 20" | ### Context: CREATE TABLE table_22883210_7 (high_points VARCHAR, date VARCHAR) ### Question: What was the high point for January 20? ### Answer: SELECT high_points FROM table_22883210_7 WHERE date = "January 20" |
What was the location and how many attended when Golden State played? | CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_22883210_9 WHERE team = "Golden State" | ### Context: CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR) ### Question: What was the location and how many attended when Golden State played? ### Answer: SELECT location_attendance FROM table_22883210_9 WHERE team = "Golden State" |
What is the highest game number where the team was Cleveland? | CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR) | SELECT MAX(game) FROM table_22883210_9 WHERE team = "Cleveland" | ### Context: CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR) ### Question: What is the highest game number where the team was Cleveland? ### Answer: SELECT MAX(game) FROM table_22883210_9 WHERE team = "Cleveland" |
What is the highest numbered nightly rank for any episode? | CREATE TABLE table_22892217_4 (nightly_rank INTEGER) | SELECT MAX(nightly_rank) FROM table_22892217_4 | ### Context: CREATE TABLE table_22892217_4 (nightly_rank INTEGER) ### Question: What is the highest numbered nightly rank for any episode? ### Answer: SELECT MAX(nightly_rank) FROM table_22892217_4 |
How many attended on december 2? | CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR) | SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = "December 2" | ### Context: CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR) ### Question: How many attended on december 2? ### Answer: SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = "December 2" |
Who was he opponent on december 11? | CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR) | SELECT team FROM table_22893781_5 WHERE date = "December 11" | ### Context: CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR) ### Question: Who was he opponent on december 11? ### Answer: SELECT team FROM table_22893781_5 WHERE date = "December 11" |
What was the score against houston? | CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR) | SELECT score FROM table_22893781_5 WHERE team = "Houston" | ### Context: CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR) ### Question: What was the score against houston? ### Answer: SELECT score FROM table_22893781_5 WHERE team = "Houston" |
when did the @ indiana game take place? | CREATE TABLE table_22893781_7 (date VARCHAR, team VARCHAR) | SELECT date FROM table_22893781_7 WHERE team = "@ Indiana" | ### Context: CREATE TABLE table_22893781_7 (date VARCHAR, team VARCHAR) ### Question: when did the @ indiana game take place? ### Answer: SELECT date FROM table_22893781_7 WHERE team = "@ Indiana" |
Name the score for madison square garden 18,828 | CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR) | SELECT score FROM table_22893781_6 WHERE location_attendance = "Madison Square Garden 18,828" | ### Context: CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR) ### Question: Name the score for madison square garden 18,828 ### Answer: SELECT score FROM table_22893781_6 WHERE location_attendance = "Madison Square Garden 18,828" |
Name the number of date for dallas | CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR) | SELECT COUNT(date) FROM table_22893781_6 WHERE team = "Dallas" | ### Context: CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR) ### Question: Name the number of date for dallas ### Answer: SELECT COUNT(date) FROM table_22893781_6 WHERE team = "Dallas" |
Name the high assists for january 15 | CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_22893781_6 WHERE date = "January 15" | ### Context: CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR) ### Question: Name the high assists for january 15 ### Answer: SELECT high_assists FROM table_22893781_6 WHERE date = "January 15" |
What is the name of the episode that aired originally on November 10, 1998? | CREATE TABLE table_228973_5 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_228973_5 WHERE original_air_date = "November 10, 1998" | ### Context: CREATE TABLE table_228973_5 (title VARCHAR, original_air_date VARCHAR) ### Question: What is the name of the episode that aired originally on November 10, 1998? ### Answer: SELECT title FROM table_228973_5 WHERE original_air_date = "November 10, 1998" |
What episode number in the series originally aired on April 27, 1999? | CREATE TABLE table_228973_5 (no_in_series INTEGER, original_air_date VARCHAR) | SELECT MAX(no_in_series) FROM table_228973_5 WHERE original_air_date = "April 27, 1999" | ### Context: CREATE TABLE table_228973_5 (no_in_series INTEGER, original_air_date VARCHAR) ### Question: What episode number in the series originally aired on April 27, 1999? ### Answer: SELECT MAX(no_in_series) FROM table_228973_5 WHERE original_air_date = "April 27, 1999" |
How many people wrote episode 68 in the series? | CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR) | SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68 | ### Context: CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR) ### Question: How many people wrote episode 68 in the series? ### Answer: SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68 |
Who directed the episode that originally aired on February 16, 1999? | CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR) | SELECT directed_by FROM table_228973_5 WHERE original_air_date = "February 16, 1999" | ### Context: CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR) ### Question: Who directed the episode that originally aired on February 16, 1999? ### Answer: SELECT directed_by FROM table_228973_5 WHERE original_air_date = "February 16, 1999" |
The episode which originally aired on February 11, 2005 had which episode # of the season? | CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR) | SELECT no_in_season FROM table_228973_11 WHERE original_air_date = "February 11, 2005" | ### Context: CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR) ### Question: The episode which originally aired on February 11, 2005 had which episode # of the season? ### Answer: SELECT no_in_season FROM table_228973_11 WHERE original_air_date = "February 11, 2005" |
The episode which originally aired on December 17, 2004 was written by whom? | CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR) | SELECT written_by FROM table_228973_11 WHERE original_air_date = "December 17, 2004" | ### Context: CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR) ### Question: The episode which originally aired on December 17, 2004 was written by whom? ### Answer: SELECT written_by FROM table_228973_11 WHERE original_air_date = "December 17, 2004" |
David James Elliott directed which episode number within the series? | CREATE TABLE table_228973_11 (no_in_series VARCHAR, directed_by VARCHAR) | SELECT no_in_series FROM table_228973_11 WHERE directed_by = "David James Elliott" | ### Context: CREATE TABLE table_228973_11 (no_in_series VARCHAR, directed_by VARCHAR) ### Question: David James Elliott directed which episode number within the series? ### Answer: SELECT no_in_series FROM table_228973_11 WHERE directed_by = "David James Elliott" |
Who directed the episode which originally aired February 4, 2005? | CREATE TABLE table_228973_11 (directed_by VARCHAR, original_air_date VARCHAR) | SELECT directed_by FROM table_228973_11 WHERE original_air_date = "February 4, 2005" | ### Context: CREATE TABLE table_228973_11 (directed_by VARCHAR, original_air_date VARCHAR) ### Question: Who directed the episode which originally aired February 4, 2005? ### Answer: SELECT directed_by FROM table_228973_11 WHERE original_air_date = "February 4, 2005" |
which is the number of the season episode whose premiere was in january 3, 1997? | CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR) | SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = "January 3, 1997" | ### Context: CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR) ### Question: which is the number of the season episode whose premiere was in january 3, 1997? ### Answer: SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = "January 3, 1997" |
which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin? | CREATE TABLE table_228973_3 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT no_in_season FROM table_228973_3 WHERE written_by = "R. Scott Gemmill" AND directed_by = "Ray Austin" | ### Context: CREATE TABLE table_228973_3 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR) ### Question: which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin? ### Answer: SELECT no_in_season FROM table_228973_3 WHERE written_by = "R. Scott Gemmill" AND ... |
what is the name of the episode whose number of the series episode was 31? | CREATE TABLE table_228973_3 (title VARCHAR, no_in_series VARCHAR) | SELECT title FROM table_228973_3 WHERE no_in_series = 31 | ### Context: CREATE TABLE table_228973_3 (title VARCHAR, no_in_series VARCHAR) ### Question: what is the name of the episode whose number of the series episode was 31? ### Answer: SELECT title FROM table_228973_3 WHERE no_in_series = 31 |
When 129 is the number in the series who is the writer? | CREATE TABLE table_228973_7 (written_by VARCHAR, no_in_series VARCHAR) | SELECT written_by FROM table_228973_7 WHERE no_in_series = 129 | ### Context: CREATE TABLE table_228973_7 (written_by VARCHAR, no_in_series VARCHAR) ### Question: When 129 is the number in the series who is the writer? ### Answer: SELECT written_by FROM table_228973_7 WHERE no_in_series = 129 |
How many product # have episode 1? | CREATE TABLE table_2289806_1 (prod__number INTEGER, episode__number VARCHAR) | SELECT MAX(prod__number) FROM table_2289806_1 WHERE episode__number = 1 | ### Context: CREATE TABLE table_2289806_1 (prod__number INTEGER, episode__number VARCHAR) ### Question: How many product # have episode 1? ### Answer: SELECT MAX(prod__number) FROM table_2289806_1 WHERE episode__number = 1 |
Name the windows builders for apache gump | CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR) | SELECT windows_builders FROM table_22903426_1 WHERE name = "Apache Gump" | ### Context: CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR) ### Question: Name the windows builders for apache gump ### Answer: SELECT windows_builders FROM table_22903426_1 WHERE name = "Apache Gump" |
Name the number of scm system for nant, visual studio | CREATE TABLE table_22903426_1 (scm_system VARCHAR, windows_builders VARCHAR) | SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio" | ### Context: CREATE TABLE table_22903426_1 (scm_system VARCHAR, windows_builders VARCHAR) ### Question: Name the number of scm system for nant, visual studio ### Answer: SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio" |
Name the number of other builders for nant, visual studio | CREATE TABLE table_22903426_1 (other_builders VARCHAR, windows_builders VARCHAR) | SELECT COUNT(other_builders) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio" | ### Context: CREATE TABLE table_22903426_1 (other_builders VARCHAR, windows_builders VARCHAR) ### Question: Name the number of other builders for nant, visual studio ### Answer: SELECT COUNT(other_builders) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio" |
What is the minimum for 2nd runner-up? | CREATE TABLE table_2290097_4 (Id VARCHAR) | SELECT MIN(2 AS nd_runner_up) FROM table_2290097_4 | ### Context: CREATE TABLE table_2290097_4 (Id VARCHAR) ### Question: What is the minimum for 2nd runner-up? ### Answer: SELECT MIN(2 AS nd_runner_up) FROM table_2290097_4 |
If the original air date is February 4, 2003, what is the episode title? | CREATE TABLE table_228973_9 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_228973_9 WHERE original_air_date = "February 4, 2003" | ### Context: CREATE TABLE table_228973_9 (title VARCHAR, original_air_date VARCHAR) ### Question: If the original air date is February 4, 2003, what is the episode title? ### Answer: SELECT title FROM table_228973_9 WHERE original_air_date = "February 4, 2003" |
If the original air date is April 1, 2003, what number in the series is this episode? | CREATE TABLE table_228973_9 (no_in_series VARCHAR, original_air_date VARCHAR) | SELECT no_in_series FROM table_228973_9 WHERE original_air_date = "April 1, 2003" | ### Context: CREATE TABLE table_228973_9 (no_in_series VARCHAR, original_air_date VARCHAR) ### Question: If the original air date is April 1, 2003, what number in the series is this episode? ### Answer: SELECT no_in_series FROM table_228973_9 WHERE original_air_date = "April 1, 2003" |
What is the maximum number in the series for the episode directed by Harvey S. Laidman? | CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR) | SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = "Harvey S. Laidman" | ### Context: CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR) ### Question: What is the maximum number in the series for the episode directed by Harvey S. Laidman? ### Answer: SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = "Harvey S. Laidman" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.