question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What are the numbers of steals associated with players having exactly 3 blocks? | CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR) | SELECT steals FROM table_24913533_4 WHERE blocks = 3 | ### Context: CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR) ### Question: What are the numbers of steals associated with players having exactly 3 blocks? ### Answer: SELECT steals FROM table_24913533_4 WHERE blocks = 3 |
How many numbers of rebounds are associated with exactly 18 points? | CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR) | SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18 | ### Context: CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR) ### Question: How many numbers of rebounds are associated with exactly 18 points? ### Answer: SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18 |
What is the maximum number of assists for players named Anastasia Kostaki? | CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR) | SELECT MAX(assists) FROM table_24913533_4 WHERE player = "Anastasia Kostaki" | ### Context: CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR) ### Question: What is the maximum number of assists for players named Anastasia Kostaki? ### Answer: SELECT MAX(assists) FROM table_24913533_4 WHERE player = "Anastasia Kostaki" |
What is Tiffani Johnson's maximum steals? | CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR) | SELECT MAX(steals) FROM table_24912693_4 WHERE player = "Tiffani Johnson" | ### Context: CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR) ### Question: What is Tiffani Johnson's maximum steals? ### Answer: SELECT MAX(steals) FROM table_24912693_4 WHERE player = "Tiffani Johnson" |
Which player has 17 blocks? | CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR) | SELECT player FROM table_24912693_4 WHERE blocks = 17 | ### Context: CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR) ### Question: Which player has 17 blocks? ### Answer: SELECT player FROM table_24912693_4 WHERE blocks = 17 |
How many field goals does the player with 84 rebounds have? | CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR) | SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84 | ### Context: CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR) ### Question: How many field goals does the player with 84 rebounds have? ### Answer: SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84 |
How many blocks does the player who played 893 minutes have? | CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR) | SELECT blocks FROM table_24912693_4 WHERE minutes = 893 | ### Context: CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR) ### Question: How many blocks does the player who played 893 minutes have? ### Answer: SELECT blocks FROM table_24912693_4 WHERE minutes = 893 |
How many points does the player with 2 steals have? | CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR) | SELECT points FROM table_24912693_4 WHERE steals = 2 | ### Context: CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR) ### Question: How many points does the player with 2 steals have? ### Answer: SELECT points FROM table_24912693_4 WHERE steals = 2 |
Name the most number | CREATE TABLE table_24924576_2 (number INTEGER) | SELECT MAX(number) FROM table_24924576_2 | ### Context: CREATE TABLE table_24924576_2 (number INTEGER) ### Question: Name the most number ### Answer: SELECT MAX(number) FROM table_24924576_2 |
Name the titles for tko 11/12 | CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR) | SELECT titles FROM table_24924576_2 WHERE result = "TKO 11/12" | ### Context: CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR) ### Question: Name the titles for tko 11/12 ### Answer: SELECT titles FROM table_24924576_2 WHERE result = "TKO 11/12" |
Where was the game played when the result/margin was won by 70? | CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR) | SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70" | ### Context: CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR) ### Question: Where was the game played when the result/margin was won by 70? ### Answer: SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70" |
What is the result/margin when fox sports 1 broadcast the game played at mcg? | CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR) | SELECT result_margin FROM table_24919137_2 WHERE broadcaster = "Fox Sports 1" AND venue = "MCG" | ### Context: CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR) ### Question: What is the result/margin when fox sports 1 broadcast the game played at mcg? ### Answer: SELECT result_margin FROM table_24919137_2 WHERE broadcaster = "Fox Sports 1" AND venue = "MCG" |
Which network broadcast the game when the Western Bulldogs played melbourne? | CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR) | SELECT broadcaster FROM table_24919137_2 WHERE opposition = "Melbourne" | ### Context: CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR) ### Question: Which network broadcast the game when the Western Bulldogs played melbourne? ### Answer: SELECT broadcaster FROM table_24919137_2 WHERE opposition = "Melbourne" |
Where was the game played when the score was 14.16 (100)-12.12 (84)? | CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)" | ### Context: CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR) ### Question: Where was the game played when the score was 14.16 (100)-12.12 (84)? ### Answer: SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)" |
What was the ladder position when the score was 15.9 (99)–14.6 (90)? | CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR) | SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)" | ### Context: CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR) ### Question: What was the ladder position when the score was 15.9 (99)–14.6 (90)? ### Answer: SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)" |
On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team? | CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR) | SELECT date FROM table_24919137_2 WHERE ladder_position = "8th" AND opposition = "Hawthorn" | ### Context: CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR) ### Question: On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team? ### Answer: SELECT date FROM table_24919137_2 WHERE ladder_position = "8th" AND ... |
What school is nicknamed the panthers? | CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR) | SELECT school FROM table_24935743_2 WHERE nickname = "Panthers" | ### Context: CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR) ### Question: What school is nicknamed the panthers? ### Answer: SELECT school FROM table_24935743_2 WHERE nickname = "Panthers" |
What school is in Jeromesville? | CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR) | SELECT location FROM table_24935743_2 WHERE school = "Jeromesville" | ### Context: CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR) ### Question: What school is in Jeromesville? ### Answer: SELECT location FROM table_24935743_2 WHERE school = "Jeromesville" |
What was the previous school of the ft7in (m) tall player? | CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR) | SELECT previous_school FROM table_24925945_3 WHERE height = "ft7in (m)" | ### Context: CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR) ### Question: What was the previous school of the ft7in (m) tall player? ### Answer: SELECT previous_school FROM table_24925945_3 WHERE height = "ft7in (m)" |
What was the previous school of #22? | CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR) | SELECT previous_school FROM table_24925945_3 WHERE _number = 22 | ### Context: CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR) ### Question: What was the previous school of #22? ### Answer: SELECT previous_school FROM table_24925945_3 WHERE _number = 22 |
What is the title of the episode with production code 3x5402? | CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_24938621_2 WHERE production_code = "3X5402" | ### Context: CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) ### Question: What is the title of the episode with production code 3x5402? ### Answer: SELECT title FROM table_24938621_2 WHERE production_code = "3X5402" |
What is the title of the episode with production code 3x5405? | CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_24938621_2 WHERE production_code = "3X5405" | ### Context: CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) ### Question: What is the title of the episode with production code 3x5405? ### Answer: SELECT title FROM table_24938621_2 WHERE production_code = "3X5405" |
Who as the home team for game on 5 october 2011? | CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR) | SELECT home_team FROM table_24949975_1 WHERE date = "5 October 2011" | ### Context: CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR) ### Question: Who as the home team for game on 5 october 2011? ### Answer: SELECT home_team FROM table_24949975_1 WHERE date = "5 October 2011" |
What was the stadium for the home team of shamrock rovers and result of 3–0? | CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR) | SELECT stadium FROM table_24949975_1 WHERE home_team = "Shamrock Rovers" AND result = "3–0" | ### Context: CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR) ### Question: What was the stadium for the home team of shamrock rovers and result of 3–0? ### Answer: SELECT stadium FROM table_24949975_1 WHERE home_team = "Shamrock Rovers" AND result = "3–0" |
What was the away team when the result was 2–1 and home team was the bohemians? | CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians" | ### Context: CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR) ### Question: What was the away team when the result was 2–1 and home team was the bohemians? ### Answer: SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians" |
Who was the home team for the 2013 season and the result was 0–0? | CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR) | SELECT home_team FROM table_24949975_1 WHERE season = "2013" AND result = "0–0" | ### Context: CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR) ### Question: Who was the home team for the 2013 season and the result was 0–0? ### Answer: SELECT home_team FROM table_24949975_1 WHERE season = "2013" AND result = "0–0" |
What is the date for the game at the tallaght stadium and result was 0–1? | CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR) | SELECT date FROM table_24949975_1 WHERE stadium = "Tallaght stadium" AND result = "0–1" | ### Context: CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR) ### Question: What is the date for the game at the tallaght stadium and result was 0–1? ### Answer: SELECT date FROM table_24949975_1 WHERE stadium = "Tallaght stadium" AND result = "0–1" |
What opponents played Waldstadion in a game? | CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_24951872_2 WHERE game_site = "Waldstadion" | ### Context: CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR) ### Question: What opponents played Waldstadion in a game? ### Answer: SELECT opponent FROM table_24951872_2 WHERE game_site = "Waldstadion" |
What was the maximum week that had attendance of 10738? | CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR) | SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738 | ### Context: CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR) ### Question: What was the maximum week that had attendance of 10738? ### Answer: SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738 |
What is the production code of the episode written by Cathryn Humphris? | CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR) | SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris" | ### Context: CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR) ### Question: What is the production code of the episode written by Cathryn Humphris? ### Answer: SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris" |
What is the production code of the episode that had 5.43 million viewers? | CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR) | SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = "5.43" | ### Context: CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the production code of the episode that had 5.43 million viewers? ### Answer: SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = "5.43" |
What was the title of the episode directed by Jesse Warn? | CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR) | SELECT production_code FROM table_24938621_3 WHERE directed_by = "Jesse Warn" | ### Context: CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR) ### Question: What was the title of the episode directed by Jesse Warn? ### Answer: SELECT production_code FROM table_24938621_3 WHERE directed_by = "Jesse Warn" |
What episode number was written by Gregg Hurwitz? | CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR) | SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz" | ### Context: CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR) ### Question: What episode number was written by Gregg Hurwitz? ### Answer: SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz" |
If the dry density is 800, what is the drying shrinkage %? | CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR) | SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800 | ### Context: CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR) ### Question: If the dry density is 800, what is the drying shrinkage %? ### Answer: SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800 |
What number in the series was episode 7 in the season? | CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR) | SELECT series__number FROM table_24961421_1 WHERE season__number = 7 | ### Context: CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR) ### Question: What number in the series was episode 7 in the season? ### Answer: SELECT series__number FROM table_24961421_1 WHERE season__number = 7 |
Who wrote the episode that had 12.15 million viewers? | CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = "12.15" | ### Context: CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Who wrote the episode that had 12.15 million viewers? ### Answer: SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = "12.15" |
What number in the season was the episode with 12.23 million viewers? | CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR) | SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = "12.23" | ### Context: CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What number in the season was the episode with 12.23 million viewers? ### Answer: SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = "12.23" |
What is the date of the game at Olympic Stadium? | CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_24989925_2 WHERE game_site = "Olympic Stadium" | ### Context: CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR) ### Question: What is the date of the game at Olympic Stadium? ### Answer: SELECT date FROM table_24989925_2 WHERE game_site = "Olympic Stadium" |
How many weeks total are there? | CREATE TABLE table_24989925_2 (week INTEGER) | SELECT MAX(week) FROM table_24989925_2 | ### Context: CREATE TABLE table_24989925_2 (week INTEGER) ### Question: How many weeks total are there? ### Answer: SELECT MAX(week) FROM table_24989925_2 |
What was the team's record when they played at Rheinenergiestadion? | CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR) | SELECT team_record FROM table_24989925_2 WHERE game_site = "RheinEnergieStadion" | ### Context: CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR) ### Question: What was the team's record when they played at Rheinenergiestadion? ### Answer: SELECT team_record FROM table_24989925_2 WHERE game_site = "RheinEnergieStadion" |
What is the lowest overall number of 09-10 oi 2nd? | CREATE TABLE table_24990183_6 (Id VARCHAR) | SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6 | ### Context: CREATE TABLE table_24990183_6 (Id VARCHAR) ### Question: What is the lowest overall number of 09-10 oi 2nd? ### Answer: SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6 |
What was the maximum 09-10 i/o best? | CREATE TABLE table_24990183_4 (Id VARCHAR) | SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4 | ### Context: CREATE TABLE table_24990183_4 (Id VARCHAR) ### Question: What was the maximum 09-10 i/o best? ### Answer: SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4 |
If the rank is 17, what are the names? | CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR) | SELECT name FROM table_24990183_7 WHERE rank = 17 | ### Context: CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR) ### Question: If the rank is 17, what are the names? ### Answer: SELECT name FROM table_24990183_7 WHERE rank = 17 |
If the WS points is 947, what is the 08-09 gp/jgp 2nd ? | CREATE TABLE table_24990183_7 (ws_points VARCHAR) | SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947 | ### Context: CREATE TABLE table_24990183_7 (ws_points VARCHAR) ### Question: If the WS points is 947, what is the 08-09 gp/jgp 2nd ? ### Answer: SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947 |
How many points did he have when he has in the 34th position? | CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) | SELECT points FROM table_24998088_1 WHERE position = "34th" | ### Context: CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) ### Question: How many points did he have when he has in the 34th position? ### Answer: SELECT points FROM table_24998088_1 WHERE position = "34th" |
How many wins were listed when he had 112 points? | CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR) | SELECT wins FROM table_24998088_1 WHERE points = "112" | ### Context: CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR) ### Question: How many wins were listed when he had 112 points? ### Answer: SELECT wins FROM table_24998088_1 WHERE points = "112" |
In what series did he have the 7th position? | CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR) | SELECT series FROM table_24998088_1 WHERE position = "7th" | ### Context: CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR) ### Question: In what series did he have the 7th position? ### Answer: SELECT series FROM table_24998088_1 WHERE position = "7th" |
what were his points when he was in 8th position? | CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) | SELECT points FROM table_24998088_1 WHERE position = "8th" | ### Context: CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) ### Question: what were his points when he was in 8th position? ### Answer: SELECT points FROM table_24998088_1 WHERE position = "8th" |
What was the vote when the air date is 4 october 1997? | CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) | SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997" | ### Context: CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) ### Question: What was the vote when the air date is 4 october 1997? ### Answer: SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997" |
Who was eliminated when immunity went to kent (jürgen)? | CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR) | SELECT eliminated FROM table_25016824_2 WHERE immunity = "Kent (Jürgen)" | ### Context: CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR) ### Question: Who was eliminated when immunity went to kent (jürgen)? ### Answer: SELECT eliminated FROM table_25016824_2 WHERE immunity = "Kent (Jürgen)" |
Who was eliminated when the vote was 8-1? | CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR) | SELECT eliminated FROM table_25016824_2 WHERE vote = "8-1" | ### Context: CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR) ### Question: Who was eliminated when the vote was 8-1? ### Answer: SELECT eliminated FROM table_25016824_2 WHERE vote = "8-1" |
How many entries are there for vote when the air date was 15 november 1997? | CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) | SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = "15 November 1997" | ### Context: CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) ### Question: How many entries are there for vote when the air date was 15 november 1997? ### Answer: SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = "15 November 1997" |
What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46? | CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR) | SELECT reward FROM table_25016824_2 WHERE immunity = "Martin" AND finish = "13th voted Out 8th Jury Member Day 46" | ### Context: CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR) ### Question: What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46? ### Answer: SELECT reward FROM table_25016824_2 WHERE immunity = "Martin" AND finish = "13th voted Out 8th J... |
How many values for Macedonian correspond to Slovianski value of Veliki? | CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR) | SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = "veliki" | ### Context: CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR) ### Question: How many values for Macedonian correspond to Slovianski value of Veliki? ### Answer: SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = "veliki" |
What area all values for Slovak when value for Ukranian is пес, собака? | CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR) | SELECT slovak FROM table_25008327_8 WHERE ukrainian = "пес, собака" | ### Context: CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR) ### Question: What area all values for Slovak when value for Ukranian is пес, собака? ### Answer: SELECT slovak FROM table_25008327_8 WHERE ukrainian = "пес, собака" |
What is every value for Croatian when value for English is dog? | CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR) | SELECT croatian FROM table_25008327_8 WHERE english = "dog" | ### Context: CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR) ### Question: What is every value for Croatian when value for English is dog? ### Answer: SELECT croatian FROM table_25008327_8 WHERE english = "dog" |
What is every value for Polish when Balarusian is ноч? | CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR) | SELECT polish FROM table_25008327_8 WHERE belarusian = "ноч" | ### Context: CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR) ### Question: What is every value for Polish when Balarusian is ноч? ### Answer: SELECT polish FROM table_25008327_8 WHERE belarusian = "ноч" |
What is every value for Russian when value for Bulgarian is пес, куче? | CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR) | SELECT russian FROM table_25008327_8 WHERE bulgarian = "пес, куче" | ### Context: CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR) ### Question: What is every value for Russian when value for Bulgarian is пес, куче? ### Answer: SELECT russian FROM table_25008327_8 WHERE bulgarian = "пес, куче" |
What is every value for словјански if polish is książka? | CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR) | SELECT словјански FROM table_25008327_8 WHERE polish = "książka" | ### Context: CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR) ### Question: What is every value for словјански if polish is książka? ### Answer: SELECT словјански FROM table_25008327_8 WHERE polish = "książka" |
Name the position for christopher smith | CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR) | SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith" | ### Context: CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR) ### Question: Name the position for christopher smith ### Answer: SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith" |
Name the college for nate binder | CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR) | SELECT college FROM table_25017530_5 WHERE player = "Nate Binder" | ### Context: CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR) ### Question: Name the college for nate binder ### Answer: SELECT college FROM table_25017530_5 WHERE player = "Nate Binder" |
Name the least pick number for steven turner | CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = "Steven Turner" | ### Context: CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR) ### Question: Name the least pick number for steven turner ### Answer: SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = "Steven Turner" |
Name the cfl team for steven turner | CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR) | SELECT cfl_team FROM table_25017530_5 WHERE player = "Steven Turner" | ### Context: CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR) ### Question: Name the cfl team for steven turner ### Answer: SELECT cfl_team FROM table_25017530_5 WHERE player = "Steven Turner" |
Name the cfl team for lb position | CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR) | SELECT cfl_team FROM table_25017530_6 WHERE position = "LB" | ### Context: CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR) ### Question: Name the cfl team for lb position ### Answer: SELECT cfl_team FROM table_25017530_6 WHERE position = "LB" |
Name the cfl team for saskatchewan | CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR) | SELECT cfl_team FROM table_25017530_6 WHERE college = "Saskatchewan" | ### Context: CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR) ### Question: Name the cfl team for saskatchewan ### Answer: SELECT cfl_team FROM table_25017530_6 WHERE college = "Saskatchewan" |
Name the position for michael warner | CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR) | SELECT position FROM table_25017530_6 WHERE player = "Michael Warner" | ### Context: CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR) ### Question: Name the position for michael warner ### Answer: SELECT position FROM table_25017530_6 WHERE player = "Michael Warner" |
How many episodes were numbered 5? | CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR) | SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5 | ### Context: CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR) ### Question: How many episodes were numbered 5? ### Answer: SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5 |
What are the original air date(s) for episodes with production code ipea343l? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) | SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA343L" | ### Context: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) ### Question: What are the original air date(s) for episodes with production code ipea343l? ### Answer: SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA343L" |
What are the original air date(s) for episodes with production code ipea345a? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) | SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA345A" | ### Context: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) ### Question: What are the original air date(s) for episodes with production code ipea345a? ### Answer: SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA345A" |
What are the original air date(s) for episodes with 8.63 million viewers? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR) | SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = "8.63" | ### Context: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR) ### Question: What are the original air date(s) for episodes with 8.63 million viewers? ### Answer: SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = "8.63" |
What is the power of the Type R? | CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) | SELECT power FROM table_250230_2 WHERE model = "Type R" | ### Context: CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) ### Question: What is the power of the Type R? ### Answer: SELECT power FROM table_250230_2 WHERE model = "Type R" |
What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres? | CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR) | SELECT brakes FROM table_250230_2 WHERE wheels = "16x8.0JJ (front) 16x8.0JJ (rear)" AND tyres = "225/50R16 92V(front) 225/50R16 92V(rear)" AND model = "Type RB 4AT" | ### Context: CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR) ### Question: What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres? ### Answer: SELECT brakes FROM table_250230_2 WHERE wheels ... |
What brakes for the 4-speed automatic gearbox? | CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR) | SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic" | ### Context: CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR) ### Question: What brakes for the 4-speed automatic gearbox? ### Answer: SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic" |
What is the power for the Spirit R (Type B)? | CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) | SELECT power FROM table_250230_2 WHERE model = "Spirit R (Type B)" | ### Context: CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) ### Question: What is the power for the Spirit R (Type B)? ### Answer: SELECT power FROM table_250230_2 WHERE model = "Spirit R (Type B)" |
What is the gearbox when the torque is torque? | CREATE TABLE table_250230_2 (gearbox VARCHAR) | SELECT gearbox FROM table_250230_2 WHERE "torque" = "torque" | ### Context: CREATE TABLE table_250230_2 (gearbox VARCHAR) ### Question: What is the gearbox when the torque is torque? ### Answer: SELECT gearbox FROM table_250230_2 WHERE "torque" = "torque" |
Name the first elected for alabama 3 | CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR) | SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3" | ### Context: CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR) ### Question: Name the first elected for alabama 3 ### Answer: SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3" |
Name the party for spencer bachus | CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" | ### Context: CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR) ### Question: Name the party for spencer bachus ### Answer: SELECT party FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" |
Name the district for mike rogers | CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_25030512_4 WHERE incumbent = "Mike Rogers" | ### Context: CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) ### Question: Name the district for mike rogers ### Answer: SELECT district FROM table_25030512_4 WHERE incumbent = "Mike Rogers" |
Name the district for spencer bachus | CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" | ### Context: CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) ### Question: Name the district for spencer bachus ### Answer: SELECT district FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" |
In what district was keith ellison the incumbent? | CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_25030512_26 WHERE incumbent = "Keith Ellison" | ### Context: CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR) ### Question: In what district was keith ellison the incumbent? ### Answer: SELECT district FROM table_25030512_26 WHERE incumbent = "Keith Ellison" |
List the kilo watt hoours per day for moline. | CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR) | SELECT day_power___w__ FROM table_25034983_2 WHERE city = "Moline" | ### Context: CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR) ### Question: List the kilo watt hoours per day for moline. ### Answer: SELECT day_power___w__ FROM table_25034983_2 WHERE city = "Moline" |
In which year did the voice of muscatine show start? | CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR) | SELECT start FROM table_25034983_2 WHERE nickname = "Voice of Muscatine" | ### Context: CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR) ### Question: In which year did the voice of muscatine show start? ### Answer: SELECT start FROM table_25034983_2 WHERE nickname = "Voice of Muscatine" |
In what year was cumulus founded? | CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR) | SELECT MIN(start) FROM table_25034983_2 WHERE owner = "Cumulus" | ### Context: CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR) ### Question: In what year was cumulus founded? ### Answer: SELECT MIN(start) FROM table_25034983_2 WHERE owner = "Cumulus" |
Does the city of moline have stereo? | CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR) | SELECT stereo FROM table_25034983_2 WHERE city = "Moline" | ### Context: CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR) ### Question: Does the city of moline have stereo? ### Answer: SELECT stereo FROM table_25034983_2 WHERE city = "Moline" |
what is the company with the parent company wrightbus? | CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR) | SELECT company FROM table_250309_1 WHERE parent_company = "Wrightbus" | ### Context: CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR) ### Question: what is the company with the parent company wrightbus? ### Answer: SELECT company FROM table_250309_1 WHERE parent_company = "Wrightbus" |
what is the name ofhte company where the plant is in burnaston? | CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR) | SELECT company FROM table_250309_1 WHERE plant = "Burnaston" | ### Context: CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR) ### Question: what is the name ofhte company where the plant is in burnaston? ### Answer: SELECT company FROM table_250309_1 WHERE plant = "Burnaston" |
what models are produced where the plant is scarborough? | CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) | SELECT models_produced FROM table_250309_1 WHERE plant = "Scarborough" | ### Context: CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) ### Question: what models are produced where the plant is scarborough? ### Answer: SELECT models_produced FROM table_250309_1 WHERE plant = "Scarborough" |
how many models produced where the plant is castle bromwich? | CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) | SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = "Castle Bromwich" | ### Context: CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) ### Question: how many models produced where the plant is castle bromwich? ### Answer: SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = "Castle Bromwich" |
what is the production where the parent company is ariel? | CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR) | SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = "Ariel" | ### Context: CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR) ### Question: what is the production where the parent company is ariel? ### Answer: SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = "Ariel" |
What kind of chassis on the angie's list sponsored car? | CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR) | SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = "Angie's List" | ### Context: CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR) ### Question: What kind of chassis on the angie's list sponsored car? ### Answer: SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = "Angie's List" |
What team owns the car owned by chip ganassi? | CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR) | SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = "Chip Ganassi" | ### Context: CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR) ### Question: What team owns the car owned by chip ganassi? ### Answer: SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = "Chip Ganassi" |
What chassis is on the car repped by team rahal letterman lanigan racing? | CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR) | SELECT chassis FROM table_2503102_2 WHERE team = "Rahal Letterman Lanigan Racing" | ### Context: CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR) ### Question: What chassis is on the car repped by team rahal letterman lanigan racing? ### Answer: SELECT chassis FROM table_2503102_2 WHERE team = "Rahal Letterman Lanigan Racing" |
Who drives the abc supply sponsored cor? | CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR) | SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = "ABC Supply" | ### Context: CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR) ### Question: Who drives the abc supply sponsored cor? ### Answer: SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = "ABC Supply" |
Name the number of district for tom marino | CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) | SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Tom Marino" | ### Context: CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) ### Question: Name the number of district for tom marino ### Answer: SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Tom Marino" |
Name the district for 1994 | CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR) | SELECT district FROM table_25030512_41 WHERE first_elected = 1994 | ### Context: CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR) ### Question: Name the district for 1994 ### Answer: SELECT district FROM table_25030512_41 WHERE first_elected = 1994 |
Name the party for pennsylvania 10 | CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR) | SELECT party FROM table_25030512_41 WHERE district = "Pennsylvania 10" | ### Context: CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR) ### Question: Name the party for pennsylvania 10 ### Answer: SELECT party FROM table_25030512_41 WHERE district = "Pennsylvania 10" |
Name the result for glenn thompson | CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_25030512_41 WHERE incumbent = "Glenn Thompson" | ### Context: CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR) ### Question: Name the result for glenn thompson ### Answer: SELECT result FROM table_25030512_41 WHERE incumbent = "Glenn Thompson" |
Name the number of district for bill shuster | CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) | SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Bill Shuster" | ### Context: CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) ### Question: Name the number of district for bill shuster ### Answer: SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Bill Shuster" |
List the total play time for 11 starts. | CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR) | SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11 | ### Context: CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR) ### Question: List the total play time for 11 starts. ### Answer: SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11 |
In what region is the enrollment ratio in primary 94.40? | CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR) | SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = "94.40" | ### Context: CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR) ### Question: In what region is the enrollment ratio in primary 94.40? ### Answer: SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = "94.40" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.