question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What day did North Melbourne play as the home team?
|
CREATE TABLE table_name_52 (date VARCHAR, home_team VARCHAR)
|
SELECT date FROM table_name_52 WHERE home_team = "north melbourne"
|
### Context: CREATE TABLE table_name_52 (date VARCHAR, home_team VARCHAR) ### Question: What day did North Melbourne play as the home team? ### Answer: SELECT date FROM table_name_52 WHERE home_team = "north melbourne"
|
Who was the away team at Arden Street Oval?
|
CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team FROM table_name_20 WHERE venue = "arden street oval"
|
### Context: CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at Arden Street Oval? ### Answer: SELECT away_team FROM table_name_20 WHERE venue = "arden street oval"
|
What is the ordinary income rate when short-term capital gain rate is 28%?
|
CREATE TABLE table_name_42 (ordinary_income_rate VARCHAR, short_term_capital_gain_rate VARCHAR)
|
SELECT ordinary_income_rate FROM table_name_42 WHERE short_term_capital_gain_rate = "28%"
|
### Context: CREATE TABLE table_name_42 (ordinary_income_rate VARCHAR, short_term_capital_gain_rate VARCHAR) ### Question: What is the ordinary income rate when short-term capital gain rate is 28%? ### Answer: SELECT ordinary_income_rate FROM table_name_42 WHERE short_term_capital_gain_rate = "28%"
|
What is short-term capital gain rate with long-term gain on collectibles at 15%?
|
CREATE TABLE table_name_29 (short_term_capital_gain_rate VARCHAR, long_term_gain_on_collectibles VARCHAR)
|
SELECT short_term_capital_gain_rate FROM table_name_29 WHERE long_term_gain_on_collectibles = "15%"
|
### Context: CREATE TABLE table_name_29 (short_term_capital_gain_rate VARCHAR, long_term_gain_on_collectibles VARCHAR) ### Question: What is short-term capital gain rate with long-term gain on collectibles at 15%? ### Answer: SELECT short_term_capital_gain_rate FROM table_name_29 WHERE long_term_gain_on_collectibles = "15%"
|
What long-term gain for collectibles coincides with ordinary income rate 15%?
|
CREATE TABLE table_name_48 (long_term_gain_on_collectibles VARCHAR, ordinary_income_rate VARCHAR)
|
SELECT long_term_gain_on_collectibles FROM table_name_48 WHERE ordinary_income_rate = "15%"
|
### Context: CREATE TABLE table_name_48 (long_term_gain_on_collectibles VARCHAR, ordinary_income_rate VARCHAR) ### Question: What long-term gain for collectibles coincides with ordinary income rate 15%? ### Answer: SELECT long_term_gain_on_collectibles FROM table_name_48 WHERE ordinary_income_rate = "15%"
|
What is the Decile with a State Authority and a roll of 120?
|
CREATE TABLE table_name_99 (decile INTEGER, authority VARCHAR, roll VARCHAR)
|
SELECT SUM(decile) FROM table_name_99 WHERE authority = "state" AND roll = 120
|
### Context: CREATE TABLE table_name_99 (decile INTEGER, authority VARCHAR, roll VARCHAR) ### Question: What is the Decile with a State Authority and a roll of 120? ### Answer: SELECT SUM(decile) FROM table_name_99 WHERE authority = "state" AND roll = 120
|
What is the highest Roll of Orere School with a Decile less than 8 with a State Authority?
|
CREATE TABLE table_name_98 (roll INTEGER, name VARCHAR, decile VARCHAR, authority VARCHAR)
|
SELECT MAX(roll) FROM table_name_98 WHERE decile < 8 AND authority = "state" AND name = "orere school"
|
### Context: CREATE TABLE table_name_98 (roll INTEGER, name VARCHAR, decile VARCHAR, authority VARCHAR) ### Question: What is the highest Roll of Orere School with a Decile less than 8 with a State Authority? ### Answer: SELECT MAX(roll) FROM table_name_98 WHERE decile < 8 AND authority = "state" AND name = "orere school"
|
What home team score has a Away team of melbourne?
|
CREATE TABLE table_name_63 (home_team VARCHAR, away_team VARCHAR)
|
SELECT home_team AS score FROM table_name_63 WHERE away_team = "melbourne"
|
### Context: CREATE TABLE table_name_63 (home_team VARCHAR, away_team VARCHAR) ### Question: What home team score has a Away team of melbourne? ### Answer: SELECT home_team AS score FROM table_name_63 WHERE away_team = "melbourne"
|
What away team is the home team richmond?
|
CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
|
SELECT away_team FROM table_name_16 WHERE home_team = "richmond"
|
### Context: CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR) ### Question: What away team is the home team richmond? ### Answer: SELECT away_team FROM table_name_16 WHERE home_team = "richmond"
|
When Giancarlo Fisichella was the Driver and there were less than 52 Laps, what was the highest Grid?
|
CREATE TABLE table_name_4 (grid INTEGER, driver VARCHAR, laps VARCHAR)
|
SELECT MAX(grid) FROM table_name_4 WHERE driver = "giancarlo fisichella" AND laps < 52
|
### Context: CREATE TABLE table_name_4 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### Question: When Giancarlo Fisichella was the Driver and there were less than 52 Laps, what was the highest Grid? ### Answer: SELECT MAX(grid) FROM table_name_4 WHERE driver = "giancarlo fisichella" AND laps < 52
|
Which Constructor has a Grid less than 17, Laps under 52, and Olivier Panis as the Driver?
|
CREATE TABLE table_name_11 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
|
SELECT constructor FROM table_name_11 WHERE grid < 17 AND laps < 52 AND driver = "olivier panis"
|
### Context: CREATE TABLE table_name_11 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) ### Question: Which Constructor has a Grid less than 17, Laps under 52, and Olivier Panis as the Driver? ### Answer: SELECT constructor FROM table_name_11 WHERE grid < 17 AND laps < 52 AND driver = "olivier panis"
|
Which 2006 cfl draft pick played college ball at Idaho state?
|
CREATE TABLE table_name_91 (pick__number VARCHAR, college VARCHAR)
|
SELECT pick__number FROM table_name_91 WHERE college = "idaho state"
|
### Context: CREATE TABLE table_name_91 (pick__number VARCHAR, college VARCHAR) ### Question: Which 2006 cfl draft pick played college ball at Idaho state? ### Answer: SELECT pick__number FROM table_name_91 WHERE college = "idaho state"
|
What position did the CFL player drafted out of college of toronto in 2007 play?
|
CREATE TABLE table_name_22 (position VARCHAR, college VARCHAR)
|
SELECT position FROM table_name_22 WHERE college = "toronto"
|
### Context: CREATE TABLE table_name_22 (position VARCHAR, college VARCHAR) ### Question: What position did the CFL player drafted out of college of toronto in 2007 play? ### Answer: SELECT position FROM table_name_22 WHERE college = "toronto"
|
What was the Date of Death of the person whose Date of Birth was 28 May 1371?
|
CREATE TABLE table_name_97 (date_of_death VARCHAR, date_of_birth VARCHAR)
|
SELECT date_of_death FROM table_name_97 WHERE date_of_birth = "28 may 1371"
|
### Context: CREATE TABLE table_name_97 (date_of_death VARCHAR, date_of_birth VARCHAR) ### Question: What was the Date of Death of the person whose Date of Birth was 28 May 1371? ### Answer: SELECT date_of_death FROM table_name_97 WHERE date_of_birth = "28 may 1371"
|
What was the Reign of the person whose Date of Birth was 22 March 1459?
|
CREATE TABLE table_name_25 (reign VARCHAR, date_of_birth VARCHAR)
|
SELECT reign FROM table_name_25 WHERE date_of_birth = "22 march 1459"
|
### Context: CREATE TABLE table_name_25 (reign VARCHAR, date_of_birth VARCHAR) ### Question: What was the Reign of the person whose Date of Birth was 22 March 1459? ### Answer: SELECT reign FROM table_name_25 WHERE date_of_birth = "22 march 1459"
|
Tell me the average year with a record of 33-33
|
CREATE TABLE table_name_23 (year INTEGER, record VARCHAR)
|
SELECT AVG(year) FROM table_name_23 WHERE record = "33-33"
|
### Context: CREATE TABLE table_name_23 (year INTEGER, record VARCHAR) ### Question: Tell me the average year with a record of 33-33 ### Answer: SELECT AVG(year) FROM table_name_23 WHERE record = "33-33"
|
Name the total number of years for a 39-31 record
|
CREATE TABLE table_name_18 (year VARCHAR, record VARCHAR)
|
SELECT COUNT(year) FROM table_name_18 WHERE record = "39-31"
|
### Context: CREATE TABLE table_name_18 (year VARCHAR, record VARCHAR) ### Question: Name the total number of years for a 39-31 record ### Answer: SELECT COUNT(year) FROM table_name_18 WHERE record = "39-31"
|
Name the least year for gene hassell manager and 6th finish
|
CREATE TABLE table_name_98 (year INTEGER, manager VARCHAR, finish VARCHAR)
|
SELECT MIN(year) FROM table_name_98 WHERE manager = "gene hassell" AND finish = "6th"
|
### Context: CREATE TABLE table_name_98 (year INTEGER, manager VARCHAR, finish VARCHAR) ### Question: Name the least year for gene hassell manager and 6th finish ### Answer: SELECT MIN(year) FROM table_name_98 WHERE manager = "gene hassell" AND finish = "6th"
|
Name the finish for a 39-31 record
|
CREATE TABLE table_name_64 (finish VARCHAR, record VARCHAR)
|
SELECT finish FROM table_name_64 WHERE record = "39-31"
|
### Context: CREATE TABLE table_name_64 (finish VARCHAR, record VARCHAR) ### Question: Name the finish for a 39-31 record ### Answer: SELECT finish FROM table_name_64 WHERE record = "39-31"
|
What is the lowest goal difference for the club ud alzira, with a played larger than 38?
|
CREATE TABLE table_name_59 (goal_difference INTEGER, club VARCHAR, played VARCHAR)
|
SELECT MIN(goal_difference) FROM table_name_59 WHERE club = "ud alzira" AND played > 38
|
### Context: CREATE TABLE table_name_59 (goal_difference INTEGER, club VARCHAR, played VARCHAR) ### Question: What is the lowest goal difference for the club ud alzira, with a played larger than 38? ### Answer: SELECT MIN(goal_difference) FROM table_name_59 WHERE club = "ud alzira" AND played > 38
|
What is the goal difference sum that has goals against smaller than 33, draws larger than 13?
|
CREATE TABLE table_name_27 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)
|
SELECT SUM(goal_difference) FROM table_name_27 WHERE goals_against < 33 AND draws > 13
|
### Context: CREATE TABLE table_name_27 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR) ### Question: What is the goal difference sum that has goals against smaller than 33, draws larger than 13? ### Answer: SELECT SUM(goal_difference) FROM table_name_27 WHERE goals_against < 33 AND draws > 13
|
Name the transfer fee for damia
|
CREATE TABLE table_name_27 (transfer_fee VARCHAR, name VARCHAR)
|
SELECT transfer_fee FROM table_name_27 WHERE name = "damia"
|
### Context: CREATE TABLE table_name_27 (transfer_fee VARCHAR, name VARCHAR) ### Question: Name the transfer fee for damia ### Answer: SELECT transfer_fee FROM table_name_27 WHERE name = "damia"
|
Name the moving to with a transfer fee of free with a transfer status for rodri
|
CREATE TABLE table_name_24 (moving_to VARCHAR, name VARCHAR, transfer_fee VARCHAR, status VARCHAR)
|
SELECT moving_to FROM table_name_24 WHERE transfer_fee = "free" AND status = "transfer" AND name = "rodri"
|
### Context: CREATE TABLE table_name_24 (moving_to VARCHAR, name VARCHAR, transfer_fee VARCHAR, status VARCHAR) ### Question: Name the moving to with a transfer fee of free with a transfer status for rodri ### Answer: SELECT moving_to FROM table_name_24 WHERE transfer_fee = "free" AND status = "transfer" AND name = "rodri"
|
When was the game played at the Western Oval venue?
|
CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)
|
SELECT date FROM table_name_23 WHERE venue = "western oval"
|
### Context: CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR) ### Question: When was the game played at the Western Oval venue? ### Answer: SELECT date FROM table_name_23 WHERE venue = "western oval"
|
What is the livery of the locomotive with a serial number 83-1010?
|
CREATE TABLE table_name_33 (livery VARCHAR, serial_no VARCHAR)
|
SELECT livery FROM table_name_33 WHERE serial_no = "83-1010"
|
### Context: CREATE TABLE table_name_33 (livery VARCHAR, serial_no VARCHAR) ### Question: What is the livery of the locomotive with a serial number 83-1010? ### Answer: SELECT livery FROM table_name_33 WHERE serial_no = "83-1010"
|
What is the livery on the locomotive with a serial number 83-1011?
|
CREATE TABLE table_name_86 (livery VARCHAR, serial_no VARCHAR)
|
SELECT livery FROM table_name_86 WHERE serial_no = "83-1011"
|
### Context: CREATE TABLE table_name_86 (livery VARCHAR, serial_no VARCHAR) ### Question: What is the livery on the locomotive with a serial number 83-1011? ### Answer: SELECT livery FROM table_name_86 WHERE serial_no = "83-1011"
|
What is the locomotive with a standard gauge and a serial number of 83-1015?
|
CREATE TABLE table_name_74 (locomotive VARCHAR, gauge VARCHAR, serial_no VARCHAR)
|
SELECT locomotive FROM table_name_74 WHERE gauge = "standard" AND serial_no = "83-1015"
|
### Context: CREATE TABLE table_name_74 (locomotive VARCHAR, gauge VARCHAR, serial_no VARCHAR) ### Question: What is the locomotive with a standard gauge and a serial number of 83-1015? ### Answer: SELECT locomotive FROM table_name_74 WHERE gauge = "standard" AND serial_no = "83-1015"
|
What is the date of entered service for the locomotive with a broad gauge and a serial no of 83-1018?
|
CREATE TABLE table_name_76 (entered_service VARCHAR, gauge VARCHAR, serial_no VARCHAR)
|
SELECT entered_service FROM table_name_76 WHERE gauge = "broad" AND serial_no = "83-1018"
|
### Context: CREATE TABLE table_name_76 (entered_service VARCHAR, gauge VARCHAR, serial_no VARCHAR) ### Question: What is the date of entered service for the locomotive with a broad gauge and a serial no of 83-1018? ### Answer: SELECT entered_service FROM table_name_76 WHERE gauge = "broad" AND serial_no = "83-1018"
|
What was the venue on October 16, 1996?
|
CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)
|
SELECT venue FROM table_name_13 WHERE date = "october 16, 1996"
|
### Context: CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR) ### Question: What was the venue on October 16, 1996? ### Answer: SELECT venue FROM table_name_13 WHERE date = "october 16, 1996"
|
What's the score at the October 30, 1996 1998 fifa world cup qualification with a result of win?
|
CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)
|
SELECT score FROM table_name_58 WHERE result = "win" AND competition = "1998 fifa world cup qualification" AND date = "october 30, 1996"
|
### Context: CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR) ### Question: What's the score at the October 30, 1996 1998 fifa world cup qualification with a result of win? ### Answer: SELECT score FROM table_name_58 WHERE result = "win" AND competition = "1998 fifa world cup qualification" AND date = "october 30, 1996"
|
When was the friendship cup?
|
CREATE TABLE table_name_37 (date VARCHAR, competition VARCHAR)
|
SELECT date FROM table_name_37 WHERE competition = "friendship cup"
|
### Context: CREATE TABLE table_name_37 (date VARCHAR, competition VARCHAR) ### Question: When was the friendship cup? ### Answer: SELECT date FROM table_name_37 WHERE competition = "friendship cup"
|
What is the smallest number for Cars per Set built in 1977-1979 larger than 32?
|
CREATE TABLE table_name_88 (cars_per_set INTEGER, year_built VARCHAR, number VARCHAR)
|
SELECT MIN(cars_per_set) FROM table_name_88 WHERE year_built = "1977-1979" AND number > 32
|
### Context: CREATE TABLE table_name_88 (cars_per_set INTEGER, year_built VARCHAR, number VARCHAR) ### Question: What is the smallest number for Cars per Set built in 1977-1979 larger than 32? ### Answer: SELECT MIN(cars_per_set) FROM table_name_88 WHERE year_built = "1977-1979" AND number > 32
|
What is the largest number of cars per set that is less than 9?
|
CREATE TABLE table_name_30 (number INTEGER, cars_per_set INTEGER)
|
SELECT MAX(number) FROM table_name_30 WHERE cars_per_set < 9
|
### Context: CREATE TABLE table_name_30 (number INTEGER, cars_per_set INTEGER) ### Question: What is the largest number of cars per set that is less than 9? ### Answer: SELECT MAX(number) FROM table_name_30 WHERE cars_per_set < 9
|
What year was the class 253 larger than 18 built?
|
CREATE TABLE table_name_10 (year_built VARCHAR, class VARCHAR, number VARCHAR)
|
SELECT year_built FROM table_name_10 WHERE class = "class 253" AND number > 18
|
### Context: CREATE TABLE table_name_10 (year_built VARCHAR, class VARCHAR, number VARCHAR) ### Question: What year was the class 253 larger than 18 built? ### Answer: SELECT year_built FROM table_name_10 WHERE class = "class 253" AND number > 18
|
What is the margin for the Masters Tournament (2) championship?
|
CREATE TABLE table_name_34 (margin VARCHAR, championship VARCHAR)
|
SELECT margin FROM table_name_34 WHERE championship = "masters tournament (2)"
|
### Context: CREATE TABLE table_name_34 (margin VARCHAR, championship VARCHAR) ### Question: What is the margin for the Masters Tournament (2) championship? ### Answer: SELECT margin FROM table_name_34 WHERE championship = "masters tournament (2)"
|
What is the round of 54 holes in which Phil Mickelson was the runner-up?
|
CREATE TABLE table_name_33 (runner_s__up VARCHAR)
|
SELECT 54 AS _holes FROM table_name_33 WHERE runner_s__up = "phil mickelson"
|
### Context: CREATE TABLE table_name_33 (runner_s__up VARCHAR) ### Question: What is the round of 54 holes in which Phil Mickelson was the runner-up? ### Answer: SELECT 54 AS _holes FROM table_name_33 WHERE runner_s__up = "phil mickelson"
|
What is the home team of the April 14 game?
|
CREATE TABLE table_name_27 (home VARCHAR, date VARCHAR)
|
SELECT home FROM table_name_27 WHERE date = "april 14"
|
### Context: CREATE TABLE table_name_27 (home VARCHAR, date VARCHAR) ### Question: What is the home team of the April 14 game? ### Answer: SELECT home FROM table_name_27 WHERE date = "april 14"
|
What is the date of the game with Detroit as the visitor team?
|
CREATE TABLE table_name_23 (date VARCHAR, visitor VARCHAR)
|
SELECT date FROM table_name_23 WHERE visitor = "detroit"
|
### Context: CREATE TABLE table_name_23 (date VARCHAR, visitor VARCHAR) ### Question: What is the date of the game with Detroit as the visitor team? ### Answer: SELECT date FROM table_name_23 WHERE visitor = "detroit"
|
How many vieweres for the episode with a share of 1, a Rating larger than 0.7000000000000001, and a Rank (#) of 100/102?
|
CREATE TABLE table_name_73 (viewers__m_ VARCHAR, rank___number_ VARCHAR, share VARCHAR, rating VARCHAR)
|
SELECT viewers__m_ FROM table_name_73 WHERE share = 1 AND rating > 0.7000000000000001 AND rank___number_ = "100/102"
|
### Context: CREATE TABLE table_name_73 (viewers__m_ VARCHAR, rank___number_ VARCHAR, share VARCHAR, rating VARCHAR) ### Question: How many vieweres for the episode with a share of 1, a Rating larger than 0.7000000000000001, and a Rank (#) of 100/102? ### Answer: SELECT viewers__m_ FROM table_name_73 WHERE share = 1 AND rating > 0.7000000000000001 AND rank___number_ = "100/102"
|
Name the lead tpt for bass of kevin tomanka and alto 1 of alan moffett
|
CREATE TABLE table_name_68 (lead_tpt VARCHAR, bass VARCHAR, alto_1 VARCHAR)
|
SELECT lead_tpt FROM table_name_68 WHERE bass = "kevin tomanka" AND alto_1 = "alan moffett"
|
### Context: CREATE TABLE table_name_68 (lead_tpt VARCHAR, bass VARCHAR, alto_1 VARCHAR) ### Question: Name the lead tpt for bass of kevin tomanka and alto 1 of alan moffett ### Answer: SELECT lead_tpt FROM table_name_68 WHERE bass = "kevin tomanka" AND alto_1 = "alan moffett"
|
What was the crowd size at the moorabbin oval venue?
|
CREATE TABLE table_name_86 (crowd VARCHAR, venue VARCHAR)
|
SELECT COUNT(crowd) FROM table_name_86 WHERE venue = "moorabbin oval"
|
### Context: CREATE TABLE table_name_86 (crowd VARCHAR, venue VARCHAR) ### Question: What was the crowd size at the moorabbin oval venue? ### Answer: SELECT COUNT(crowd) FROM table_name_86 WHERE venue = "moorabbin oval"
|
What did the home team score against the away team collingwood?
|
CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR)
|
SELECT home_team AS score FROM table_name_28 WHERE away_team = "collingwood"
|
### Context: CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR) ### Question: What did the home team score against the away team collingwood? ### Answer: SELECT home_team AS score FROM table_name_28 WHERE away_team = "collingwood"
|
what is the 1-letter for the amino acid asparagine?
|
CREATE TABLE table_name_10 (amino_acid VARCHAR)
|
SELECT 1 AS _letter FROM table_name_10 WHERE amino_acid = "asparagine"
|
### Context: CREATE TABLE table_name_10 (amino_acid VARCHAR) ### Question: what is the 1-letter for the amino acid asparagine? ### Answer: SELECT 1 AS _letter FROM table_name_10 WHERE amino_acid = "asparagine"
|
What was home team North Melbourne's opponents score?
|
CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)
|
SELECT away_team AS score FROM table_name_40 WHERE home_team = "north melbourne"
|
### Context: CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR) ### Question: What was home team North Melbourne's opponents score? ### Answer: SELECT away_team AS score FROM table_name_40 WHERE home_team = "north melbourne"
|
What was Melbourne's score as the home team?
|
CREATE TABLE table_name_16 (home_team VARCHAR)
|
SELECT home_team AS score FROM table_name_16 WHERE home_team = "melbourne"
|
### Context: CREATE TABLE table_name_16 (home_team VARCHAR) ### Question: What was Melbourne's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_16 WHERE home_team = "melbourne"
|
Who was the away team at Junction Oval?
|
CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team FROM table_name_63 WHERE venue = "junction oval"
|
### Context: CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at Junction Oval? ### Answer: SELECT away_team FROM table_name_63 WHERE venue = "junction oval"
|
What is the USCA that's Total is smaller than 14, with 1 Joint Music Award, MRHMA of 2, and RTHK of 3?
|
CREATE TABLE table_name_67 (usca VARCHAR, rthk VARCHAR, mrhma VARCHAR, total VARCHAR, joint_music_award VARCHAR)
|
SELECT usca FROM table_name_67 WHERE total < 14 AND joint_music_award = "1" AND mrhma = "2" AND rthk = "3"
|
### Context: CREATE TABLE table_name_67 (usca VARCHAR, rthk VARCHAR, mrhma VARCHAR, total VARCHAR, joint_music_award VARCHAR) ### Question: What is the USCA that's Total is smaller than 14, with 1 Joint Music Award, MRHMA of 2, and RTHK of 3? ### Answer: SELECT usca FROM table_name_67 WHERE total < 14 AND joint_music_award = "1" AND mrhma = "2" AND rthk = "3"
|
What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4?
|
CREATE TABLE table_name_99 (total VARCHAR, usca VARCHAR, joint_music_award VARCHAR, rthk VARCHAR)
|
SELECT total FROM table_name_99 WHERE joint_music_award = "1" AND rthk = "4" AND usca = "4"
|
### Context: CREATE TABLE table_name_99 (total VARCHAR, usca VARCHAR, joint_music_award VARCHAR, rthk VARCHAR) ### Question: What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4? ### Answer: SELECT total FROM table_name_99 WHERE joint_music_award = "1" AND rthk = "4" AND usca = "4"
|
How many Joint Music Awards were there with a RTHK of 1, in a Year before 2006?
|
CREATE TABLE table_name_81 (joint_music_award VARCHAR, year VARCHAR, rthk VARCHAR)
|
SELECT joint_music_award FROM table_name_81 WHERE year < 2006 AND rthk = "1"
|
### Context: CREATE TABLE table_name_81 (joint_music_award VARCHAR, year VARCHAR, rthk VARCHAR) ### Question: How many Joint Music Awards were there with a RTHK of 1, in a Year before 2006? ### Answer: SELECT joint_music_award FROM table_name_81 WHERE year < 2006 AND rthk = "1"
|
How many Joint Music Awards are there when the Total is larger than 18, in a Year after 2007?
|
CREATE TABLE table_name_32 (joint_music_award VARCHAR, total VARCHAR, year VARCHAR)
|
SELECT joint_music_award FROM table_name_32 WHERE total > 18 AND year > 2007
|
### Context: CREATE TABLE table_name_32 (joint_music_award VARCHAR, total VARCHAR, year VARCHAR) ### Question: How many Joint Music Awards are there when the Total is larger than 18, in a Year after 2007? ### Answer: SELECT joint_music_award FROM table_name_32 WHERE total > 18 AND year > 2007
|
Which lane did the athlete swim in who had a semi-final time of 49.19?
|
CREATE TABLE table_name_47 (lane INTEGER, semi VARCHAR)
|
SELECT MIN(lane) FROM table_name_47 WHERE semi = 49.19
|
### Context: CREATE TABLE table_name_47 (lane INTEGER, semi VARCHAR) ### Question: Which lane did the athlete swim in who had a semi-final time of 49.19? ### Answer: SELECT MIN(lane) FROM table_name_47 WHERE semi = 49.19
|
Which species is male?
|
CREATE TABLE table_name_70 (species VARCHAR, gender VARCHAR)
|
SELECT species FROM table_name_70 WHERE gender = "male"
|
### Context: CREATE TABLE table_name_70 (species VARCHAR, gender VARCHAR) ### Question: Which species is male? ### Answer: SELECT species FROM table_name_70 WHERE gender = "male"
|
What was the home teams score at Junction Oval?
|
CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)
|
SELECT home_team AS score FROM table_name_71 WHERE venue = "junction oval"
|
### Context: CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home teams score at Junction Oval? ### Answer: SELECT home_team AS score FROM table_name_71 WHERE venue = "junction oval"
|
What President has a Presidency greater than 7?
|
CREATE TABLE table_name_6 (president VARCHAR, presidency INTEGER)
|
SELECT president FROM table_name_6 WHERE presidency > 7
|
### Context: CREATE TABLE table_name_6 (president VARCHAR, presidency INTEGER) ### Question: What President has a Presidency greater than 7? ### Answer: SELECT president FROM table_name_6 WHERE presidency > 7
|
What is the highest Presidency that Took Office after 1974 and Left Office in 1998?
|
CREATE TABLE table_name_8 (presidency INTEGER, left_office VARCHAR, took_office VARCHAR)
|
SELECT MAX(presidency) FROM table_name_8 WHERE left_office = "1998" AND took_office > 1974
|
### Context: CREATE TABLE table_name_8 (presidency INTEGER, left_office VARCHAR, took_office VARCHAR) ### Question: What is the highest Presidency that Took Office after 1974 and Left Office in 1998? ### Answer: SELECT MAX(presidency) FROM table_name_8 WHERE left_office = "1998" AND took_office > 1974
|
What is the Took Office Date of the Presidency that Left Office Incumbent?
|
CREATE TABLE table_name_42 (took_office INTEGER, left_office VARCHAR)
|
SELECT SUM(took_office) FROM table_name_42 WHERE left_office = "incumbent"
|
### Context: CREATE TABLE table_name_42 (took_office INTEGER, left_office VARCHAR) ### Question: What is the Took Office Date of the Presidency that Left Office Incumbent? ### Answer: SELECT SUM(took_office) FROM table_name_42 WHERE left_office = "incumbent"
|
What was the greatest Took Office dates that Left Office in 1998?
|
CREATE TABLE table_name_22 (took_office INTEGER, left_office VARCHAR)
|
SELECT MAX(took_office) FROM table_name_22 WHERE left_office = "1998"
|
### Context: CREATE TABLE table_name_22 (took_office INTEGER, left_office VARCHAR) ### Question: What was the greatest Took Office dates that Left Office in 1998? ### Answer: SELECT MAX(took_office) FROM table_name_22 WHERE left_office = "1998"
|
What is the average Laps for andrea de cesaris?
|
CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)
|
SELECT AVG(laps) FROM table_name_76 WHERE driver = "andrea de cesaris"
|
### Context: CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR) ### Question: What is the average Laps for andrea de cesaris? ### Answer: SELECT AVG(laps) FROM table_name_76 WHERE driver = "andrea de cesaris"
|
What is the lowest Grid for jj lehto with over 51 laps?
|
CREATE TABLE table_name_81 (grid INTEGER, laps VARCHAR, driver VARCHAR)
|
SELECT MIN(grid) FROM table_name_81 WHERE laps > 51 AND driver = "jj lehto"
|
### Context: CREATE TABLE table_name_81 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### Question: What is the lowest Grid for jj lehto with over 51 laps? ### Answer: SELECT MIN(grid) FROM table_name_81 WHERE laps > 51 AND driver = "jj lehto"
|
What is the average Grid that has a Time/Retired of +2 laps, and under 51 laps?
|
CREATE TABLE table_name_83 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
|
SELECT AVG(grid) FROM table_name_83 WHERE time_retired = "+2 laps" AND laps < 51
|
### Context: CREATE TABLE table_name_83 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the average Grid that has a Time/Retired of +2 laps, and under 51 laps? ### Answer: SELECT AVG(grid) FROM table_name_83 WHERE time_retired = "+2 laps" AND laps < 51
|
What's the Home teams Venue near Victoria Park?
|
CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)
|
SELECT home_team FROM table_name_48 WHERE venue = "victoria park"
|
### Context: CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR) ### Question: What's the Home teams Venue near Victoria Park? ### Answer: SELECT home_team FROM table_name_48 WHERE venue = "victoria park"
|
What is the Home team with a crowd relevant to footscray?
|
CREATE TABLE table_name_33 (crowd VARCHAR, home_team VARCHAR)
|
SELECT crowd FROM table_name_33 WHERE home_team = "footscray"
|
### Context: CREATE TABLE table_name_33 (crowd VARCHAR, home_team VARCHAR) ### Question: What is the Home team with a crowd relevant to footscray? ### Answer: SELECT crowd FROM table_name_33 WHERE home_team = "footscray"
|
What is the team's record when they play nashville at home?
|
CREATE TABLE table_name_91 (record VARCHAR, home VARCHAR)
|
SELECT record FROM table_name_91 WHERE home = "nashville"
|
### Context: CREATE TABLE table_name_91 (record VARCHAR, home VARCHAR) ### Question: What is the team's record when they play nashville at home? ### Answer: SELECT record FROM table_name_91 WHERE home = "nashville"
|
What is the decision when they're at phoenix?
|
CREATE TABLE table_name_22 (decision VARCHAR, visitor VARCHAR)
|
SELECT decision FROM table_name_22 WHERE visitor = "phoenix"
|
### Context: CREATE TABLE table_name_22 (decision VARCHAR, visitor VARCHAR) ### Question: What is the decision when they're at phoenix? ### Answer: SELECT decision FROM table_name_22 WHERE visitor = "phoenix"
|
What was the score in the Tournament of Frankfurt?
|
CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)
|
SELECT score FROM table_name_66 WHERE tournament = "frankfurt"
|
### Context: CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR) ### Question: What was the score in the Tournament of Frankfurt? ### Answer: SELECT score FROM table_name_66 WHERE tournament = "frankfurt"
|
Who was the winner in the Tournament of Graz-Seiersberg?
|
CREATE TABLE table_name_56 (winner VARCHAR, tournament VARCHAR)
|
SELECT winner FROM table_name_56 WHERE tournament = "graz-seiersberg"
|
### Context: CREATE TABLE table_name_56 (winner VARCHAR, tournament VARCHAR) ### Question: Who was the winner in the Tournament of Graz-Seiersberg? ### Answer: SELECT winner FROM table_name_56 WHERE tournament = "graz-seiersberg"
|
Who earned third place when the winner was Paul Haarhuis?
|
CREATE TABLE table_name_68 (third_place VARCHAR, winner VARCHAR)
|
SELECT third_place FROM table_name_68 WHERE winner = "paul haarhuis"
|
### Context: CREATE TABLE table_name_68 (third_place VARCHAR, winner VARCHAR) ### Question: Who earned third place when the winner was Paul Haarhuis? ### Answer: SELECT third_place FROM table_name_68 WHERE winner = "paul haarhuis"
|
what is the most laps with the time/retired is differential and the grid is more than 2?
|
CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
|
SELECT MAX(laps) FROM table_name_35 WHERE time_retired = "differential" AND grid > 2
|
### Context: CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) ### Question: what is the most laps with the time/retired is differential and the grid is more than 2? ### Answer: SELECT MAX(laps) FROM table_name_35 WHERE time_retired = "differential" AND grid > 2
|
what is the least laps when the grid is 5?
|
CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR)
|
SELECT MIN(laps) FROM table_name_94 WHERE grid = 5
|
### Context: CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR) ### Question: what is the least laps when the grid is 5? ### Answer: SELECT MIN(laps) FROM table_name_94 WHERE grid = 5
|
On what date was Anniston Army Depot (SE Industrial Area) deleted?
|
CREATE TABLE table_name_8 (deleted VARCHAR, name VARCHAR)
|
SELECT deleted FROM table_name_8 WHERE name = "anniston army depot (se industrial area)"
|
### Context: CREATE TABLE table_name_8 (deleted VARCHAR, name VARCHAR) ### Question: On what date was Anniston Army Depot (SE Industrial Area) deleted? ### Answer: SELECT deleted FROM table_name_8 WHERE name = "anniston army depot (se industrial area)"
|
In what county is the entry that has a Construction Completed date of 07/19/2000 and a Listed date of 09/21/1984 located?
|
CREATE TABLE table_name_68 (county VARCHAR, listed VARCHAR, construction_completed VARCHAR)
|
SELECT county FROM table_name_68 WHERE listed = "09/21/1984" AND construction_completed = "07/19/2000"
|
### Context: CREATE TABLE table_name_68 (county VARCHAR, listed VARCHAR, construction_completed VARCHAR) ### Question: In what county is the entry that has a Construction Completed date of 07/19/2000 and a Listed date of 09/21/1984 located? ### Answer: SELECT county FROM table_name_68 WHERE listed = "09/21/1984" AND construction_completed = "07/19/2000"
|
On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?
|
CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR)
|
SELECT deleted FROM table_name_35 WHERE listed = "09/21/1984" AND name = "stauffer chemical company (lemoyne plant)"
|
### Context: CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR) ### Question: On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted? ### Answer: SELECT deleted FROM table_name_35 WHERE listed = "09/21/1984" AND name = "stauffer chemical company (lemoyne plant)"
|
What was the Proposed date of the entry that has a CERCLIS ID of al0001058056?
|
CREATE TABLE table_name_56 (proposed VARCHAR, cerclis_id VARCHAR)
|
SELECT proposed FROM table_name_56 WHERE cerclis_id = "al0001058056"
|
### Context: CREATE TABLE table_name_56 (proposed VARCHAR, cerclis_id VARCHAR) ### Question: What was the Proposed date of the entry that has a CERCLIS ID of al0001058056? ### Answer: SELECT proposed FROM table_name_56 WHERE cerclis_id = "al0001058056"
|
What first appeared in 1966 in the comic X-2-Y?
|
CREATE TABLE table_name_60 (first_appearance VARCHAR, year VARCHAR, name VARCHAR)
|
SELECT first_appearance FROM table_name_60 WHERE year = 1966 AND name = "x-2-y"
|
### Context: CREATE TABLE table_name_60 (first_appearance VARCHAR, year VARCHAR, name VARCHAR) ### Question: What first appeared in 1966 in the comic X-2-Y? ### Answer: SELECT first_appearance FROM table_name_60 WHERE year = 1966 AND name = "x-2-y"
|
Which baseball team is class AAA?
|
CREATE TABLE table_name_75 (team VARCHAR, sport VARCHAR, class VARCHAR)
|
SELECT team FROM table_name_75 WHERE sport = "baseball" AND class = "aaa"
|
### Context: CREATE TABLE table_name_75 (team VARCHAR, sport VARCHAR, class VARCHAR) ### Question: Which baseball team is class AAA? ### Answer: SELECT team FROM table_name_75 WHERE sport = "baseball" AND class = "aaa"
|
Where does Collingwood play their games?
|
CREATE TABLE table_name_55 (venue VARCHAR, away_team VARCHAR)
|
SELECT venue FROM table_name_55 WHERE away_team = "collingwood"
|
### Context: CREATE TABLE table_name_55 (venue VARCHAR, away_team VARCHAR) ### Question: Where does Collingwood play their games? ### Answer: SELECT venue FROM table_name_55 WHERE away_team = "collingwood"
|
Which position does Robert Nkemdiche play?
|
CREATE TABLE table_name_20 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_name_20 WHERE player = "robert nkemdiche"
|
### Context: CREATE TABLE table_name_20 (position VARCHAR, player VARCHAR) ### Question: Which position does Robert Nkemdiche play? ### Answer: SELECT position FROM table_name_20 WHERE player = "robert nkemdiche"
|
What is Reuben Foster's college?
|
CREATE TABLE table_name_59 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_name_59 WHERE player = "reuben foster"
|
### Context: CREATE TABLE table_name_59 (college VARCHAR, player VARCHAR) ### Question: What is Reuben Foster's college? ### Answer: SELECT college FROM table_name_59 WHERE player = "reuben foster"
|
Which position does the player from Muscle Shoals, Alabama play?
|
CREATE TABLE table_name_68 (position VARCHAR, hometown VARCHAR)
|
SELECT position FROM table_name_68 WHERE hometown = "muscle shoals, alabama"
|
### Context: CREATE TABLE table_name_68 (position VARCHAR, hometown VARCHAR) ### Question: Which position does the player from Muscle Shoals, Alabama play? ### Answer: SELECT position FROM table_name_68 WHERE hometown = "muscle shoals, alabama"
|
Which player is attending college at Virginia?
|
CREATE TABLE table_name_43 (player VARCHAR, college VARCHAR)
|
SELECT player FROM table_name_43 WHERE college = "virginia"
|
### Context: CREATE TABLE table_name_43 (player VARCHAR, college VARCHAR) ### Question: Which player is attending college at Virginia? ### Answer: SELECT player FROM table_name_43 WHERE college = "virginia"
|
Which player attended Hoover High School?
|
CREATE TABLE table_name_94 (player VARCHAR, school VARCHAR)
|
SELECT player FROM table_name_94 WHERE school = "hoover high school"
|
### Context: CREATE TABLE table_name_94 (player VARCHAR, school VARCHAR) ### Question: Which player attended Hoover High School? ### Answer: SELECT player FROM table_name_94 WHERE school = "hoover high school"
|
What is the team's record on may 12 when they play the giants?
|
CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR, date VARCHAR)
|
SELECT record FROM table_name_58 WHERE opponent = "giants" AND date = "may 12"
|
### Context: CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: What is the team's record on may 12 when they play the giants? ### Answer: SELECT record FROM table_name_58 WHERE opponent = "giants" AND date = "may 12"
|
What is the attendance at the game where San Jose was the visitor on May 4?
|
CREATE TABLE table_name_32 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)
|
SELECT attendance FROM table_name_32 WHERE visitor = "san jose" AND date = "may 4"
|
### Context: CREATE TABLE table_name_32 (attendance VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What is the attendance at the game where San Jose was the visitor on May 4? ### Answer: SELECT attendance FROM table_name_32 WHERE visitor = "san jose" AND date = "may 4"
|
Who was the home team on the May 2 game?
|
CREATE TABLE table_name_30 (home VARCHAR, date VARCHAR)
|
SELECT home FROM table_name_30 WHERE date = "may 2"
|
### Context: CREATE TABLE table_name_30 (home VARCHAR, date VARCHAR) ### Question: Who was the home team on the May 2 game? ### Answer: SELECT home FROM table_name_30 WHERE date = "may 2"
|
What date is the crowd larger than 20,000?
|
CREATE TABLE table_name_56 (date VARCHAR, crowd INTEGER)
|
SELECT date FROM table_name_56 WHERE crowd > 20 OFFSET 000
|
### Context: CREATE TABLE table_name_56 (date VARCHAR, crowd INTEGER) ### Question: What date is the crowd larger than 20,000? ### Answer: SELECT date FROM table_name_56 WHERE crowd > 20 OFFSET 000
|
What was the record when the score was 11-10?
|
CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR)
|
SELECT record FROM table_name_85 WHERE score = "11-10"
|
### Context: CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR) ### Question: What was the record when the score was 11-10? ### Answer: SELECT record FROM table_name_85 WHERE score = "11-10"
|
What was the record when the attendance was 22,713?
|
CREATE TABLE table_name_9 (record VARCHAR, attendance VARCHAR)
|
SELECT record FROM table_name_9 WHERE attendance = "22,713"
|
### Context: CREATE TABLE table_name_9 (record VARCHAR, attendance VARCHAR) ### Question: What was the record when the attendance was 22,713? ### Answer: SELECT record FROM table_name_9 WHERE attendance = "22,713"
|
What was the attendance at the game when the record was 49-61?
|
CREATE TABLE table_name_14 (attendance VARCHAR, record VARCHAR)
|
SELECT attendance FROM table_name_14 WHERE record = "49-61"
|
### Context: CREATE TABLE table_name_14 (attendance VARCHAR, record VARCHAR) ### Question: What was the attendance at the game when the record was 49-61? ### Answer: SELECT attendance FROM table_name_14 WHERE record = "49-61"
|
On what date was there a game in which the opponent was the Detroit Tigers, and the attendance was 38,639?
|
CREATE TABLE table_name_24 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)
|
SELECT date FROM table_name_24 WHERE opponent = "detroit tigers" AND attendance = "38,639"
|
### Context: CREATE TABLE table_name_24 (date VARCHAR, opponent VARCHAR, attendance VARCHAR) ### Question: On what date was there a game in which the opponent was the Detroit Tigers, and the attendance was 38,639? ### Answer: SELECT date FROM table_name_24 WHERE opponent = "detroit tigers" AND attendance = "38,639"
|
What is the free sotware with the latest stable date version of 1.1?
|
CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)
|
SELECT software FROM table_name_78 WHERE cost___usd__ = "free" AND latest_stable_date__version_ = "1.1"
|
### Context: CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR) ### Question: What is the free sotware with the latest stable date version of 1.1? ### Answer: SELECT software FROM table_name_78 WHERE cost___usd__ = "free" AND latest_stable_date__version_ = "1.1"
|
Name the software with the latest stable date of 0.6.1
|
CREATE TABLE table_name_87 (software VARCHAR, latest_stable_date__version_ VARCHAR)
|
SELECT software FROM table_name_87 WHERE latest_stable_date__version_ = "0.6.1"
|
### Context: CREATE TABLE table_name_87 (software VARCHAR, latest_stable_date__version_ VARCHAR) ### Question: Name the software with the latest stable date of 0.6.1 ### Answer: SELECT software FROM table_name_87 WHERE latest_stable_date__version_ = "0.6.1"
|
Name the cost for latest stable date of online
|
CREATE TABLE table_name_48 (cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)
|
SELECT cost___usd__ FROM table_name_48 WHERE latest_stable_date__version_ = "online"
|
### Context: CREATE TABLE table_name_48 (cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR) ### Question: Name the cost for latest stable date of online ### Answer: SELECT cost___usd__ FROM table_name_48 WHERE latest_stable_date__version_ = "online"
|
What is the birth place of the prime minister who served George V and entered office on 23 October 1922?
|
CREATE TABLE table_name_83 (birth_place VARCHAR, monarchs_served VARCHAR, entered_office VARCHAR)
|
SELECT birth_place FROM table_name_83 WHERE monarchs_served = "george v" AND entered_office = "23 october 1922"
|
### Context: CREATE TABLE table_name_83 (birth_place VARCHAR, monarchs_served VARCHAR, entered_office VARCHAR) ### Question: What is the birth place of the prime minister who served George V and entered office on 23 October 1922? ### Answer: SELECT birth_place FROM table_name_83 WHERE monarchs_served = "george v" AND entered_office = "23 october 1922"
|
To which political party did the prime minister who served under George V and was born in Manchester belong?
|
CREATE TABLE table_name_5 (political_party VARCHAR, monarchs_served VARCHAR, birth_place VARCHAR)
|
SELECT political_party FROM table_name_5 WHERE monarchs_served = "george v" AND birth_place = "manchester"
|
### Context: CREATE TABLE table_name_5 (political_party VARCHAR, monarchs_served VARCHAR, birth_place VARCHAR) ### Question: To which political party did the prime minister who served under George V and was born in Manchester belong? ### Answer: SELECT political_party FROM table_name_5 WHERE monarchs_served = "george v" AND birth_place = "manchester"
|
What date did the prime minister who entered office on 7 December 1916 leave office?
|
CREATE TABLE table_name_49 (left_office VARCHAR, entered_office VARCHAR)
|
SELECT left_office FROM table_name_49 WHERE entered_office = "7 december 1916"
|
### Context: CREATE TABLE table_name_49 (left_office VARCHAR, entered_office VARCHAR) ### Question: What date did the prime minister who entered office on 7 December 1916 leave office? ### Answer: SELECT left_office FROM table_name_49 WHERE entered_office = "7 december 1916"
|
What monarch(s) did Stanley Baldwin (1st ministry) serve?
|
CREATE TABLE table_name_18 (monarchs_served VARCHAR, name VARCHAR)
|
SELECT monarchs_served FROM table_name_18 WHERE name = "stanley baldwin (1st ministry)"
|
### Context: CREATE TABLE table_name_18 (monarchs_served VARCHAR, name VARCHAR) ### Question: What monarch(s) did Stanley Baldwin (1st ministry) serve? ### Answer: SELECT monarchs_served FROM table_name_18 WHERE name = "stanley baldwin (1st ministry)"
|
What is the date of the game played at rich stadium?
|
CREATE TABLE table_name_60 (date VARCHAR, game_site VARCHAR)
|
SELECT date FROM table_name_60 WHERE game_site = "rich stadium"
|
### Context: CREATE TABLE table_name_60 (date VARCHAR, game_site VARCHAR) ### Question: What is the date of the game played at rich stadium? ### Answer: SELECT date FROM table_name_60 WHERE game_site = "rich stadium"
|
What college has Chito Victolero?
|
CREATE TABLE table_name_38 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_name_38 WHERE player = "chito victolero"
|
### Context: CREATE TABLE table_name_38 (college VARCHAR, player VARCHAR) ### Question: What college has Chito Victolero? ### Answer: SELECT college FROM table_name_38 WHERE player = "chito victolero"
|
What college has Jojo Manalo?
|
CREATE TABLE table_name_43 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_name_43 WHERE player = "jojo manalo"
|
### Context: CREATE TABLE table_name_43 (college VARCHAR, player VARCHAR) ### Question: What college has Jojo Manalo? ### Answer: SELECT college FROM table_name_43 WHERE player = "jojo manalo"
|
What is the pick number for the College of Perpetual help with the Coca-Cola Tigers as a PBA team?
|
CREATE TABLE table_name_52 (pick VARCHAR, college VARCHAR, pba_team VARCHAR)
|
SELECT COUNT(pick) FROM table_name_52 WHERE college = "perpetual help" AND pba_team = "coca-cola tigers"
|
### Context: CREATE TABLE table_name_52 (pick VARCHAR, college VARCHAR, pba_team VARCHAR) ### Question: What is the pick number for the College of Perpetual help with the Coca-Cola Tigers as a PBA team? ### Answer: SELECT COUNT(pick) FROM table_name_52 WHERE college = "perpetual help" AND pba_team = "coca-cola tigers"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.