question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many seats does leader Raymond McCartney have?
CREATE TABLE table_name_2 (number_of_seats INTEGER, leader VARCHAR)
SELECT SUM(number_of_seats) FROM table_name_2 WHERE leader = "raymond mccartney"
### Context: CREATE TABLE table_name_2 (number_of_seats INTEGER, leader VARCHAR) ### Question: How many seats does leader Raymond McCartney have? ### Answer: SELECT SUM(number_of_seats) FROM table_name_2 WHERE leader = "raymond mccartney"
Which leader of the Democratic Unionist party has more than 8 seats?
CREATE TABLE table_name_35 (leader VARCHAR, number_of_seats VARCHAR, party VARCHAR)
SELECT leader FROM table_name_35 WHERE number_of_seats > 8 AND party = "democratic unionist party"
### Context: CREATE TABLE table_name_35 (leader VARCHAR, number_of_seats VARCHAR, party VARCHAR) ### Question: Which leader of the Democratic Unionist party has more than 8 seats? ### Answer: SELECT leader FROM table_name_35 WHERE number_of_seats > 8 AND party = "democratic unionist party"
Anuya Bhagvath was nominated for what award?
CREATE TABLE table_name_60 (award VARCHAR, outcome VARCHAR, name VARCHAR)
SELECT award FROM table_name_60 WHERE outcome = "nominated" AND name = "anuya bhagvath"
### Context: CREATE TABLE table_name_60 (award VARCHAR, outcome VARCHAR, name VARCHAR) ### Question: Anuya Bhagvath was nominated for what award? ### Answer: SELECT award FROM table_name_60 WHERE outcome = "nominated" AND name = "anuya bhagvath"
Which award has film lyricist in the category?
CREATE TABLE table_name_11 (award VARCHAR, category VARCHAR)
SELECT award FROM table_name_11 WHERE category = "film lyricist"
### Context: CREATE TABLE table_name_11 (award VARCHAR, category VARCHAR) ### Question: Which award has film lyricist in the category? ### Answer: SELECT award FROM table_name_11 WHERE category = "film lyricist"
What is the category Anuya Bhagvath was nominated for at vijay award?
CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR)
SELECT ceremony FROM table_name_39 WHERE award = "vijay award" AND outcome = "nominated" AND name = "anuya bhagvath"
### Context: CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR) ### Question: What is the category Anuya Bhagvath was nominated for at vijay award? ### Answer: SELECT ceremony FROM table_name_39 WHERE award = "vijay award" AND outcome = "nominated" AND name = "anuya bhagvath"
Which ceremony has the best lyricist category?
CREATE TABLE table_name_67 (ceremony VARCHAR, category VARCHAR)
SELECT ceremony FROM table_name_67 WHERE category = "best lyricist"
### Context: CREATE TABLE table_name_67 (ceremony VARCHAR, category VARCHAR) ### Question: Which ceremony has the best lyricist category? ### Answer: SELECT ceremony FROM table_name_67 WHERE category = "best lyricist"
Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?
CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, position VARCHAR)
SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = "smyslov; kasparov" AND position = 5
### Context: CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, position VARCHAR) ### Question: Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5? ### Answer: SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = "smyslov; kasparov" AND position = 5
Which best 5-year period has a best 15-year period of alekhine; lasker?
CREATE TABLE table_name_37 (best_5_year_period VARCHAR, best_15_year_period VARCHAR)
SELECT best_5_year_period FROM table_name_37 WHERE best_15_year_period = "alekhine; lasker"
### Context: CREATE TABLE table_name_37 (best_5_year_period VARCHAR, best_15_year_period VARCHAR) ### Question: Which best 5-year period has a best 15-year period of alekhine; lasker? ### Answer: SELECT best_5_year_period FROM table_name_37 WHERE best_15_year_period = "alekhine; lasker"
Which best 10-year period has a best 2-year period of petrosian?
CREATE TABLE table_name_32 (best_10_year_period VARCHAR, best_2_year_period VARCHAR)
SELECT best_10_year_period FROM table_name_32 WHERE best_2_year_period = "petrosian"
### Context: CREATE TABLE table_name_32 (best_10_year_period VARCHAR, best_2_year_period VARCHAR) ### Question: Which best 10-year period has a best 2-year period of petrosian? ### Answer: SELECT best_10_year_period FROM table_name_32 WHERE best_2_year_period = "petrosian"
Which Position has a best 3-year period of petrosian?
CREATE TABLE table_name_69 (position INTEGER, best_3_year_period VARCHAR)
SELECT MAX(position) FROM table_name_69 WHERE best_3_year_period = "petrosian"
### Context: CREATE TABLE table_name_69 (position INTEGER, best_3_year_period VARCHAR) ### Question: Which Position has a best 3-year period of petrosian? ### Answer: SELECT MAX(position) FROM table_name_69 WHERE best_3_year_period = "petrosian"
What is High Rebounds, when Score is 61-59?
CREATE TABLE table_name_6 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_6 WHERE score = "61-59"
### Context: CREATE TABLE table_name_6 (high_rebounds VARCHAR, score VARCHAR) ### Question: What is High Rebounds, when Score is 61-59? ### Answer: SELECT high_rebounds FROM table_name_6 WHERE score = "61-59"
What is Score, when High Rebounds is "Nolan (10)"?
CREATE TABLE table_name_61 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_name_61 WHERE high_rebounds = "nolan (10)"
### Context: CREATE TABLE table_name_61 (score VARCHAR, high_rebounds VARCHAR) ### Question: What is Score, when High Rebounds is "Nolan (10)"? ### Answer: SELECT score FROM table_name_61 WHERE high_rebounds = "nolan (10)"
What is Opponent, when High Rebounds is "Pierson (6)"?
CREATE TABLE table_name_67 (opponent VARCHAR, high_rebounds VARCHAR)
SELECT opponent FROM table_name_67 WHERE high_rebounds = "pierson (6)"
### Context: CREATE TABLE table_name_67 (opponent VARCHAR, high_rebounds VARCHAR) ### Question: What is Opponent, when High Rebounds is "Pierson (6)"? ### Answer: SELECT opponent FROM table_name_67 WHERE high_rebounds = "pierson (6)"
What is the sum of Game(s), when High Rebounds is "Pierson (6)"?
CREATE TABLE table_name_6 (game INTEGER, high_rebounds VARCHAR)
SELECT SUM(game) FROM table_name_6 WHERE high_rebounds = "pierson (6)"
### Context: CREATE TABLE table_name_6 (game INTEGER, high_rebounds VARCHAR) ### Question: What is the sum of Game(s), when High Rebounds is "Pierson (6)"? ### Answer: SELECT SUM(game) FROM table_name_6 WHERE high_rebounds = "pierson (6)"
How many Laps did Bob Wollek have?
CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR)
SELECT AVG(laps) FROM table_name_5 WHERE driver = "bob wollek"
### Context: CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR) ### Question: How many Laps did Bob Wollek have? ### Answer: SELECT AVG(laps) FROM table_name_5 WHERE driver = "bob wollek"
How many Laps did Team Primagaz Competition have?
CREATE TABLE table_name_14 (laps VARCHAR, team VARCHAR)
SELECT laps FROM table_name_14 WHERE team = "primagaz competition"
### Context: CREATE TABLE table_name_14 (laps VARCHAR, team VARCHAR) ### Question: How many Laps did Team Primagaz Competition have? ### Answer: SELECT laps FROM table_name_14 WHERE team = "primagaz competition"
What Team had 40 Laps in C1 Class?
CREATE TABLE table_name_46 (team VARCHAR, class VARCHAR, laps VARCHAR)
SELECT team FROM table_name_46 WHERE class = "c1" AND laps = 40
### Context: CREATE TABLE table_name_46 (team VARCHAR, class VARCHAR, laps VARCHAR) ### Question: What Team had 40 Laps in C1 Class? ### Answer: SELECT team FROM table_name_46 WHERE class = "c1" AND laps = 40
What Team has Bob Wollek as a Driver with 76 Laps in C1 Class?
CREATE TABLE table_name_63 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR)
SELECT team FROM table_name_63 WHERE class = "c1" AND laps = 76 AND driver = "bob wollek"
### Context: CREATE TABLE table_name_63 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR) ### Question: What Team has Bob Wollek as a Driver with 76 Laps in C1 Class? ### Answer: SELECT team FROM table_name_63 WHERE class = "c1" AND laps = 76 AND driver = "bob wollek"
How many Laps does GP Motorsport Team have?
CREATE TABLE table_name_43 (laps INTEGER, team VARCHAR)
SELECT SUM(laps) FROM table_name_43 WHERE team = "gp motorsport"
### Context: CREATE TABLE table_name_43 (laps INTEGER, team VARCHAR) ### Question: How many Laps does GP Motorsport Team have? ### Answer: SELECT SUM(laps) FROM table_name_43 WHERE team = "gp motorsport"
what is the location when the score is w 105-99?
CREATE TABLE table_name_58 (location VARCHAR, score VARCHAR)
SELECT location FROM table_name_58 WHERE score = "w 105-99"
### Context: CREATE TABLE table_name_58 (location VARCHAR, score VARCHAR) ### Question: what is the location when the score is w 105-99? ### Answer: SELECT location FROM table_name_58 WHERE score = "w 105-99"
what is the location on november 23?
CREATE TABLE table_name_58 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_58 WHERE date = "november 23"
### Context: CREATE TABLE table_name_58 (location VARCHAR, date VARCHAR) ### Question: what is the location on november 23? ### Answer: SELECT location FROM table_name_58 WHERE date = "november 23"
Name the highest Ends Lost which has an Shot % larger than 78, and a Ends Won smaller than 38?
CREATE TABLE table_name_63 (ends_lost INTEGER, shot__percentage VARCHAR, ends_won VARCHAR)
SELECT MAX(ends_lost) FROM table_name_63 WHERE shot__percentage > 78 AND ends_won < 38
### Context: CREATE TABLE table_name_63 (ends_lost INTEGER, shot__percentage VARCHAR, ends_won VARCHAR) ### Question: Name the highest Ends Lost which has an Shot % larger than 78, and a Ends Won smaller than 38? ### Answer: SELECT MAX(ends_lost) FROM table_name_63 WHERE shot__percentage > 78 AND ends_won < 38
Name the Country which has Stolen Ends larger than 7, and a Skip of david murdoch?
CREATE TABLE table_name_67 (country VARCHAR, stolen_ends VARCHAR, skip VARCHAR)
SELECT country FROM table_name_67 WHERE stolen_ends > 7 AND skip = "david murdoch"
### Context: CREATE TABLE table_name_67 (country VARCHAR, stolen_ends VARCHAR, skip VARCHAR) ### Question: Name the Country which has Stolen Ends larger than 7, and a Skip of david murdoch? ### Answer: SELECT country FROM table_name_67 WHERE stolen_ends > 7 AND skip = "david murdoch"
Name the average Stolen Ends which has an Ends Lost smaller than 35?
CREATE TABLE table_name_89 (stolen_ends INTEGER, ends_lost INTEGER)
SELECT AVG(stolen_ends) FROM table_name_89 WHERE ends_lost < 35
### Context: CREATE TABLE table_name_89 (stolen_ends INTEGER, ends_lost INTEGER) ### Question: Name the average Stolen Ends which has an Ends Lost smaller than 35? ### Answer: SELECT AVG(stolen_ends) FROM table_name_89 WHERE ends_lost < 35
Name the average Blank Ends which has a Shot % smaller than 78, and a Ends Won larger than 43?
CREATE TABLE table_name_80 (blank_ends INTEGER, shot__percentage VARCHAR, ends_won VARCHAR)
SELECT AVG(blank_ends) FROM table_name_80 WHERE shot__percentage < 78 AND ends_won > 43
### Context: CREATE TABLE table_name_80 (blank_ends INTEGER, shot__percentage VARCHAR, ends_won VARCHAR) ### Question: Name the average Blank Ends which has a Shot % smaller than 78, and a Ends Won larger than 43? ### Answer: SELECT AVG(blank_ends) FROM table_name_80 WHERE shot__percentage < 78 AND ends_won > 43
What rank has skyfall as the title?
CREATE TABLE table_name_35 (rank VARCHAR, title VARCHAR)
SELECT rank FROM table_name_35 WHERE title = "skyfall"
### Context: CREATE TABLE table_name_35 (rank VARCHAR, title VARCHAR) ### Question: What rank has skyfall as the title? ### Answer: SELECT rank FROM table_name_35 WHERE title = "skyfall"
What director(s) have the intouchables as the title?
CREATE TABLE table_name_67 (director_s_ VARCHAR, title VARCHAR)
SELECT director_s_ FROM table_name_67 WHERE title = "the intouchables"
### Context: CREATE TABLE table_name_67 (director_s_ VARCHAR, title VARCHAR) ### Question: What director(s) have the intouchables as the title? ### Answer: SELECT director_s_ FROM table_name_67 WHERE title = "the intouchables"
What studio has 6 as the rank?
CREATE TABLE table_name_32 (studio VARCHAR, rank VARCHAR)
SELECT studio FROM table_name_32 WHERE rank = 6
### Context: CREATE TABLE table_name_32 (studio VARCHAR, rank VARCHAR) ### Question: What studio has 6 as the rank? ### Answer: SELECT studio FROM table_name_32 WHERE rank = 6
How many ranks have $1,084,439,099 as the worldwide gross?
CREATE TABLE table_name_91 (rank INTEGER, worldwide_gross VARCHAR)
SELECT SUM(rank) FROM table_name_91 WHERE worldwide_gross = "$1,084,439,099"
### Context: CREATE TABLE table_name_91 (rank INTEGER, worldwide_gross VARCHAR) ### Question: How many ranks have $1,084,439,099 as the worldwide gross? ### Answer: SELECT SUM(rank) FROM table_name_91 WHERE worldwide_gross = "$1,084,439,099"
What is the 1981 value of the Macedonian population with a 1971 number greater than 192 and a 1991 of 1748?
CREATE TABLE table_name_54 (number_1971 VARCHAR)
SELECT 1981 FROM table_name_54 WHERE number_1971 > 192 AND 1991 = 1748
### Context: CREATE TABLE table_name_54 (number_1971 VARCHAR) ### Question: What is the 1981 value of the Macedonian population with a 1971 number greater than 192 and a 1991 of 1748? ### Answer: SELECT 1981 FROM table_name_54 WHERE number_1971 > 192 AND 1991 = 1748
What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171?
CREATE TABLE table_name_15 (number_1971 INTEGER)
SELECT MIN(number_1971) FROM table_name_15 WHERE 2002 > 133 AND 1991 < 171
### Context: CREATE TABLE table_name_15 (number_1971 INTEGER) ### Question: What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171? ### Answer: SELECT MIN(number_1971) FROM table_name_15 WHERE 2002 > 133 AND 1991 < 171
What is the total 1961 number of the plandište Macedonian population with a 1981 value greater than 1027?
CREATE TABLE table_name_47 (macedonian_population_in_vojvodina VARCHAR)
SELECT COUNT(1961) FROM table_name_47 WHERE macedonian_population_in_vojvodina = "plandište" AND 1981 > 1027
### Context: CREATE TABLE table_name_47 (macedonian_population_in_vojvodina VARCHAR) ### Question: What is the total 1961 number of the plandište Macedonian population with a 1981 value greater than 1027? ### Answer: SELECT COUNT(1961) FROM table_name_47 WHERE macedonian_population_in_vojvodina = "plandište" AND 1981 > 1027
What is the 1961 total of the Macedonian population with a 1971 number of 3325 and a 1991 value greater than 3177?
CREATE TABLE table_name_15 (number_1971 VARCHAR)
SELECT COUNT(1961) FROM table_name_15 WHERE number_1971 = 3325 AND 1991 > 3177
### Context: CREATE TABLE table_name_15 (number_1971 VARCHAR) ### Question: What is the 1961 total of the Macedonian population with a 1971 number of 3325 and a 1991 value greater than 3177? ### Answer: SELECT COUNT(1961) FROM table_name_15 WHERE number_1971 = 3325 AND 1991 > 3177
What airport is in Muscat?
CREATE TABLE table_name_60 (airport VARCHAR, city VARCHAR)
SELECT airport FROM table_name_60 WHERE city = "muscat"
### Context: CREATE TABLE table_name_60 (airport VARCHAR, city VARCHAR) ### Question: What airport is in Muscat? ### Answer: SELECT airport FROM table_name_60 WHERE city = "muscat"
What country is Bandar Abbas in?
CREATE TABLE table_name_8 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_8 WHERE city = "bandar abbas"
### Context: CREATE TABLE table_name_8 (country VARCHAR, city VARCHAR) ### Question: What country is Bandar Abbas in? ### Answer: SELECT country FROM table_name_8 WHERE city = "bandar abbas"
What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport?
CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR, airport VARCHAR)
SELECT city FROM table_name_58 WHERE country = "india" AND airport = "sardar vallabhbhai patel international airport"
### Context: CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR, airport VARCHAR) ### Question: What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport? ### Answer: SELECT city FROM table_name_58 WHERE country = "india" AND airport = "sardar vallabhbhai patel international airport"
What airport is in China with an ICAO of zbaa?
CREATE TABLE table_name_55 (airport VARCHAR, country VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_55 WHERE country = "china" AND icao = "zbaa"
### Context: CREATE TABLE table_name_55 (airport VARCHAR, country VARCHAR, icao VARCHAR) ### Question: What airport is in China with an ICAO of zbaa? ### Answer: SELECT airport FROM table_name_55 WHERE country = "china" AND icao = "zbaa"
What airport is in Toronto?
CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR)
SELECT airport FROM table_name_87 WHERE city = "toronto"
### Context: CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR) ### Question: What airport is in Toronto? ### Answer: SELECT airport FROM table_name_87 WHERE city = "toronto"
What country has an ICAO of ypph?
CREATE TABLE table_name_67 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_67 WHERE icao = "ypph"
### Context: CREATE TABLE table_name_67 (country VARCHAR, icao VARCHAR) ### Question: What country has an ICAO of ypph? ### Answer: SELECT country FROM table_name_67 WHERE icao = "ypph"
When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded?
CREATE TABLE table_name_79 (points INTEGER, mark VARCHAR, react VARCHAR)
SELECT MAX(points) FROM table_name_79 WHERE mark = "8.54" AND react > 0.23800000000000002
### Context: CREATE TABLE table_name_79 (points INTEGER, mark VARCHAR, react VARCHAR) ### Question: When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded? ### Answer: SELECT MAX(points) FROM table_name_79 WHERE mark = "8.54" AND react > 0.23800000000000002
Which country has a reaction time of under 0.242 seconds and over 1041 points?
CREATE TABLE table_name_58 (country VARCHAR, react VARCHAR, points VARCHAR)
SELECT country FROM table_name_58 WHERE react < 0.242 AND points > 1041
### Context: CREATE TABLE table_name_58 (country VARCHAR, react VARCHAR, points VARCHAR) ### Question: Which country has a reaction time of under 0.242 seconds and over 1041 points? ### Answer: SELECT country FROM table_name_58 WHERE react < 0.242 AND points > 1041
If a country has 1008 points what's their reaction time?
CREATE TABLE table_name_84 (react INTEGER, points VARCHAR)
SELECT MAX(react) FROM table_name_84 WHERE points = 1008
### Context: CREATE TABLE table_name_84 (react INTEGER, points VARCHAR) ### Question: If a country has 1008 points what's their reaction time? ### Answer: SELECT MAX(react) FROM table_name_84 WHERE points = 1008
Which wicket had 580 runs?
CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR)
SELECT wicket FROM table_name_85 WHERE runs = "580"
### Context: CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR) ### Question: Which wicket had 580 runs? ### Answer: SELECT wicket FROM table_name_85 WHERE runs = "580"
Who fielded against the 8th wicket?
CREATE TABLE table_name_81 (fielding_team VARCHAR, wicket VARCHAR)
SELECT fielding_team FROM table_name_81 WHERE wicket = "8th"
### Context: CREATE TABLE table_name_81 (fielding_team VARCHAR, wicket VARCHAR) ### Question: Who fielded against the 8th wicket? ### Answer: SELECT fielding_team FROM table_name_81 WHERE wicket = "8th"
How many runs did Vijay Hazare and Gul Mohammad score?
CREATE TABLE table_name_98 (runs VARCHAR, batting_partners VARCHAR)
SELECT runs FROM table_name_98 WHERE batting_partners = "vijay hazare and gul mohammad"
### Context: CREATE TABLE table_name_98 (runs VARCHAR, batting_partners VARCHAR) ### Question: How many runs did Vijay Hazare and Gul Mohammad score? ### Answer: SELECT runs FROM table_name_98 WHERE batting_partners = "vijay hazare and gul mohammad"
Who were the batting partners in Colombo?
CREATE TABLE table_name_99 (batting_partners VARCHAR, venue VARCHAR)
SELECT batting_partners FROM table_name_99 WHERE venue = "colombo"
### Context: CREATE TABLE table_name_99 (batting_partners VARCHAR, venue VARCHAR) ### Question: Who were the batting partners in Colombo? ### Answer: SELECT batting_partners FROM table_name_99 WHERE venue = "colombo"
Who was the batting team in the 2006 season?
CREATE TABLE table_name_61 (batting_team VARCHAR, season VARCHAR)
SELECT batting_team FROM table_name_61 WHERE season = "2006"
### Context: CREATE TABLE table_name_61 (batting_team VARCHAR, season VARCHAR) ### Question: Who was the batting team in the 2006 season? ### Answer: SELECT batting_team FROM table_name_61 WHERE season = "2006"
In what season was 577 runs scored?
CREATE TABLE table_name_33 (season VARCHAR, runs VARCHAR)
SELECT season FROM table_name_33 WHERE runs = "577"
### Context: CREATE TABLE table_name_33 (season VARCHAR, runs VARCHAR) ### Question: In what season was 577 runs scored? ### Answer: SELECT season FROM table_name_33 WHERE runs = "577"
What opposing team has 20 against?
CREATE TABLE table_name_7 (opposing_team VARCHAR, against VARCHAR)
SELECT opposing_team FROM table_name_7 WHERE against = 20
### Context: CREATE TABLE table_name_7 (opposing_team VARCHAR, against VARCHAR) ### Question: What opposing team has 20 against? ### Answer: SELECT opposing_team FROM table_name_7 WHERE against = 20
Venue for Hawke's bay?
CREATE TABLE table_name_14 (venue VARCHAR, opposing_team VARCHAR)
SELECT venue FROM table_name_14 WHERE opposing_team = "hawke's bay"
### Context: CREATE TABLE table_name_14 (venue VARCHAR, opposing_team VARCHAR) ### Question: Venue for Hawke's bay? ### Answer: SELECT venue FROM table_name_14 WHERE opposing_team = "hawke's bay"
What is the average December, when Game is "36"?
CREATE TABLE table_name_39 (december INTEGER, game VARCHAR)
SELECT AVG(december) FROM table_name_39 WHERE game = 36
### Context: CREATE TABLE table_name_39 (december INTEGER, game VARCHAR) ### Question: What is the average December, when Game is "36"? ### Answer: SELECT AVG(december) FROM table_name_39 WHERE game = 36
What is the lowest Game, when December is greater than 13, and when Score is "5 - 0"?
CREATE TABLE table_name_22 (game INTEGER, december VARCHAR, score VARCHAR)
SELECT MIN(game) FROM table_name_22 WHERE december > 13 AND score = "5 - 0"
### Context: CREATE TABLE table_name_22 (game INTEGER, december VARCHAR, score VARCHAR) ### Question: What is the lowest Game, when December is greater than 13, and when Score is "5 - 0"? ### Answer: SELECT MIN(game) FROM table_name_22 WHERE december > 13 AND score = "5 - 0"
What is the sum of December, when Game is greater than 31, and when Score is "5 - 2"?
CREATE TABLE table_name_61 (december INTEGER, game VARCHAR, score VARCHAR)
SELECT SUM(december) FROM table_name_61 WHERE game > 31 AND score = "5 - 2"
### Context: CREATE TABLE table_name_61 (december INTEGER, game VARCHAR, score VARCHAR) ### Question: What is the sum of December, when Game is greater than 31, and when Score is "5 - 2"? ### Answer: SELECT SUM(december) FROM table_name_61 WHERE game > 31 AND score = "5 - 2"
What is Record, when Game is "36"?
CREATE TABLE table_name_79 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_79 WHERE game = 36
### Context: CREATE TABLE table_name_79 (record VARCHAR, game VARCHAR) ### Question: What is Record, when Game is "36"? ### Answer: SELECT record FROM table_name_79 WHERE game = 36
What was the away team that played against home team Leatherhead?
CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_53 WHERE home_team = "leatherhead"
### Context: CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the away team that played against home team Leatherhead? ### Answer: SELECT away_team FROM table_name_53 WHERE home_team = "leatherhead"
What was the score of the match played against away team Arsenal?
CREATE TABLE table_name_96 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_96 WHERE away_team = "arsenal"
### Context: CREATE TABLE table_name_96 (score VARCHAR, away_team VARCHAR) ### Question: What was the score of the match played against away team Arsenal? ### Answer: SELECT score FROM table_name_96 WHERE away_team = "arsenal"
Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?
CREATE TABLE table_name_48 (total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)
SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = "0.86%" AND _number_of_seats_won > 0
### Context: CREATE TABLE table_name_48 (total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR) ### Question: Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0? ### Answer: SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = "0.86%" AND _number_of_seats_won > 0
Can you tell me the average Total votes that has the # of seats won smaller than 0?
CREATE TABLE table_name_75 (total_votes INTEGER, _number_of_seats_won INTEGER)
SELECT AVG(total_votes) FROM table_name_75 WHERE _number_of_seats_won < 0
### Context: CREATE TABLE table_name_75 (total_votes INTEGER, _number_of_seats_won INTEGER) ### Question: Can you tell me the average Total votes that has the # of seats won smaller than 0? ### Answer: SELECT AVG(total_votes) FROM table_name_75 WHERE _number_of_seats_won < 0
Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?
CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCHAR, candidates_fielded VARCHAR)
SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61
### Context: CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCHAR, candidates_fielded VARCHAR) ### Question: Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61? ### Answer: SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61
Which tournament did the opponent Guillermo Carry play?
CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_60 WHERE opponent = "guillermo carry"
### Context: CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR) ### Question: Which tournament did the opponent Guillermo Carry play? ### Answer: SELECT tournament FROM table_name_60 WHERE opponent = "guillermo carry"
Who was the opponent on April 21, 2008?
CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_44 WHERE date = "april 21, 2008"
### Context: CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on April 21, 2008? ### Answer: SELECT opponent FROM table_name_44 WHERE date = "april 21, 2008"
Who is the opponent on November 22, 2009, clay surface?
CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_46 WHERE surface = "clay" AND date = "november 22, 2009"
### Context: CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Who is the opponent on November 22, 2009, clay surface? ### Answer: SELECT opponent FROM table_name_46 WHERE surface = "clay" AND date = "november 22, 2009"
Which Laps have a Grid larger than 8, and a Rider of anthony west?
CREATE TABLE table_name_60 (laps INTEGER, grid VARCHAR, rider VARCHAR)
SELECT MAX(laps) FROM table_name_60 WHERE grid > 8 AND rider = "anthony west"
### Context: CREATE TABLE table_name_60 (laps INTEGER, grid VARCHAR, rider VARCHAR) ### Question: Which Laps have a Grid larger than 8, and a Rider of anthony west? ### Answer: SELECT MAX(laps) FROM table_name_60 WHERE grid > 8 AND rider = "anthony west"
Which time has a Rider of anthony west?
CREATE TABLE table_name_66 (time VARCHAR, rider VARCHAR)
SELECT time FROM table_name_66 WHERE rider = "anthony west"
### Context: CREATE TABLE table_name_66 (time VARCHAR, rider VARCHAR) ### Question: Which time has a Rider of anthony west? ### Answer: SELECT time FROM table_name_66 WHERE rider = "anthony west"
Which Grid is the highest one that has a Rider of colin edwards, and Laps smaller than 28?
CREATE TABLE table_name_86 (grid INTEGER, rider VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_86 WHERE rider = "colin edwards" AND laps < 28
### Context: CREATE TABLE table_name_86 (grid INTEGER, rider VARCHAR, laps VARCHAR) ### Question: Which Grid is the highest one that has a Rider of colin edwards, and Laps smaller than 28? ### Answer: SELECT MAX(grid) FROM table_name_86 WHERE rider = "colin edwards" AND laps < 28
Which Laps have a Rider of andrea dovizioso?
CREATE TABLE table_name_2 (laps INTEGER, rider VARCHAR)
SELECT MIN(laps) FROM table_name_2 WHERE rider = "andrea dovizioso"
### Context: CREATE TABLE table_name_2 (laps INTEGER, rider VARCHAR) ### Question: Which Laps have a Rider of andrea dovizioso? ### Answer: SELECT MIN(laps) FROM table_name_2 WHERE rider = "andrea dovizioso"
What college/junior/club team had a player selected in round 6?
CREATE TABLE table_name_4 (college_junior_club_team__league_ VARCHAR, round VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_4 WHERE round = 6
### Context: CREATE TABLE table_name_4 (college_junior_club_team__league_ VARCHAR, round VARCHAR) ### Question: What college/junior/club team had a player selected in round 6? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_4 WHERE round = 6
What round of the draft was Stan Adams selected?
CREATE TABLE table_name_59 (round INTEGER, player VARCHAR)
SELECT AVG(round) FROM table_name_59 WHERE player = "stan adams"
### Context: CREATE TABLE table_name_59 (round INTEGER, player VARCHAR) ### Question: What round of the draft was Stan Adams selected? ### Answer: SELECT AVG(round) FROM table_name_59 WHERE player = "stan adams"
What is the attendance for the t7-7 result?
CREATE TABLE table_name_17 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_17 WHERE result = "t7-7"
### Context: CREATE TABLE table_name_17 (attendance VARCHAR, result VARCHAR) ### Question: What is the attendance for the t7-7 result? ### Answer: SELECT attendance FROM table_name_17 WHERE result = "t7-7"
What is the date for 45,000 in attendance?
CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_32 WHERE attendance = "45,000"
### Context: CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR) ### Question: What is the date for 45,000 in attendance? ### Answer: SELECT date FROM table_name_32 WHERE attendance = "45,000"
How many strokes under par was the player who scored 71?
CREATE TABLE table_name_43 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_43 WHERE score = 71
### Context: CREATE TABLE table_name_43 (to_par VARCHAR, score VARCHAR) ### Question: How many strokes under par was the player who scored 71? ### Answer: SELECT to_par FROM table_name_43 WHERE score = 71
What place is Jay Hebert?
CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_60 WHERE player = "jay hebert"
### Context: CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR) ### Question: What place is Jay Hebert? ### Answer: SELECT place FROM table_name_60 WHERE player = "jay hebert"
Which Games lost has Points against of 61, and Points difference smaller than 42?
CREATE TABLE table_name_74 (games_lost INTEGER, points_against VARCHAR, points_difference VARCHAR)
SELECT SUM(games_lost) FROM table_name_74 WHERE points_against = 61 AND points_difference < 42
### Context: CREATE TABLE table_name_74 (games_lost INTEGER, points_against VARCHAR, points_difference VARCHAR) ### Question: Which Games lost has Points against of 61, and Points difference smaller than 42? ### Answer: SELECT SUM(games_lost) FROM table_name_74 WHERE points_against = 61 AND points_difference < 42
Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?
CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR)
SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152
### Context: CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR) ### Question: Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152? ### Answer: SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152
Which Score has a Record of 1-2?
CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_40 WHERE record = "1-2"
### Context: CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR) ### Question: Which Score has a Record of 1-2? ### Answer: SELECT score FROM table_name_40 WHERE record = "1-2"
What is the Record for April 15?
CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_45 WHERE date = "april 15"
### Context: CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR) ### Question: What is the Record for April 15? ### Answer: SELECT record FROM table_name_45 WHERE date = "april 15"
What is the Record for April 13?
CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_14 WHERE date = "april 13"
### Context: CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR) ### Question: What is the Record for April 13? ### Answer: SELECT record FROM table_name_14 WHERE date = "april 13"
On April 15 who is the Home team?
CREATE TABLE table_name_80 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_80 WHERE date = "april 15"
### Context: CREATE TABLE table_name_80 (home VARCHAR, date VARCHAR) ### Question: On April 15 who is the Home team? ### Answer: SELECT home FROM table_name_80 WHERE date = "april 15"
Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?
CREATE TABLE table_name_65 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_65 WHERE date = "december 22, 1985" AND week < 16
### Context: CREATE TABLE table_name_65 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: Which Attendance has a Date of december 22, 1985, and a Week smaller than 16? ### Answer: SELECT SUM(attendance) FROM table_name_65 WHERE date = "december 22, 1985" AND week < 16
Which Attendance has a Result of w 23-21, and a Week smaller than 5?
CREATE TABLE table_name_75 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT AVG(attendance) FROM table_name_75 WHERE result = "w 23-21" AND week < 5
### Context: CREATE TABLE table_name_75 (attendance INTEGER, result VARCHAR, week VARCHAR) ### Question: Which Attendance has a Result of w 23-21, and a Week smaller than 5? ### Answer: SELECT AVG(attendance) FROM table_name_75 WHERE result = "w 23-21" AND week < 5
Which Week has a Result of w 20-13?
CREATE TABLE table_name_20 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_20 WHERE result = "w 20-13"
### Context: CREATE TABLE table_name_20 (week INTEGER, result VARCHAR) ### Question: Which Week has a Result of w 20-13? ### Answer: SELECT AVG(week) FROM table_name_20 WHERE result = "w 20-13"
What are the Japanese characters for the Chinese word 叉焼?
CREATE TABLE table_name_28 (japanese VARCHAR, chinese VARCHAR)
SELECT japanese FROM table_name_28 WHERE chinese = "叉焼"
### Context: CREATE TABLE table_name_28 (japanese VARCHAR, chinese VARCHAR) ### Question: What are the Japanese characters for the Chinese word 叉焼? ### Answer: SELECT japanese FROM table_name_28 WHERE chinese = "叉焼"
What language did the word that means mahjong first come from?
CREATE TABLE table_name_28 (source_language VARCHAR, meaning VARCHAR)
SELECT source_language FROM table_name_28 WHERE meaning = "mahjong"
### Context: CREATE TABLE table_name_28 (source_language VARCHAR, meaning VARCHAR) ### Question: What language did the word that means mahjong first come from? ### Answer: SELECT source_language FROM table_name_28 WHERE meaning = "mahjong"
What is the Romanization of the Mandarin word whose Rōmaji is ūroncha
CREATE TABLE table_name_81 (romanization VARCHAR, source_language VARCHAR, rōmaji VARCHAR)
SELECT romanization FROM table_name_81 WHERE source_language = "mandarin" AND rōmaji = "ūroncha"
### Context: CREATE TABLE table_name_81 (romanization VARCHAR, source_language VARCHAR, rōmaji VARCHAR) ### Question: What is the Romanization of the Mandarin word whose Rōmaji is ūroncha ### Answer: SELECT romanization FROM table_name_81 WHERE source_language = "mandarin" AND rōmaji = "ūroncha"
What language did the word mahjong originate from?
CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR)
SELECT source_language FROM table_name_31 WHERE meaning = "mahjong"
### Context: CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR) ### Question: What language did the word mahjong originate from? ### Answer: SELECT source_language FROM table_name_31 WHERE meaning = "mahjong"
What are the Chinese characters for the word that has a Rōmaji of chāshū?
CREATE TABLE table_name_61 (chinese VARCHAR, rōmaji VARCHAR)
SELECT chinese FROM table_name_61 WHERE rōmaji = "chāshū"
### Context: CREATE TABLE table_name_61 (chinese VARCHAR, rōmaji VARCHAR) ### Question: What are the Chinese characters for the word that has a Rōmaji of chāshū? ### Answer: SELECT chinese FROM table_name_61 WHERE rōmaji = "chāshū"
What was the category of Richard Nixon as President in a year prior to 2009?
CREATE TABLE table_name_3 (category VARCHAR, president VARCHAR, year VARCHAR)
SELECT category FROM table_name_3 WHERE president = "richard nixon" AND year < 2009
### Context: CREATE TABLE table_name_3 (category VARCHAR, president VARCHAR, year VARCHAR) ### Question: What was the category of Richard Nixon as President in a year prior to 2009? ### Answer: SELECT category FROM table_name_3 WHERE president = "richard nixon" AND year < 2009
What is the film that Raymond Massey was nominated for?
CREATE TABLE table_name_94 (film VARCHAR, nominee VARCHAR)
SELECT film FROM table_name_94 WHERE nominee = "raymond massey"
### Context: CREATE TABLE table_name_94 (film VARCHAR, nominee VARCHAR) ### Question: What is the film that Raymond Massey was nominated for? ### Answer: SELECT film FROM table_name_94 WHERE nominee = "raymond massey"
What was the film of Richard Nixon as President in a year newer than 1996?
CREATE TABLE table_name_49 (film VARCHAR, president VARCHAR, year VARCHAR)
SELECT film FROM table_name_49 WHERE president = "richard nixon" AND year > 1996
### Context: CREATE TABLE table_name_49 (film VARCHAR, president VARCHAR, year VARCHAR) ### Question: What was the film of Richard Nixon as President in a year newer than 1996? ### Answer: SELECT film FROM table_name_49 WHERE president = "richard nixon" AND year > 1996
WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh?
CREATE TABLE table_name_3 (partner VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)
SELECT partner FROM table_name_3 WHERE outcome = "winner" AND opponents_in_the_final = "rick leach jim pugh"
### Context: CREATE TABLE table_name_3 (partner VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR) ### Question: WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh? ### Answer: SELECT partner FROM table_name_3 WHERE outcome = "winner" AND opponents_in_the_final = "rick leach jim pugh"
Which Score in the final has a Surface of hard on august 20, 1989?
CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard" AND date = "august 20, 1989"
### Context: CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Which Score in the final has a Surface of hard on august 20, 1989? ### Answer: SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard" AND date = "august 20, 1989"
Name the Outcome which has a Score in the final of 4–6, 4–6 on october 21, 1990?
CREATE TABLE table_name_15 (outcome VARCHAR, score_in_the_final VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_15 WHERE score_in_the_final = "4–6, 4–6" AND date = "october 21, 1990"
### Context: CREATE TABLE table_name_15 (outcome VARCHAR, score_in_the_final VARCHAR, date VARCHAR) ### Question: Name the Outcome which has a Score in the final of 4–6, 4–6 on october 21, 1990? ### Answer: SELECT outcome FROM table_name_15 WHERE score_in_the_final = "4–6, 4–6" AND date = "october 21, 1990"
Which Tournament has a Score in the final of 7–5, 6–4?
CREATE TABLE table_name_2 (tournament VARCHAR, score_in_the_final VARCHAR)
SELECT tournament FROM table_name_2 WHERE score_in_the_final = "7–5, 6–4"
### Context: CREATE TABLE table_name_2 (tournament VARCHAR, score_in_the_final VARCHAR) ### Question: Which Tournament has a Score in the final of 7–5, 6–4? ### Answer: SELECT tournament FROM table_name_2 WHERE score_in_the_final = "7–5, 6–4"
Name the Score which has a Partner of jorge lozano, an Outcome of runner-up, and Opponents in the final of udo riglewski michael stich?
CREATE TABLE table_name_85 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR)
SELECT score_in_the_final FROM table_name_85 WHERE partner = "jorge lozano" AND outcome = "runner-up" AND opponents_in_the_final = "udo riglewski michael stich"
### Context: CREATE TABLE table_name_85 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR) ### Question: Name the Score which has a Partner of jorge lozano, an Outcome of runner-up, and Opponents in the final of udo riglewski michael stich? ### Answer: SELECT score_in_the_final FROM table_name_85 WHERE partner = "jorge lozano" AND outcome = "runner-up" AND opponents_in_the_final = "udo riglewski michael stich"
Name the Date which has Opponents in the final of patrick mcenroe tim wilkison?
CREATE TABLE table_name_12 (date VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_12 WHERE opponents_in_the_final = "patrick mcenroe tim wilkison"
### Context: CREATE TABLE table_name_12 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: Name the Date which has Opponents in the final of patrick mcenroe tim wilkison? ### Answer: SELECT date FROM table_name_12 WHERE opponents_in_the_final = "patrick mcenroe tim wilkison"
What is the total number of goals that have games under 11, debut round over 15, and age of 20 years, 71 days?
CREATE TABLE table_name_86 (goals__2008_ VARCHAR, age_at_debut VARCHAR, games__2008_ VARCHAR, debut_round VARCHAR)
SELECT COUNT(goals__2008_) FROM table_name_86 WHERE games__2008_ < 11 AND debut_round > 15 AND age_at_debut = "20 years, 71 days"
### Context: CREATE TABLE table_name_86 (goals__2008_ VARCHAR, age_at_debut VARCHAR, games__2008_ VARCHAR, debut_round VARCHAR) ### Question: What is the total number of goals that have games under 11, debut round over 15, and age of 20 years, 71 days? ### Answer: SELECT COUNT(goals__2008_) FROM table_name_86 WHERE games__2008_ < 11 AND debut_round > 15 AND age_at_debut = "20 years, 71 days"
What is the name that has a debut round over 14, games under 2, and a club of Melbourne?
CREATE TABLE table_name_93 (name VARCHAR, club VARCHAR, debut_round VARCHAR, games__2008_ VARCHAR)
SELECT name FROM table_name_93 WHERE debut_round > 14 AND games__2008_ < 2 AND club = "melbourne"
### Context: CREATE TABLE table_name_93 (name VARCHAR, club VARCHAR, debut_round VARCHAR, games__2008_ VARCHAR) ### Question: What is the name that has a debut round over 14, games under 2, and a club of Melbourne? ### Answer: SELECT name FROM table_name_93 WHERE debut_round > 14 AND games__2008_ < 2 AND club = "melbourne"
What is the name of team 2 that has 1-2 as the score?
CREATE TABLE table_name_91 (team_2 VARCHAR, score VARCHAR)
SELECT team_2 FROM table_name_91 WHERE score = "1-2"
### Context: CREATE TABLE table_name_91 (team_2 VARCHAR, score VARCHAR) ### Question: What is the name of team 2 that has 1-2 as the score? ### Answer: SELECT team_2 FROM table_name_91 WHERE score = "1-2"
In the 2005 season with a score of 0-4 what is the team 1?
CREATE TABLE table_name_9 (team_1 VARCHAR, season VARCHAR, score VARCHAR)
SELECT team_1 FROM table_name_9 WHERE season = "2005" AND score = "0-4"
### Context: CREATE TABLE table_name_9 (team_1 VARCHAR, season VARCHAR, score VARCHAR) ### Question: In the 2005 season with a score of 0-4 what is the team 1? ### Answer: SELECT team_1 FROM table_name_9 WHERE season = "2005" AND score = "0-4"
Team 2 of Yokohama F. Marinos in the n/a venue had what score?
CREATE TABLE table_name_90 (score VARCHAR, venue VARCHAR, team_2 VARCHAR)
SELECT score FROM table_name_90 WHERE venue = "n/a" AND team_2 = "yokohama f. marinos"
### Context: CREATE TABLE table_name_90 (score VARCHAR, venue VARCHAR, team_2 VARCHAR) ### Question: Team 2 of Yokohama F. Marinos in the n/a venue had what score? ### Answer: SELECT score FROM table_name_90 WHERE venue = "n/a" AND team_2 = "yokohama f. marinos"