question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What date did the episode, with John O'Connell as the coach, premier?
CREATE TABLE table_2140071_5 (premier_date VARCHAR, coach VARCHAR)
SELECT premier_date FROM table_2140071_5 WHERE coach = "John O'Connell"
### Context: CREATE TABLE table_2140071_5 (premier_date VARCHAR, coach VARCHAR) ### Question: What date did the episode, with John O'Connell as the coach, premier? ### Answer: SELECT premier_date FROM table_2140071_5 WHERE coach = "John O'Connell"
Name the result for total attendance-regular season
CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE type_of_record = "Total attendance-Regular season"
### Context: CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR) ### Question: Name the result for total attendance-regular season ### Answer: SELECT result_games FROM table_21436373_11 WHERE type_of_record = "Total attendance-Regular season"
Name the result/games for 52521
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE attendance = 52521
### Context: CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR) ### Question: Name the result/games for 52521 ### Answer: SELECT result_games FROM table_21436373_11 WHERE attendance = 52521
Name the result/games for 54530
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE attendance = 54530
### Context: CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR) ### Question: Name the result/games for 54530 ### Answer: SELECT result_games FROM table_21436373_11 WHERE attendance = 54530
Name the stadium for regular season game
CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR)
SELECT stadium FROM table_21436373_11 WHERE type_of_record = "Regular season game"
### Context: CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR) ### Question: Name the stadium for regular season game ### Answer: SELECT stadium FROM table_21436373_11 WHERE type_of_record = "Regular season game"
Name the result/games for 54741
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE attendance = 54741
### Context: CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR) ### Question: Name the result/games for 54741 ### Answer: SELECT result_games FROM table_21436373_11 WHERE attendance = 54741
give the 1st leg score against ilisiakos
CREATE TABLE table_21434618_1 (team__number2 VARCHAR)
SELECT 1 AS st_leg FROM table_21434618_1 WHERE team__number2 = "Ilisiakos"
### Context: CREATE TABLE table_21434618_1 (team__number2 VARCHAR) ### Question: give the 1st leg score against ilisiakos ### Answer: SELECT 1 AS st_leg FROM table_21434618_1 WHERE team__number2 = "Ilisiakos"
which team #1 played again chalkida
CREATE TABLE table_21434618_1 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = "Chalkida"
### Context: CREATE TABLE table_21434618_1 (team__number1 VARCHAR, team__number2 VARCHAR) ### Question: which team #1 played again chalkida ### Answer: SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = "Chalkida"
which team#2 played against poseidon neoi porroi
CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = "Poseidon Neoi Porroi"
### Context: CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR) ### Question: which team#2 played against poseidon neoi porroi ### Answer: SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = "Poseidon Neoi Porroi"
When was the pre-season game record achieved?
CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR)
SELECT date_year FROM table_21436373_10 WHERE type_of_record = "Pre-season game"
### Context: CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR) ### Question: When was the pre-season game record achieved? ### Answer: SELECT date_year FROM table_21436373_10 WHERE type_of_record = "Pre-season game"
What is the maximal number of people that attended any of these games?
CREATE TABLE table_21436373_10 (attendance INTEGER)
SELECT MAX(attendance) FROM table_21436373_10
### Context: CREATE TABLE table_21436373_10 (attendance INTEGER) ### Question: What is the maximal number of people that attended any of these games? ### Answer: SELECT MAX(attendance) FROM table_21436373_10
what is the attendance in 2011 records
CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR)
SELECT attendance FROM table_21436373_12 WHERE date_year = "2011"
### Context: CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR) ### Question: what is the attendance in 2011 records ### Answer: SELECT attendance FROM table_21436373_12 WHERE date_year = "2011"
what type of record was made where result/games is 10 games (29,606 avg.)
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
### Context: CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR) ### Question: what type of record was made where result/games is 10 games (29,606 avg.) ### Answer: SELECT type_of_record FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
where was the total attendance-regular season record made
CREATE TABLE table_21436373_12 (stadium VARCHAR, type_of_record VARCHAR)
SELECT stadium FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season"
### Context: CREATE TABLE table_21436373_12 (stadium VARCHAR, type_of_record VARCHAR) ### Question: where was the total attendance-regular season record made ### Answer: SELECT stadium FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season"
where was sun 09/12/93 record made
CREATE TABLE table_21436373_12 (stadium VARCHAR, date_year VARCHAR)
SELECT stadium FROM table_21436373_12 WHERE date_year = "Sun 09/12/93"
### Context: CREATE TABLE table_21436373_12 (stadium VARCHAR, date_year VARCHAR) ### Question: where was sun 09/12/93 record made ### Answer: SELECT stadium FROM table_21436373_12 WHERE date_year = "Sun 09/12/93"
how many records had result/games: 10 games (29,606 avg.)
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
### Context: CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR) ### Question: how many records had result/games: 10 games (29,606 avg.) ### Answer: SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
what is the highest attendance for a total attendance-regular season record
CREATE TABLE table_21436373_12 (attendance INTEGER, type_of_record VARCHAR)
SELECT MAX(attendance) FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season"
### Context: CREATE TABLE table_21436373_12 (attendance INTEGER, type_of_record VARCHAR) ### Question: what is the highest attendance for a total attendance-regular season record ### Answer: SELECT MAX(attendance) FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season"
When 2005 is the date/year how many measurements of attendance are there?
CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR)
SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = "2005"
### Context: CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR) ### Question: When 2005 is the date/year how many measurements of attendance are there? ### Answer: SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = "2005"
When 27585 is the attendance what are the results of the games?
CREATE TABLE table_21436373_7 (result_games VARCHAR, attendance VARCHAR)
SELECT result_games FROM table_21436373_7 WHERE attendance = 27585
### Context: CREATE TABLE table_21436373_7 (result_games VARCHAR, attendance VARCHAR) ### Question: When 27585 is the attendance what are the results of the games? ### Answer: SELECT result_games FROM table_21436373_7 WHERE attendance = 27585
When 9 games (28,002 avg.) is the results of the games what is the date/year?
CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR)
SELECT date_year FROM table_21436373_7 WHERE result_games = "9 games (28,002 avg.)"
### Context: CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR) ### Question: When 9 games (28,002 avg.) is the results of the games what is the date/year? ### Answer: SELECT date_year FROM table_21436373_7 WHERE result_games = "9 games (28,002 avg.)"
When 255627 is the attendance what is the stadium?
CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR)
SELECT stadium FROM table_21436373_7 WHERE attendance = 255627
### Context: CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR) ### Question: When 255627 is the attendance what is the stadium? ### Answer: SELECT stadium FROM table_21436373_7 WHERE attendance = 255627
What record was set on Tue 11/02/75?
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR)
SELECT type_of_record FROM table_21436373_8 WHERE date_year = "Tue 11/02/75"
### Context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR) ### Question: What record was set on Tue 11/02/75? ### Answer: SELECT type_of_record FROM table_21436373_8 WHERE date_year = "Tue 11/02/75"
What record was set when the result/game was equal to 9 games (28,595 avg.)
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_8 WHERE result_games = "9 games (28,595 avg.)"
### Context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) ### Question: What record was set when the result/game was equal to 9 games (28,595 avg.) ### Answer: SELECT type_of_record FROM table_21436373_8 WHERE result_games = "9 games (28,595 avg.)"
What record was set when the result/game was montreal 20 @ ottawa 10?
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10"
### Context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) ### Question: What record was set when the result/game was montreal 20 @ ottawa 10? ### Answer: SELECT type_of_record FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10"
Which stadium had the result/game montreal 20 @ ottawa 10?
CREATE TABLE table_21436373_8 (stadium VARCHAR, result_games VARCHAR)
SELECT stadium FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10"
### Context: CREATE TABLE table_21436373_8 (stadium VARCHAR, result_games VARCHAR) ### Question: Which stadium had the result/game montreal 20 @ ottawa 10? ### Answer: SELECT stadium FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10"
For what year is the type of record 'total attendance-regular season?
CREATE TABLE table_21436373_5 (date_year VARCHAR, type_of_record VARCHAR)
SELECT date_year FROM table_21436373_5 WHERE type_of_record = "Total attendance-Regular season"
### Context: CREATE TABLE table_21436373_5 (date_year VARCHAR, type_of_record VARCHAR) ### Question: For what year is the type of record 'total attendance-regular season? ### Answer: SELECT date_year FROM table_21436373_5 WHERE type_of_record = "Total attendance-Regular season"
What type of record is the result of the game Montreal 31 @ Calgary 32?
CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_5 WHERE result_games = "Montreal 31 @ Calgary 32"
### Context: CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR) ### Question: What type of record is the result of the game Montreal 31 @ Calgary 32? ### Answer: SELECT type_of_record FROM table_21436373_5 WHERE result_games = "Montreal 31 @ Calgary 32"
On what date/s has attendance been 45010?
CREATE TABLE table_21436373_5 (date_year VARCHAR, attendance VARCHAR)
SELECT date_year FROM table_21436373_5 WHERE attendance = 45010
### Context: CREATE TABLE table_21436373_5 (date_year VARCHAR, attendance VARCHAR) ### Question: On what date/s has attendance been 45010? ### Answer: SELECT date_year FROM table_21436373_5 WHERE attendance = 45010
What is the number of attendance with the pre-season game as the type of record?
CREATE TABLE table_21436373_6 (attendance VARCHAR, type_of_record VARCHAR)
SELECT COUNT(attendance) FROM table_21436373_6 WHERE type_of_record = "Pre-season game"
### Context: CREATE TABLE table_21436373_6 (attendance VARCHAR, type_of_record VARCHAR) ### Question: What is the number of attendance with the pre-season game as the type of record? ### Answer: SELECT COUNT(attendance) FROM table_21436373_6 WHERE type_of_record = "Pre-season game"
Which type of record has result/games of 9 games (57,144 avg.)
CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_6 WHERE result_games = "9 games (57,144 avg.)"
### Context: CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR) ### Question: Which type of record has result/games of 9 games (57,144 avg.) ### Answer: SELECT type_of_record FROM table_21436373_6 WHERE result_games = "9 games (57,144 avg.)"
What is the result/games of Sun 11/28/10 as the date/year?
CREATE TABLE table_21436373_6 (result_games VARCHAR, date_year VARCHAR)
SELECT result_games FROM table_21436373_6 WHERE date_year = "Sun 11/28/10"
### Context: CREATE TABLE table_21436373_6 (result_games VARCHAR, date_year VARCHAR) ### Question: What is the result/games of Sun 11/28/10 as the date/year? ### Answer: SELECT result_games FROM table_21436373_6 WHERE date_year = "Sun 11/28/10"
Which stadium has the date/year of Fri 06/25/82?
CREATE TABLE table_21436373_6 (stadium VARCHAR, date_year VARCHAR)
SELECT stadium FROM table_21436373_6 WHERE date_year = "Fri 06/25/82"
### Context: CREATE TABLE table_21436373_6 (stadium VARCHAR, date_year VARCHAR) ### Question: Which stadium has the date/year of Fri 06/25/82? ### Answer: SELECT stadium FROM table_21436373_6 WHERE date_year = "Fri 06/25/82"
Which type of record has result/games of b.c. 16 @ edmonton 22?
CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_6 WHERE result_games = "B.C. 16 @ Edmonton 22"
### Context: CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR) ### Question: Which type of record has result/games of b.c. 16 @ edmonton 22? ### Answer: SELECT type_of_record FROM table_21436373_6 WHERE result_games = "B.C. 16 @ Edmonton 22"
What was the populati in 2000 for Panlicsian?
CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR)
SELECT MIN(population__2000_) FROM table_2144436_1 WHERE barangay = "Panlicsian"
### Context: CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR) ### Question: What was the populati in 2000 for Panlicsian? ### Answer: SELECT MIN(population__2000_) FROM table_2144436_1 WHERE barangay = "Panlicsian"
What was the population in 2010 for Minane
CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR)
SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = "Minane"
### Context: CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR) ### Question: What was the population in 2010 for Minane ### Answer: SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = "Minane"
What is the 2007 population for Corazon de Jesus?
CREATE TABLE table_2144436_1 (population__2007_ VARCHAR, barangay VARCHAR)
SELECT population__2007_ FROM table_2144436_1 WHERE barangay = "Corazon De Jesus"
### Context: CREATE TABLE table_2144436_1 (population__2007_ VARCHAR, barangay VARCHAR) ### Question: What is the 2007 population for Corazon de Jesus? ### Answer: SELECT population__2007_ FROM table_2144436_1 WHERE barangay = "Corazon De Jesus"
What is the 2010 population when the 2000 population is 5720?
CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR)
SELECT MAX(population__2010_) FROM table_2144436_1 WHERE population__2000_ = 5720
### Context: CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR) ### Question: What is the 2010 population when the 2000 population is 5720? ### Answer: SELECT MAX(population__2010_) FROM table_2144436_1 WHERE population__2000_ = 5720
Name the romaji by your side ~hikari's theme~ (popup.version)
CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR)
SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = "By Your Side ~Hikari's Theme~ (PopUp.Version)"
### Context: CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR) ### Question: Name the romaji by your side ~hikari's theme~ (popup.version) ### Answer: SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = "By Your Side ~Hikari's Theme~ (PopUp.Version)"
Name the vocalist for kaze no messēji (pokapoka-version)
CREATE TABLE table_2144389_8 (vocalist VARCHAR, rōmaji VARCHAR)
SELECT vocalist FROM table_2144389_8 WHERE rōmaji = "Kaze no Messēji (PokaPoka-Version)"
### Context: CREATE TABLE table_2144389_8 (vocalist VARCHAR, rōmaji VARCHAR) ### Question: Name the vocalist for kaze no messēji (pokapoka-version) ### Answer: SELECT vocalist FROM table_2144389_8 WHERE rōmaji = "Kaze no Messēji (PokaPoka-Version)"
Name the least number for 君のそばで~ヒカリのテーマ~(popup.version)
CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR)
SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = "君のそばで~ヒカリのテーマ~(PopUp.Version)"
### Context: CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR) ### Question: Name the least number for 君のそばで~ヒカリのテーマ~(popup.version) ### Answer: SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = "君のそばで~ヒカリのテーマ~(PopUp.Version)"
Name the number of vocalists for which one ~ is it?
CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR)
SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = "Which One ~ Is It?"
### Context: CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR) ### Question: Name the number of vocalists for which one ~ is it? ### Answer: SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = "Which One ~ Is It?"
Name the to par for 20 feb 2005
CREATE TABLE table_21469545_2 (to_par VARCHAR, date VARCHAR)
SELECT to_par FROM table_21469545_2 WHERE date = "20 Feb 2005"
### Context: CREATE TABLE table_21469545_2 (to_par VARCHAR, date VARCHAR) ### Question: Name the to par for 20 feb 2005 ### Answer: SELECT to_par FROM table_21469545_2 WHERE date = "20 Feb 2005"
Name the number for margin of victory being 3 strokes
CREATE TABLE table_21469545_2 (no VARCHAR, margin_of_victory VARCHAR)
SELECT COUNT(no) FROM table_21469545_2 WHERE margin_of_victory = "3 strokes"
### Context: CREATE TABLE table_21469545_2 (no VARCHAR, margin_of_victory VARCHAR) ### Question: Name the number for margin of victory being 3 strokes ### Answer: SELECT COUNT(no) FROM table_21469545_2 WHERE margin_of_victory = "3 strokes"
Name the winning score for 8 feb 2009
CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR)
SELECT COUNT(winning_score) FROM table_21469545_2 WHERE date = "8 Feb 2009"
### Context: CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR) ### Question: Name the winning score for 8 feb 2009 ### Answer: SELECT COUNT(winning_score) FROM table_21469545_2 WHERE date = "8 Feb 2009"
Who published the title in the pet-raising simulator genre?
CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR)
SELECT publisher FROM table_21458142_1 WHERE genre = "Pet-raising simulator"
### Context: CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR) ### Question: Who published the title in the pet-raising simulator genre? ### Answer: SELECT publisher FROM table_21458142_1 WHERE genre = "Pet-raising simulator"
What's the sales breakdown for Nintendo's Mario Kart DS?
CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR)
SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND title = "Mario Kart DS"
### Context: CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR) ### Question: What's the sales breakdown for Nintendo's Mario Kart DS? ### Answer: SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND title = "Mario Kart DS"
How many copies were sold of the game released on october 23, 2008?
CREATE TABLE table_21458142_1 (total_copies_sold VARCHAR, release_date VARCHAR)
SELECT total_copies_sold FROM table_21458142_1 WHERE release_date = "October 23, 2008"
### Context: CREATE TABLE table_21458142_1 (total_copies_sold VARCHAR, release_date VARCHAR) ### Question: How many copies were sold of the game released on october 23, 2008? ### Answer: SELECT total_copies_sold FROM table_21458142_1 WHERE release_date = "October 23, 2008"
What's the sales breakdown of the Nintendo game released on May 15, 2006?
CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR)
SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006"
### Context: CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR) ### Question: What's the sales breakdown of the Nintendo game released on May 15, 2006? ### Answer: SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006"
Name the most races
CREATE TABLE table_21457754_2 (races INTEGER)
SELECT MAX(races) FROM table_21457754_2
### Context: CREATE TABLE table_21457754_2 (races INTEGER) ### Question: Name the most races ### Answer: SELECT MAX(races) FROM table_21457754_2
Name the most rr 1 pts
CREATE TABLE table_21457754_2 (rr1_pts INTEGER)
SELECT MAX(rr1_pts) FROM table_21457754_2
### Context: CREATE TABLE table_21457754_2 (rr1_pts INTEGER) ### Question: Name the most rr 1 pts ### Answer: SELECT MAX(rr1_pts) FROM table_21457754_2
Name the number of total pts for gbr challenge
CREATE TABLE table_21457754_2 (total_pts VARCHAR, team_name VARCHAR)
SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = "GBR Challenge"
### Context: CREATE TABLE table_21457754_2 (total_pts VARCHAR, team_name VARCHAR) ### Question: Name the number of total pts for gbr challenge ### Answer: SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = "GBR Challenge"
What is the total number of second place finishes when the city & nation was Chicago, USA?
CREATE TABLE table_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR)
SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = "Chicago, USA"
### Context: CREATE TABLE table_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR) ### Question: What is the total number of second place finishes when the city & nation was Chicago, USA? ### Answer: SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = "Chicago, USA"
What is the total number of third place finishes when the city & nation was Vancouver, Canada?
CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR)
SELECT MIN(third_place) FROM table_2146364_2 WHERE city_ & _nation = "Vancouver, Canada"
### Context: CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR) ### Question: What is the total number of third place finishes when the city & nation was Vancouver, Canada? ### Answer: SELECT MIN(third_place) FROM table_2146364_2 WHERE city_ & _nation = "Vancouver, Canada"
What is the smallest third place finish?
CREATE TABLE table_2146364_2 (third_place INTEGER)
SELECT MIN(third_place) FROM table_2146364_2
### Context: CREATE TABLE table_2146364_2 (third_place INTEGER) ### Question: What is the smallest third place finish? ### Answer: SELECT MIN(third_place) FROM table_2146364_2
What change caused a change of staff in March 9, 1865?
CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 9, 1865"
### Context: CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) ### Question: What change caused a change of staff in March 9, 1865? ### Answer: SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 9, 1865"
Who was the successor for the new seat?
CREATE TABLE table_2147588_3 (successor VARCHAR, vacator VARCHAR)
SELECT successor FROM table_2147588_3 WHERE vacator = "New seat"
### Context: CREATE TABLE table_2147588_3 (successor VARCHAR, vacator VARCHAR) ### Question: Who was the successor for the new seat? ### Answer: SELECT successor FROM table_2147588_3 WHERE vacator = "New seat"
What was the reason for change in staff in formal installations on March 15, 1865?
CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 15, 1865"
### Context: CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) ### Question: What was the reason for change in staff in formal installations on March 15, 1865? ### Answer: SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = ...
When nathaniel g. taylor (u) is the successor what is the vacator?
CREATE TABLE table_2147588_4 (vacator VARCHAR, successor VARCHAR)
SELECT vacator FROM table_2147588_4 WHERE successor = "Nathaniel G. Taylor (U)"
### Context: CREATE TABLE table_2147588_4 (vacator VARCHAR, successor VARCHAR) ### Question: When nathaniel g. taylor (u) is the successor what is the vacator? ### Answer: SELECT vacator FROM table_2147588_4 WHERE successor = "Nathaniel G. Taylor (U)"
When william b. campbell (u) is the successor what is the district?
CREATE TABLE table_2147588_4 (district VARCHAR, successor VARCHAR)
SELECT district FROM table_2147588_4 WHERE successor = "William B. Campbell (U)"
### Context: CREATE TABLE table_2147588_4 (district VARCHAR, successor VARCHAR) ### Question: When william b. campbell (u) is the successor what is the district? ### Answer: SELECT district FROM table_2147588_4 WHERE successor = "William B. Campbell (U)"
When james brooks (d) is the vacator what is the date the successor was seated?
CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR)
SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = "James Brooks (D)"
### Context: CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR) ### Question: When james brooks (d) is the vacator what is the date the successor was seated? ### Answer: SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = "James Brooks (D)"
When john w. leftwich (uu) is the successor what is the date the successor was seated?
CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR)
SELECT date_successor_seated FROM table_2147588_4 WHERE successor = "John W. Leftwich (UU)"
### Context: CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR) ### Question: When john w. leftwich (uu) is the successor what is the date the successor was seated? ### Answer: SELECT date_successor_seated FROM table_2147588_4 WHERE successor = "John W. Leftwich (UU)"
When new york 8th is teh district who is the successor?
CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_2147588_4 WHERE district = "New York 8th"
### Context: CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR) ### Question: When new york 8th is teh district who is the successor? ### Answer: SELECT successor FROM table_2147588_4 WHERE district = "New York 8th"
When 20 is the rr4 points what is the lowest rr3 points?
CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR)
SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = "20"
### Context: CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR) ### Question: When 20 is the rr4 points what is the lowest rr3 points? ### Answer: SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = "20"
When 70 is the total points what is the rr4 points?
CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR)
SELECT rr4_pts FROM table_21489362_2 WHERE total_pts = 70
### Context: CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR) ### Question: When 70 is the total points what is the rr4 points? ### Answer: SELECT rr4_pts FROM table_21489362_2 WHERE total_pts = 70
When 3 is the rr1 points what is won score?
CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR)
SELECT won FROM table_21489362_2 WHERE rr1_pts = 3
### Context: CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR) ### Question: When 3 is the rr1 points what is won score? ### Answer: SELECT won FROM table_21489362_2 WHERE rr1_pts = 3
When spanish challenge is the team name what are the rr1 points?
CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR)
SELECT rr1_pts FROM table_21489362_2 WHERE team_name = "Spanish Challenge"
### Context: CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR) ### Question: When spanish challenge is the team name what are the rr1 points? ### Answer: SELECT rr1_pts FROM table_21489362_2 WHERE team_name = "Spanish Challenge"
Name the innings for 5088 runs scored
CREATE TABLE table_21486890_1 (innings VARCHAR, runs_scored VARCHAR)
SELECT COUNT(innings) FROM table_21486890_1 WHERE runs_scored = 5088
### Context: CREATE TABLE table_21486890_1 (innings VARCHAR, runs_scored VARCHAR) ### Question: Name the innings for 5088 runs scored ### Answer: SELECT COUNT(innings) FROM table_21486890_1 WHERE runs_scored = 5088
Name the matches for mark taylor category:articles with hcards
CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR)
SELECT MAX(matches) FROM table_21486890_1 WHERE name = "Mark Taylor Category:Articles with hCards"
### Context: CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR) ### Question: Name the matches for mark taylor category:articles with hcards ### Answer: SELECT MAX(matches) FROM table_21486890_1 WHERE name = "Mark Taylor Category:Articles with hCards"
Name the most runs scored
CREATE TABLE table_21486890_1 (runs_scored INTEGER)
SELECT MAX(runs_scored) FROM table_21486890_1
### Context: CREATE TABLE table_21486890_1 (runs_scored INTEGER) ### Question: Name the most runs scored ### Answer: SELECT MAX(runs_scored) FROM table_21486890_1
Name the least matches for not out being 44
CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR)
SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44
### Context: CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR) ### Question: Name the least matches for not out being 44 ### Answer: SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44
What nation was Pageos 1 from?
CREATE TABLE table_2150068_1 (nation VARCHAR, satellite VARCHAR)
SELECT nation FROM table_2150068_1 WHERE satellite = "PAGEOS 1"
### Context: CREATE TABLE table_2150068_1 (nation VARCHAR, satellite VARCHAR) ### Question: What nation was Pageos 1 from? ### Answer: SELECT nation FROM table_2150068_1 WHERE satellite = "PAGEOS 1"
What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter?
CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, diameter_m_ VARCHAR, usage VARCHAR, mass_kg_ VARCHAR)
SELECT launch_date__utc_ FROM table_2150068_1 WHERE usage = "ado" AND mass_kg_ = "4" AND diameter_m_ = "3"
### Context: CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, diameter_m_ VARCHAR, usage VARCHAR, mass_kg_ VARCHAR) ### Question: What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter? ### Answer: SELECT launch_date__utc_ FROM table_2150068_1 WHERE usage = "ado" AND mass_kg_...
What was the decay for the sattelite that was 180 kg?
CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR)
SELECT decay FROM table_2150068_1 WHERE mass_kg_ = "180"
### Context: CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR) ### Question: What was the decay for the sattelite that was 180 kg? ### Answer: SELECT decay FROM table_2150068_1 WHERE mass_kg_ = "180"
What is the nssdc id for Echo 1?
CREATE TABLE table_2150068_1 (nssdc_id VARCHAR, satellite VARCHAR)
SELECT nssdc_id FROM table_2150068_1 WHERE satellite = "Echo 1"
### Context: CREATE TABLE table_2150068_1 (nssdc_id VARCHAR, satellite VARCHAR) ### Question: What is the nssdc id for Echo 1? ### Answer: SELECT nssdc_id FROM table_2150068_1 WHERE satellite = "Echo 1"
What is the launch date for the sattelite with a nssdc id of 1960-009a?
CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, nssdc_id VARCHAR)
SELECT launch_date__utc_ FROM table_2150068_1 WHERE nssdc_id = "1960-009A"
### Context: CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, nssdc_id VARCHAR) ### Question: What is the launch date for the sattelite with a nssdc id of 1960-009a? ### Answer: SELECT launch_date__utc_ FROM table_2150068_1 WHERE nssdc_id = "1960-009A"
What is the decay for the sattelite with an id that is 1990-081c?
CREATE TABLE table_2150068_1 (decay VARCHAR, nssdc_id VARCHAR)
SELECT decay FROM table_2150068_1 WHERE nssdc_id = "1990-081C"
### Context: CREATE TABLE table_2150068_1 (decay VARCHAR, nssdc_id VARCHAR) ### Question: What is the decay for the sattelite with an id that is 1990-081c? ### Answer: SELECT decay FROM table_2150068_1 WHERE nssdc_id = "1990-081C"
How many song titles belong to the artist Ratt?
CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR)
SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = "Ratt"
### Context: CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR) ### Question: How many song titles belong to the artist Ratt? ### Answer: SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = "Ratt"
What is every original game for the artist Lynyrd Skynyrd?
CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR)
SELECT original_game FROM table_21500850_1 WHERE artist = "Lynyrd Skynyrd"
### Context: CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR) ### Question: What is every original game for the artist Lynyrd Skynyrd? ### Answer: SELECT original_game FROM table_21500850_1 WHERE artist = "Lynyrd Skynyrd"
What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?
CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR, genre VARCHAR, original_game VARCHAR)
SELECT song_title FROM table_21500850_1 WHERE genre = "Rock" AND original_game = "Guitar Hero" AND artist = "Queens of the Stone Age"
### Context: CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR, genre VARCHAR, original_game VARCHAR) ### Question: What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age? ### Answer: SELECT song_title FROM table_21500850_1 WHERE genre = "R...
What is every song title for 2007?
CREATE TABLE table_21500850_1 (song_title VARCHAR, year VARCHAR)
SELECT song_title FROM table_21500850_1 WHERE year = 2007
### Context: CREATE TABLE table_21500850_1 (song_title VARCHAR, year VARCHAR) ### Question: What is every song title for 2007? ### Answer: SELECT song_title FROM table_21500850_1 WHERE year = 2007
What was Lambert's song choice in the top 13?
CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR)
SELECT song_choice FROM table_21501511_1 WHERE week__number = "Top 13"
### Context: CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR) ### Question: What was Lambert's song choice in the top 13? ### Answer: SELECT song_choice FROM table_21501511_1 WHERE week__number = "Top 13"
What order did Lambert perform in the top 11?
CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR)
SELECT order__number FROM table_21501511_1 WHERE week__number = "Top 11"
### Context: CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR) ### Question: What order did Lambert perform in the top 11? ### Answer: SELECT order__number FROM table_21501511_1 WHERE week__number = "Top 11"
What week was themed disco?
CREATE TABLE table_21501511_1 (week__number VARCHAR, theme VARCHAR)
SELECT week__number FROM table_21501511_1 WHERE theme = "Disco"
### Context: CREATE TABLE table_21501511_1 (week__number VARCHAR, theme VARCHAR) ### Question: What week was themed disco? ### Answer: SELECT week__number FROM table_21501511_1 WHERE theme = "Disco"
What week #(s featured sara bareilles as the original artist?
CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR)
SELECT week__number FROM table_21501564_1 WHERE original_artist = "Sara Bareilles"
### Context: CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR) ### Question: What week #(s featured sara bareilles as the original artist? ### Answer: SELECT week__number FROM table_21501564_1 WHERE original_artist = "Sara Bareilles"
What week # featured first solo as the theme?
CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR)
SELECT week__number FROM table_21501564_1 WHERE theme = "First Solo"
### Context: CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR) ### Question: What week # featured first solo as the theme? ### Answer: SELECT week__number FROM table_21501564_1 WHERE theme = "First Solo"
How many weeks featured duffy as the original artist?
CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR)
SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = "Duffy"
### Context: CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR) ### Question: How many weeks featured duffy as the original artist? ### Answer: SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = "Duffy"
Who was the originally artist when Jasmine Murray was selected?
CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR)
SELECT original_artist FROM table_21501564_1 WHERE result = "Selected"
### Context: CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR) ### Question: Who was the originally artist when Jasmine Murray was selected? ### Answer: SELECT original_artist FROM table_21501564_1 WHERE result = "Selected"
With theme the Year They Were Born, what is the song of choice?
CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR)
SELECT song_choice FROM table_21501565_1 WHERE theme = "Year They Were Born"
### Context: CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR) ### Question: With theme the Year They Were Born, what is the song of choice? ### Answer: SELECT song_choice FROM table_21501565_1 WHERE theme = "Year They Were Born"
With order number 7 and the theme is Motown, who were the original artists?
CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_21501565_1 WHERE order__number = "7" AND theme = "Motown"
### Context: CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR) ### Question: With order number 7 and the theme is Motown, who were the original artists? ### Answer: SELECT original_artist FROM table_21501565_1 WHERE order__number = "7" AND theme = "Motown"
With an original artist names Bette Midler, what is the order number?
CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = "Bette Midler"
### Context: CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR) ### Question: With an original artist names Bette Midler, what is the order number? ### Answer: SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = "Bette Midler"
With original artist of Tina Turner, what is the week number?
CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR)
SELECT week__number FROM table_21501565_1 WHERE original_artist = "Tina Turner"
### Context: CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR) ### Question: With original artist of Tina Turner, what is the week number? ### Answer: SELECT week__number FROM table_21501565_1 WHERE original_artist = "Tina Turner"
Who is the original artist with a theme of N/A?
CREATE TABLE table_21501565_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_21501565_1 WHERE theme = "N/A"
### Context: CREATE TABLE table_21501565_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who is the original artist with a theme of N/A? ### Answer: SELECT original_artist FROM table_21501565_1 WHERE theme = "N/A"
Name the team for june 16 jeff gordon
CREATE TABLE table_2150776_1 (team VARCHAR, date VARCHAR, driver VARCHAR)
SELECT team FROM table_2150776_1 WHERE date = "June 16" AND driver = "Jeff Gordon"
### Context: CREATE TABLE table_2150776_1 (team VARCHAR, date VARCHAR, driver VARCHAR) ### Question: Name the team for june 16 jeff gordon ### Answer: SELECT team FROM table_2150776_1 WHERE date = "June 16" AND driver = "Jeff Gordon"
Name the driver for 200 laps 1997
CREATE TABLE table_2150776_1 (driver VARCHAR, laps VARCHAR, year VARCHAR)
SELECT driver FROM table_2150776_1 WHERE laps = "200" AND year = "1997"
### Context: CREATE TABLE table_2150776_1 (driver VARCHAR, laps VARCHAR, year VARCHAR) ### Question: Name the driver for 200 laps 1997 ### Answer: SELECT driver FROM table_2150776_1 WHERE laps = "200" AND year = "1997"
Name the team for ricky rudd
CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR)
SELECT team FROM table_2150776_1 WHERE driver = "Ricky Rudd"
### Context: CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR) ### Question: Name the team for ricky rudd ### Answer: SELECT team FROM table_2150776_1 WHERE driver = "Ricky Rudd"
What is the rank when RR2 has 4 points?
CREATE TABLE table_21515673_2 (ranking VARCHAR, rr2_pts VARCHAR)
SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4
### Context: CREATE TABLE table_21515673_2 (ranking VARCHAR, rr2_pts VARCHAR) ### Question: What is the rank when RR2 has 4 points? ### Answer: SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4
How many points does Swedish America's Cup Challenge have for rr1?
CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR)
SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = "Swedish America's Cup Challenge"
### Context: CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR) ### Question: How many points does Swedish America's Cup Challenge have for rr1? ### Answer: SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = "Swedish America's Cup Challenge"
Who was the senior US senator in the state whose governor was D. Patrick?
CREATE TABLE table_21531764_2 (senior_us_senator VARCHAR, governor VARCHAR)
SELECT senior_us_senator FROM table_21531764_2 WHERE governor = "D. Patrick"
### Context: CREATE TABLE table_21531764_2 (senior_us_senator VARCHAR, governor VARCHAR) ### Question: Who was the senior US senator in the state whose governor was D. Patrick? ### Answer: SELECT senior_us_senator FROM table_21531764_2 WHERE governor = "D. Patrick"
What's the lower house majority in the state whose Senior senator is J. Shaheen?
CREATE TABLE table_21531764_2 (lower_house_majority VARCHAR, senior_us_senator VARCHAR)
SELECT lower_house_majority FROM table_21531764_2 WHERE senior_us_senator = "J. Shaheen"
### Context: CREATE TABLE table_21531764_2 (lower_house_majority VARCHAR, senior_us_senator VARCHAR) ### Question: What's the lower house majority in the state whose Senior senator is J. Shaheen? ### Answer: SELECT lower_house_majority FROM table_21531764_2 WHERE senior_us_senator = "J. Shaheen"
Who is every name for time(cet) of 09:58?
CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)
SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:58"
### Context: CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR) ### Question: Who is every name for time(cet) of 09:58? ### Answer: SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:58"