question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn?
CREATE TABLE table_name_58 (goals_against INTEGER, points_1 VARCHAR, drawn VARCHAR)
SELECT MIN(goals_against) FROM table_name_58 WHERE points_1 = "18" AND drawn > 8
### Context: CREATE TABLE table_name_58 (goals_against INTEGER, points_1 VARCHAR, drawn VARCHAR) ### Question: What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn? ### Answer: SELECT MIN(goals_against) FROM table_name_58 WHERE points_1 = "18" AND drawn > 8
What is the total number of goals for when the drawn is less than 7, less than 21 games have been lost, and there are 1 of 33 points?
CREATE TABLE table_name_33 (goals_for VARCHAR, points_1 VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT COUNT(goals_for) FROM table_name_33 WHERE drawn < 7 AND lost < 21 AND points_1 = "33"
### Context: CREATE TABLE table_name_33 (goals_for VARCHAR, points_1 VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: What is the total number of goals for when the drawn is less than 7, less than 21 games have been lost, and there are 1 of 33 points? ### Answer: SELECT COUNT(goals_for) FROM table_name_33 WHERE draw...
Which Engine has a Model of sl500, and a Year From larger than 1999?
CREATE TABLE table_name_57 (engine INTEGER, model VARCHAR, year_from VARCHAR)
SELECT MAX(engine) FROM table_name_57 WHERE model = "sl500" AND year_from > 1999
### Context: CREATE TABLE table_name_57 (engine INTEGER, model VARCHAR, year_from VARCHAR) ### Question: Which Engine has a Model of sl500, and a Year From larger than 1999? ### Answer: SELECT MAX(engine) FROM table_name_57 WHERE model = "sl500" AND year_from > 1999
Which Engine has a Model of sl500, and a Chassis smaller than 129.067?
CREATE TABLE table_name_60 (engine INTEGER, model VARCHAR, chassis VARCHAR)
SELECT MIN(engine) FROM table_name_60 WHERE model = "sl500" AND chassis < 129.067
### Context: CREATE TABLE table_name_60 (engine INTEGER, model VARCHAR, chassis VARCHAR) ### Question: Which Engine has a Model of sl500, and a Chassis smaller than 129.067? ### Answer: SELECT MIN(engine) FROM table_name_60 WHERE model = "sl500" AND chassis < 129.067
How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995?
CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR)
SELECT COUNT(engine) FROM table_name_82 WHERE model = "sl600" AND year_from = 1994 AND year_to < 1995
### Context: CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR) ### Question: How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995? ### Answer: SELECT COUNT(engine) FROM table_name_82 WHERE model = "sl600" AND year_from = 1994 AND y...
Which Year To has an Engine of 119.972, and a Chassis smaller than 129.067?
CREATE TABLE table_name_14 (year_to INTEGER, engine VARCHAR, chassis VARCHAR)
SELECT MIN(year_to) FROM table_name_14 WHERE engine = 119.972 AND chassis < 129.067
### Context: CREATE TABLE table_name_14 (year_to INTEGER, engine VARCHAR, chassis VARCHAR) ### Question: Which Year To has an Engine of 119.972, and a Chassis smaller than 129.067? ### Answer: SELECT MIN(year_to) FROM table_name_14 WHERE engine = 119.972 AND chassis < 129.067
What Time has a Show Name of mornings with neil mitchell?
CREATE TABLE table_name_44 (time VARCHAR, show_name VARCHAR)
SELECT time FROM table_name_44 WHERE show_name = "mornings with neil mitchell"
### Context: CREATE TABLE table_name_44 (time VARCHAR, show_name VARCHAR) ### Question: What Time has a Show Name of mornings with neil mitchell? ### Answer: SELECT time FROM table_name_44 WHERE show_name = "mornings with neil mitchell"
What Time has Ad Freq of 15 minutes, and a Show Name of country today?
CREATE TABLE table_name_37 (time VARCHAR, ad_freq VARCHAR, show_name VARCHAR)
SELECT time FROM table_name_37 WHERE ad_freq = "15 minutes" AND show_name = "country today"
### Context: CREATE TABLE table_name_37 (time VARCHAR, ad_freq VARCHAR, show_name VARCHAR) ### Question: What Time has Ad Freq of 15 minutes, and a Show Name of country today? ### Answer: SELECT time FROM table_name_37 WHERE ad_freq = "15 minutes" AND show_name = "country today"
What Time has a Show Name of mornings with neil mitchell?
CREATE TABLE table_name_15 (time VARCHAR, show_name VARCHAR)
SELECT time FROM table_name_15 WHERE show_name = "mornings with neil mitchell"
### Context: CREATE TABLE table_name_15 (time VARCHAR, show_name VARCHAR) ### Question: What Time has a Show Name of mornings with neil mitchell? ### Answer: SELECT time FROM table_name_15 WHERE show_name = "mornings with neil mitchell"
What Local/Networked has a Show Name of nightline?
CREATE TABLE table_name_99 (local_networked VARCHAR, show_name VARCHAR)
SELECT local_networked FROM table_name_99 WHERE show_name = "nightline"
### Context: CREATE TABLE table_name_99 (local_networked VARCHAR, show_name VARCHAR) ### Question: What Local/Networked has a Show Name of nightline? ### Answer: SELECT local_networked FROM table_name_99 WHERE show_name = "nightline"
What News Freq has a Time of 1:00pm–4:00pm?
CREATE TABLE table_name_90 (news_freq VARCHAR, time VARCHAR)
SELECT news_freq FROM table_name_90 WHERE time = "1:00pm–4:00pm"
### Context: CREATE TABLE table_name_90 (news_freq VARCHAR, time VARCHAR) ### Question: What News Freq has a Time of 1:00pm–4:00pm? ### Answer: SELECT news_freq FROM table_name_90 WHERE time = "1:00pm–4:00pm"
What was the ERP W for 96.7 MHz?
CREATE TABLE table_name_44 (erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT erp_w FROM table_name_44 WHERE frequency_mhz = 96.7
### Context: CREATE TABLE table_name_44 (erp_w VARCHAR, frequency_mhz VARCHAR) ### Question: What was the ERP W for 96.7 MHz? ### Answer: SELECT erp_w FROM table_name_44 WHERE frequency_mhz = 96.7
What was the class for Appleton, Wisconsin?
CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR)
SELECT class FROM table_name_96 WHERE city_of_license = "appleton, wisconsin"
### Context: CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR) ### Question: What was the class for Appleton, Wisconsin? ### Answer: SELECT class FROM table_name_96 WHERE city_of_license = "appleton, wisconsin"
What are the transfers in for Hungary?
CREATE TABLE table_name_36 (transfers_in VARCHAR, country VARCHAR)
SELECT transfers_in FROM table_name_36 WHERE country = "hungary"
### Context: CREATE TABLE table_name_36 (transfers_in VARCHAR, country VARCHAR) ### Question: What are the transfers in for Hungary? ### Answer: SELECT transfers_in FROM table_name_36 WHERE country = "hungary"
What are the Transfers out for Peru?
CREATE TABLE table_name_76 (transfers_out VARCHAR, country VARCHAR)
SELECT transfers_out FROM table_name_76 WHERE country = "peru"
### Context: CREATE TABLE table_name_76 (transfers_out VARCHAR, country VARCHAR) ### Question: What are the Transfers out for Peru? ### Answer: SELECT transfers_out FROM table_name_76 WHERE country = "peru"
WHAT POINTS 1 HAD A 22 LOST?
CREATE TABLE table_name_88 (points_1 VARCHAR, lost VARCHAR)
SELECT points_1 FROM table_name_88 WHERE lost = 22
### Context: CREATE TABLE table_name_88 (points_1 VARCHAR, lost VARCHAR) ### Question: WHAT POINTS 1 HAD A 22 LOST? ### Answer: SELECT points_1 FROM table_name_88 WHERE lost = 22
WHAT GOALS AGAINST HAD A GOAL FOR OF 46, AND PLAYED LESS THAN 38?
CREATE TABLE table_name_85 (goals_against INTEGER, goals_for VARCHAR, played VARCHAR)
SELECT SUM(goals_against) FROM table_name_85 WHERE goals_for = 46 AND played < 38
### Context: CREATE TABLE table_name_85 (goals_against INTEGER, goals_for VARCHAR, played VARCHAR) ### Question: WHAT GOALS AGAINST HAD A GOAL FOR OF 46, AND PLAYED LESS THAN 38? ### Answer: SELECT SUM(goals_against) FROM table_name_85 WHERE goals_for = 46 AND played < 38
WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN?
CREATE TABLE table_name_29 (position INTEGER, lost VARCHAR, team VARCHAR)
SELECT SUM(position) FROM table_name_29 WHERE lost = 6 AND team = "caernarfon town"
### Context: CREATE TABLE table_name_29 (position INTEGER, lost VARCHAR, team VARCHAR) ### Question: WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN? ### Answer: SELECT SUM(position) FROM table_name_29 WHERE lost = 6 AND team = "caernarfon town"
WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3?
CREATE TABLE table_name_81 (played INTEGER, points_1 VARCHAR, position VARCHAR)
SELECT SUM(played) FROM table_name_81 WHERE points_1 = "53" AND position > 3
### Context: CREATE TABLE table_name_81 (played INTEGER, points_1 VARCHAR, position VARCHAR) ### Question: WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3? ### Answer: SELECT SUM(played) FROM table_name_81 WHERE points_1 = "53" AND position > 3
WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN?
CREATE TABLE table_name_15 (lost INTEGER, drawn VARCHAR, team VARCHAR)
SELECT MAX(lost) FROM table_name_15 WHERE drawn = 11 AND team = "leek town"
### Context: CREATE TABLE table_name_15 (lost INTEGER, drawn VARCHAR, team VARCHAR) ### Question: WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN? ### Answer: SELECT MAX(lost) FROM table_name_15 WHERE drawn = 11 AND team = "leek town"
Which player has a subtotal of more than 3 and more than 8 in round 1?
CREATE TABLE table_name_59 (player VARCHAR, subtotal VARCHAR, round_1 VARCHAR)
SELECT player FROM table_name_59 WHERE subtotal > 3 AND round_1 > 8
### Context: CREATE TABLE table_name_59 (player VARCHAR, subtotal VARCHAR, round_1 VARCHAR) ### Question: Which player has a subtotal of more than 3 and more than 8 in round 1? ### Answer: SELECT player FROM table_name_59 WHERE subtotal > 3 AND round_1 > 8
What is the ranking for the United States when the money is $200?
CREATE TABLE table_name_52 (place VARCHAR, country VARCHAR, money___$__ VARCHAR)
SELECT place FROM table_name_52 WHERE country = "united states" AND money___$__ = "200"
### Context: CREATE TABLE table_name_52 (place VARCHAR, country VARCHAR, money___$__ VARCHAR) ### Question: What is the ranking for the United States when the money is $200? ### Answer: SELECT place FROM table_name_52 WHERE country = "united states" AND money___$__ = "200"
What is the ranking when Archie Compston is the player and the money is $73?
CREATE TABLE table_name_6 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT place FROM table_name_6 WHERE money___$__ = "73" AND player = "archie compston"
### Context: CREATE TABLE table_name_6 (place VARCHAR, money___$__ VARCHAR, player VARCHAR) ### Question: What is the ranking when Archie Compston is the player and the money is $73? ### Answer: SELECT place FROM table_name_6 WHERE money___$__ = "73" AND player = "archie compston"
Which country has a to par less than 19 and a score of 75-79-77-73=304?
CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT country FROM table_name_92 WHERE to_par < 19 AND score = 75 - 79 - 77 - 73 = 304
### Context: CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: Which country has a to par less than 19 and a score of 75-79-77-73=304? ### Answer: SELECT country FROM table_name_92 WHERE to_par < 19 AND score = 75 - 79 - 77 - 73 = 304
What is the score for the United States when Harry Hampton is the player and the money is $73?
CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR)
SELECT score FROM table_name_23 WHERE country = "united states" AND money___$__ = "73" AND player = "harry hampton"
### Context: CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR) ### Question: What is the score for the United States when Harry Hampton is the player and the money is $73? ### Answer: SELECT score FROM table_name_23 WHERE country = "united states" AND money___$__ = "73" AN...
What is the greatest 2010 for Miami, Fl?
CREATE TABLE table_name_94 (state VARCHAR, major_city_served VARCHAR)
SELECT MAX(2010) FROM table_name_94 WHERE state = "fl" AND major_city_served = "miami"
### Context: CREATE TABLE table_name_94 (state VARCHAR, major_city_served VARCHAR) ### Question: What is the greatest 2010 for Miami, Fl? ### Answer: SELECT MAX(2010) FROM table_name_94 WHERE state = "fl" AND major_city_served = "miami"
What is the North American release date of the remake with a European release date on 2013-03-20?
CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date VARCHAR)
SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = "2013-03-20"
### Context: CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date VARCHAR) ### Question: What is the North American release date of the remake with a European release date on 2013-03-20? ### Answer: SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = "20...
What is the series with a North American release date on 2013-09-03?
CREATE TABLE table_name_12 (series VARCHAR, north_american_release_date VARCHAR)
SELECT series FROM table_name_12 WHERE north_american_release_date = "2013-09-03"
### Context: CREATE TABLE table_name_12 (series VARCHAR, north_american_release_date VARCHAR) ### Question: What is the series with a North American release date on 2013-09-03? ### Answer: SELECT series FROM table_name_12 WHERE north_american_release_date = "2013-09-03"
What is the US cash box before 1978 with a US billboard of 35?
CREATE TABLE table_name_20 (us_cash_box VARCHAR, year VARCHAR, us_billboard VARCHAR)
SELECT us_cash_box FROM table_name_20 WHERE year < 1978 AND us_billboard = 35
### Context: CREATE TABLE table_name_20 (us_cash_box VARCHAR, year VARCHAR, us_billboard VARCHAR) ### Question: What is the US cash box before 1978 with a US billboard of 35? ### Answer: SELECT us_cash_box FROM table_name_20 WHERE year < 1978 AND us_billboard = 35
What is the country of the player with a t6 place?
CREATE TABLE table_name_33 (country VARCHAR, place VARCHAR)
SELECT country FROM table_name_33 WHERE place = "t6"
### Context: CREATE TABLE table_name_33 (country VARCHAR, place VARCHAR) ### Question: What is the country of the player with a t6 place? ### Answer: SELECT country FROM table_name_33 WHERE place = "t6"
What is the place of the player with a 72-71-65=208 score?
CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_33 WHERE score = 72 - 71 - 65 = 208
### Context: CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR) ### Question: What is the place of the player with a 72-71-65=208 score? ### Answer: SELECT place FROM table_name_33 WHERE score = 72 - 71 - 65 = 208
What country is player thomas bjørn from?
CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_96 WHERE player = "thomas bjørn"
### Context: CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR) ### Question: What country is player thomas bjørn from? ### Answer: SELECT country FROM table_name_96 WHERE player = "thomas bjørn"
What is the place of the player with a 66-68-70=204 score?
CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204
### Context: CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR) ### Question: What is the place of the player with a 66-68-70=204 score? ### Answer: SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204
What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5?
CREATE TABLE table_name_53 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, points VARCHAR)
SELECT COUNT(wins) FROM table_name_53 WHERE goals_against > 41 AND points = 29 AND draws > 5
### Context: CREATE TABLE table_name_53 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, points VARCHAR) ### Question: What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5? ### Answer: SELECT COUNT(wins) FROM table_name_53 WHERE goals_against > 41 AND points...
What is the number of draws when played is smaller than 30?
CREATE TABLE table_name_74 (draws VARCHAR, played INTEGER)
SELECT COUNT(draws) FROM table_name_74 WHERE played < 30
### Context: CREATE TABLE table_name_74 (draws VARCHAR, played INTEGER) ### Question: What is the number of draws when played is smaller than 30? ### Answer: SELECT COUNT(draws) FROM table_name_74 WHERE played < 30
What is the number of losses when the goal difference was -8, and position is smaller than 10?
CREATE TABLE table_name_37 (losses VARCHAR, goal_difference VARCHAR, position VARCHAR)
SELECT COUNT(losses) FROM table_name_37 WHERE goal_difference = -8 AND position < 10
### Context: CREATE TABLE table_name_37 (losses VARCHAR, goal_difference VARCHAR, position VARCHAR) ### Question: What is the number of losses when the goal difference was -8, and position is smaller than 10? ### Answer: SELECT COUNT(losses) FROM table_name_37 WHERE goal_difference = -8 AND position < 10
What is the wins number when the points were smaller than 27, and goals against was 41?
CREATE TABLE table_name_76 (wins INTEGER, points VARCHAR, goals_against VARCHAR)
SELECT SUM(wins) FROM table_name_76 WHERE points < 27 AND goals_against = 41
### Context: CREATE TABLE table_name_76 (wins INTEGER, points VARCHAR, goals_against VARCHAR) ### Question: What is the wins number when the points were smaller than 27, and goals against was 41? ### Answer: SELECT SUM(wins) FROM table_name_76 WHERE points < 27 AND goals_against = 41
What is the losses when the goal difference is larger than 26?
CREATE TABLE table_name_45 (losses INTEGER, goal_difference INTEGER)
SELECT MAX(losses) FROM table_name_45 WHERE goal_difference > 26
### Context: CREATE TABLE table_name_45 (losses INTEGER, goal_difference INTEGER) ### Question: What is the losses when the goal difference is larger than 26? ### Answer: SELECT MAX(losses) FROM table_name_45 WHERE goal_difference > 26
What is the goals for when played is larger than 30?
CREATE TABLE table_name_72 (goals_for INTEGER, played INTEGER)
SELECT MIN(goals_for) FROM table_name_72 WHERE played > 30
### Context: CREATE TABLE table_name_72 (goals_for INTEGER, played INTEGER) ### Question: What is the goals for when played is larger than 30? ### Answer: SELECT MIN(goals_for) FROM table_name_72 WHERE played > 30
What is the score on 2 October 2011?
CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_72 WHERE date = "2 october 2011"
### Context: CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR) ### Question: What is the score on 2 October 2011? ### Answer: SELECT score FROM table_name_72 WHERE date = "2 october 2011"
What is the surface of the tournament with a runner-up outcome and dudi sela as the opponent?
CREATE TABLE table_name_59 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_59 WHERE outcome = "runner-up" AND opponent = "dudi sela"
### Context: CREATE TABLE table_name_59 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR) ### Question: What is the surface of the tournament with a runner-up outcome and dudi sela as the opponent? ### Answer: SELECT surface FROM table_name_59 WHERE outcome = "runner-up" AND opponent = "dudi sela"
Who was the shooter for the WC Beijing event?
CREATE TABLE table_name_75 (shooter VARCHAR, event VARCHAR)
SELECT shooter FROM table_name_75 WHERE event = "wc beijing"
### Context: CREATE TABLE table_name_75 (shooter VARCHAR, event VARCHAR) ### Question: Who was the shooter for the WC Beijing event? ### Answer: SELECT shooter FROM table_name_75 WHERE event = "wc beijing"
With Olympic Bronze Medalist as the total what are the score points?
CREATE TABLE table_name_65 (score_points VARCHAR, total VARCHAR)
SELECT score_points FROM table_name_65 WHERE total = "olympic bronze medalist"
### Context: CREATE TABLE table_name_65 (score_points VARCHAR, total VARCHAR) ### Question: With Olympic Bronze Medalist as the total what are the score points? ### Answer: SELECT score_points FROM table_name_65 WHERE total = "olympic bronze medalist"
With a total of 11, and 10 rank points, what are the score points?
CREATE TABLE table_name_25 (score_points VARCHAR, rank_points VARCHAR, total VARCHAR)
SELECT score_points FROM table_name_25 WHERE rank_points = "10" AND total = "11"
### Context: CREATE TABLE table_name_25 (score_points VARCHAR, rank_points VARCHAR, total VARCHAR) ### Question: With a total of 11, and 10 rank points, what are the score points? ### Answer: SELECT score_points FROM table_name_25 WHERE rank_points = "10" AND total = "11"
Who is the shooter with 15 rank points, and 0 score points?
CREATE TABLE table_name_56 (shooter VARCHAR, rank_points VARCHAR, score_points VARCHAR)
SELECT shooter FROM table_name_56 WHERE rank_points = "15" AND score_points = "0"
### Context: CREATE TABLE table_name_56 (shooter VARCHAR, rank_points VARCHAR, score_points VARCHAR) ### Question: Who is the shooter with 15 rank points, and 0 score points? ### Answer: SELECT shooter FROM table_name_56 WHERE rank_points = "15" AND score_points = "0"
With a total of 11, what is the score points?
CREATE TABLE table_name_32 (score_points VARCHAR, total VARCHAR)
SELECT score_points FROM table_name_32 WHERE total = "11"
### Context: CREATE TABLE table_name_32 (score_points VARCHAR, total VARCHAR) ### Question: With a total of 11, what is the score points? ### Answer: SELECT score_points FROM table_name_32 WHERE total = "11"
Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes?
CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR)
SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = "branxholme-wallacedale" AND byes < 2
### Context: CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR) ### Question: Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes? ### Answer: SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = "branxholme-wallacedale" AND byes < 2
Which draws have an average of 14 wins?
CREATE TABLE table_name_89 (draws INTEGER, wins VARCHAR)
SELECT AVG(draws) FROM table_name_89 WHERE wins = 14
### Context: CREATE TABLE table_name_89 (draws INTEGER, wins VARCHAR) ### Question: Which draws have an average of 14 wins? ### Answer: SELECT AVG(draws) FROM table_name_89 WHERE wins = 14
How many wins have 16 losses and an Against smaller than 3213?
CREATE TABLE table_name_82 (wins INTEGER, losses VARCHAR, against VARCHAR)
SELECT SUM(wins) FROM table_name_82 WHERE losses = 16 AND against < 3213
### Context: CREATE TABLE table_name_82 (wins INTEGER, losses VARCHAR, against VARCHAR) ### Question: How many wins have 16 losses and an Against smaller than 3213? ### Answer: SELECT SUM(wins) FROM table_name_82 WHERE losses = 16 AND against < 3213
How many Draws have a South West DFL of tyrendarra, and less than 10 wins?
CREATE TABLE table_name_83 (draws INTEGER, south_west_dfl VARCHAR, wins VARCHAR)
SELECT SUM(draws) FROM table_name_83 WHERE south_west_dfl = "tyrendarra" AND wins < 10
### Context: CREATE TABLE table_name_83 (draws INTEGER, south_west_dfl VARCHAR, wins VARCHAR) ### Question: How many Draws have a South West DFL of tyrendarra, and less than 10 wins? ### Answer: SELECT SUM(draws) FROM table_name_83 WHERE south_west_dfl = "tyrendarra" AND wins < 10
What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret?
CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)
SELECT circuit FROM table_name_20 WHERE winning_constructor = "bugatti" AND winning_driver = "edward bret"
### Context: CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR) ### Question: What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret? ### Answer: SELECT circuit FROM table_name_20 WHERE winning_constructor = "bugatti" AND winning_driver = "e...
What Circuit has a Date of 25 july?
CREATE TABLE table_name_55 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_55 WHERE date = "25 july"
### Context: CREATE TABLE table_name_55 (circuit VARCHAR, date VARCHAR) ### Question: What Circuit has a Date of 25 july? ### Answer: SELECT circuit FROM table_name_55 WHERE date = "25 july"
What Date has a Name of thuin circuit?
CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR)
SELECT date FROM table_name_26 WHERE name = "thuin circuit"
### Context: CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR) ### Question: What Date has a Name of thuin circuit? ### Answer: SELECT date FROM table_name_26 WHERE name = "thuin circuit"
What Name has a Winning constructor of bugatti, and a Winning driver of louis chiron?
CREATE TABLE table_name_78 (name VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)
SELECT name FROM table_name_78 WHERE winning_constructor = "bugatti" AND winning_driver = "louis chiron"
### Context: CREATE TABLE table_name_78 (name VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR) ### Question: What Name has a Winning constructor of bugatti, and a Winning driver of louis chiron? ### Answer: SELECT name FROM table_name_78 WHERE winning_constructor = "bugatti" AND winning_driver = "louis chi...
What Winning driver has a Name of mugello circuit?
CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR)
SELECT winning_driver FROM table_name_55 WHERE name = "mugello circuit"
### Context: CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR) ### Question: What Winning driver has a Name of mugello circuit? ### Answer: SELECT winning_driver FROM table_name_55 WHERE name = "mugello circuit"
What Winning driver has a Winning constructor of talbot?
CREATE TABLE table_name_59 (winning_driver VARCHAR, winning_constructor VARCHAR)
SELECT winning_driver FROM table_name_59 WHERE winning_constructor = "talbot"
### Context: CREATE TABLE table_name_59 (winning_driver VARCHAR, winning_constructor VARCHAR) ### Question: What Winning driver has a Winning constructor of talbot? ### Answer: SELECT winning_driver FROM table_name_59 WHERE winning_constructor = "talbot"
What is the away team of the match with a 356 attendance?
CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR)
SELECT away_team FROM table_name_64 WHERE attendance = 356
### Context: CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR) ### Question: What is the away team of the match with a 356 attendance? ### Answer: SELECT away_team FROM table_name_64 WHERE attendance = 356
Which player won in 1993?
CREATE TABLE table_name_21 (player VARCHAR, year_s__won VARCHAR)
SELECT player FROM table_name_21 WHERE year_s__won = "1993"
### Context: CREATE TABLE table_name_21 (player VARCHAR, year_s__won VARCHAR) ### Question: Which player won in 1993? ### Answer: SELECT player FROM table_name_21 WHERE year_s__won = "1993"
How many to pars were won in 1993?
CREATE TABLE table_name_86 (to_par VARCHAR, year_s__won VARCHAR)
SELECT COUNT(to_par) FROM table_name_86 WHERE year_s__won = "1993"
### Context: CREATE TABLE table_name_86 (to_par VARCHAR, year_s__won VARCHAR) ### Question: How many to pars were won in 1993? ### Answer: SELECT COUNT(to_par) FROM table_name_86 WHERE year_s__won = "1993"
What is Zimbabwe's total with a to par higher than 5?
CREATE TABLE table_name_34 (total INTEGER, country VARCHAR, to_par VARCHAR)
SELECT AVG(total) FROM table_name_34 WHERE country = "zimbabwe" AND to_par > 5
### Context: CREATE TABLE table_name_34 (total INTEGER, country VARCHAR, to_par VARCHAR) ### Question: What is Zimbabwe's total with a to par higher than 5? ### Answer: SELECT AVG(total) FROM table_name_34 WHERE country = "zimbabwe" AND to_par > 5
What is the total for 1986 with a to par higher than 6?
CREATE TABLE table_name_87 (total VARCHAR, year_s__won VARCHAR, to_par VARCHAR)
SELECT COUNT(total) FROM table_name_87 WHERE year_s__won = "1986" AND to_par > 6
### Context: CREATE TABLE table_name_87 (total VARCHAR, year_s__won VARCHAR, to_par VARCHAR) ### Question: What is the total for 1986 with a to par higher than 6? ### Answer: SELECT COUNT(total) FROM table_name_87 WHERE year_s__won = "1986" AND to_par > 6
What is the total for 1984 for the team with 100 points total and more than 3 seasons?
CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR)
SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3
### Context: CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR) ### Question: What is the total for 1984 for the team with 100 points total and more than 3 seasons? ### Answer: SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3
What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982?
CREATE TABLE table_name_99 (total_points VARCHAR, points_average VARCHAR)
SELECT COUNT(total_points) FROM table_name_99 WHERE 1982 = "n/a" AND points_average > 34 AND 1984 > 37
### Context: CREATE TABLE table_name_99 (total_points VARCHAR, points_average VARCHAR) ### Question: What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982? ### Answer: SELECT COUNT(total_points) FROM table_name_99 WHERE 1982 = "n/a" AND points_average > 34 AND 1...
What team had 3 seasons and fewer than 27 in 1984?
CREATE TABLE table_name_71 (team VARCHAR, seasons VARCHAR)
SELECT team FROM table_name_71 WHERE seasons = 3 AND 1984 < 27
### Context: CREATE TABLE table_name_71 (team VARCHAR, seasons VARCHAR) ### Question: What team had 3 seasons and fewer than 27 in 1984? ### Answer: SELECT team FROM table_name_71 WHERE seasons = 3 AND 1984 < 27
What is the number of seasons for the team with a total fewer than 24?
CREATE TABLE table_name_45 (seasons INTEGER, total_points INTEGER)
SELECT SUM(seasons) FROM table_name_45 WHERE total_points < 24
### Context: CREATE TABLE table_name_45 (seasons INTEGER, total_points INTEGER) ### Question: What is the number of seasons for the team with a total fewer than 24? ### Answer: SELECT SUM(seasons) FROM table_name_45 WHERE total_points < 24
What is the weight of the player from club panionios g.c. and was born on 1975-05-21?
CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR)
SELECT weight FROM table_name_70 WHERE club = "panionios g.c." AND date_of_birth = "1975-05-21"
### Context: CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR) ### Question: What is the weight of the player from club panionios g.c. and was born on 1975-05-21? ### Answer: SELECT weight FROM table_name_70 WHERE club = "panionios g.c." AND date_of_birth = "1975-05-21"
How much Height of ground station(m) has a Name of lutersee, and a Height of mountain station(m) larger than 2398?
CREATE TABLE table_name_35 (height_of_ground_station_m_ VARCHAR, name VARCHAR, height_of_mountain_station_m_ VARCHAR)
SELECT COUNT(height_of_ground_station_m_) FROM table_name_35 WHERE name = "lutersee" AND height_of_mountain_station_m_ > 2398
### Context: CREATE TABLE table_name_35 (height_of_ground_station_m_ VARCHAR, name VARCHAR, height_of_mountain_station_m_ VARCHAR) ### Question: How much Height of ground station(m) has a Name of lutersee, and a Height of mountain station(m) larger than 2398? ### Answer: SELECT COUNT(height_of_ground_station_m_) FROM t...
Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336?
CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR)
SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = "lager 1" AND slope_length < 336
### Context: CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR) ### Question: Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336? ### An...
Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name or route of alpmatten 1?
CREATE TABLE table_name_43 (slope_length VARCHAR, name_or_route VARCHAR, construction_year_s_ VARCHAR, type VARCHAR, elevation_groundstation VARCHAR)
SELECT slope_length FROM table_name_43 WHERE type = "surface lift" AND elevation_groundstation < 1974 AND construction_year_s_ = "1971" AND name_or_route = "alpmatten 1"
### Context: CREATE TABLE table_name_43 (slope_length VARCHAR, name_or_route VARCHAR, construction_year_s_ VARCHAR, type VARCHAR, elevation_groundstation VARCHAR) ### Question: Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name...
What is the lowest pick that has arizona cardinals as the NFL club?
CREATE TABLE table_name_43 (pick INTEGER, nfl_club VARCHAR)
SELECT MIN(pick) FROM table_name_43 WHERE nfl_club = "arizona cardinals"
### Context: CREATE TABLE table_name_43 (pick INTEGER, nfl_club VARCHAR) ### Question: What is the lowest pick that has arizona cardinals as the NFL club? ### Answer: SELECT MIN(pick) FROM table_name_43 WHERE nfl_club = "arizona cardinals"
What round has a pick less than 189, with arizona cardinals as the NFL club?
CREATE TABLE table_name_4 (round VARCHAR, pick VARCHAR, nfl_club VARCHAR)
SELECT round FROM table_name_4 WHERE pick < 189 AND nfl_club = "arizona cardinals"
### Context: CREATE TABLE table_name_4 (round VARCHAR, pick VARCHAR, nfl_club VARCHAR) ### Question: What round has a pick less than 189, with arizona cardinals as the NFL club? ### Answer: SELECT round FROM table_name_4 WHERE pick < 189 AND nfl_club = "arizona cardinals"
What player has defensive back as the position, with a round less than 2?
CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, round VARCHAR)
SELECT player FROM table_name_19 WHERE position = "defensive back" AND round < 2
### Context: CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, round VARCHAR) ### Question: What player has defensive back as the position, with a round less than 2? ### Answer: SELECT player FROM table_name_19 WHERE position = "defensive back" AND round < 2
What lowest round has orlando pace as the player?
CREATE TABLE table_name_3 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_3 WHERE player = "orlando pace"
### Context: CREATE TABLE table_name_3 (round INTEGER, player VARCHAR) ### Question: What lowest round has orlando pace as the player? ### Answer: SELECT MIN(round) FROM table_name_3 WHERE player = "orlando pace"
What was the location when the opponent was Seattle Supersonics?
CREATE TABLE table_name_6 (location_attendance VARCHAR, opponent VARCHAR)
SELECT location_attendance FROM table_name_6 WHERE opponent = "seattle supersonics"
### Context: CREATE TABLE table_name_6 (location_attendance VARCHAR, opponent VARCHAR) ### Question: What was the location when the opponent was Seattle Supersonics? ### Answer: SELECT location_attendance FROM table_name_6 WHERE opponent = "seattle supersonics"
What was the record for less than 78 games and a score of 114–109 (ot)?
CREATE TABLE table_name_69 (record VARCHAR, game VARCHAR, score VARCHAR)
SELECT record FROM table_name_69 WHERE game < 78 AND score = "114–109 (ot)"
### Context: CREATE TABLE table_name_69 (record VARCHAR, game VARCHAR, score VARCHAR) ### Question: What was the record for less than 78 games and a score of 114–109 (ot)? ### Answer: SELECT record FROM table_name_69 WHERE game < 78 AND score = "114–109 (ot)"
Who was the opponent for game 75?
CREATE TABLE table_name_96 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_96 WHERE game = 75
### Context: CREATE TABLE table_name_96 (opponent VARCHAR, game VARCHAR) ### Question: Who was the opponent for game 75? ### Answer: SELECT opponent FROM table_name_96 WHERE game = 75
Which Wrestler plays for Team Batista which was Elimated by Orton on Elimination 8?
CREATE TABLE table_name_3 (wrestler VARCHAR, elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR)
SELECT wrestler FROM table_name_3 WHERE team = "team batista" AND eliminated_by = "orton" AND elimination = "8"
### Context: CREATE TABLE table_name_3 (wrestler VARCHAR, elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR) ### Question: Which Wrestler plays for Team Batista which was Elimated by Orton on Elimination 8? ### Answer: SELECT wrestler FROM table_name_3 WHERE team = "team batista" AND eliminated_by = "orton" AND ...
What time was the Wrestler Henry eliminated by Batista?
CREATE TABLE table_name_12 (time VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)
SELECT time FROM table_name_12 WHERE eliminated_by = "batista" AND wrestler = "henry"
### Context: CREATE TABLE table_name_12 (time VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR) ### Question: What time was the Wrestler Henry eliminated by Batista? ### Answer: SELECT time FROM table_name_12 WHERE eliminated_by = "batista" AND wrestler = "henry"
Which Elimination Move is listed at Elimination 8 for Team Batista?
CREATE TABLE table_name_90 (elimination VARCHAR, team VARCHAR)
SELECT elimination AS Move FROM table_name_90 WHERE team = "team batista" AND elimination = "8"
### Context: CREATE TABLE table_name_90 (elimination VARCHAR, team VARCHAR) ### Question: Which Elimination Move is listed at Elimination 8 for Team Batista? ### Answer: SELECT elimination AS Move FROM table_name_90 WHERE team = "team batista" AND elimination = "8"
Which Elimination move is listed against Team Orton, Eliminated by Batista against Elimination number 7?
CREATE TABLE table_name_25 (elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR)
SELECT elimination AS Move FROM table_name_25 WHERE team = "team orton" AND eliminated_by = "batista" AND elimination = "7"
### Context: CREATE TABLE table_name_25 (elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR) ### Question: Which Elimination move is listed against Team Orton, Eliminated by Batista against Elimination number 7? ### Answer: SELECT elimination AS Move FROM table_name_25 WHERE team = "team orton" AND eliminated_by ...
What Elimination Move is listed against Wrestler Henry, Eliminated by Batista?
CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)
SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry"
### Context: CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR) ### Question: What Elimination Move is listed against Wrestler Henry, Eliminated by Batista? ### Answer: SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry"
What is the Elimination move listed against Regal?
CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR)
SELECT elimination AS Move FROM table_name_28 WHERE wrestler = "regal"
### Context: CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR) ### Question: What is the Elimination move listed against Regal? ### Answer: SELECT elimination AS Move FROM table_name_28 WHERE wrestler = "regal"
Name the Total of jeff sluman?
CREATE TABLE table_name_76 (total INTEGER, player VARCHAR)
SELECT AVG(total) FROM table_name_76 WHERE player = "jeff sluman"
### Context: CREATE TABLE table_name_76 (total INTEGER, player VARCHAR) ### Question: Name the Total of jeff sluman? ### Answer: SELECT AVG(total) FROM table_name_76 WHERE player = "jeff sluman"
Name the Total of australia and a To par smaller than 7?
CREATE TABLE table_name_48 (total INTEGER, country VARCHAR, to_par VARCHAR)
SELECT MIN(total) FROM table_name_48 WHERE country = "australia" AND to_par < 7
### Context: CREATE TABLE table_name_48 (total INTEGER, country VARCHAR, to_par VARCHAR) ### Question: Name the Total of australia and a To par smaller than 7? ### Answer: SELECT MIN(total) FROM table_name_48 WHERE country = "australia" AND to_par < 7
Name the To par that has a Year(s) won of 1988 and a Total smaller than 148?
CREATE TABLE table_name_31 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)
SELECT MAX(to_par) FROM table_name_31 WHERE year_s__won = "1988" AND total < 148
### Context: CREATE TABLE table_name_31 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR) ### Question: Name the To par that has a Year(s) won of 1988 and a Total smaller than 148? ### Answer: SELECT MAX(to_par) FROM table_name_31 WHERE year_s__won = "1988" AND total < 148
Which Number has a Home Club of broomstones, and a Year End smaller than 1999?
CREATE TABLE table_name_79 (number INTEGER, home_club VARCHAR, year_end VARCHAR)
SELECT MIN(number) FROM table_name_79 WHERE home_club = "broomstones" AND year_end < 1999
### Context: CREATE TABLE table_name_79 (number INTEGER, home_club VARCHAR, year_end VARCHAR) ### Question: Which Number has a Home Club of broomstones, and a Year End smaller than 1999? ### Answer: SELECT MIN(number) FROM table_name_79 WHERE home_club = "broomstones" AND year_end < 1999
Which Year Start has a Number of 28?
CREATE TABLE table_name_41 (year_start INTEGER, number VARCHAR)
SELECT MAX(year_start) FROM table_name_41 WHERE number = 28
### Context: CREATE TABLE table_name_41 (year_start INTEGER, number VARCHAR) ### Question: Which Year Start has a Number of 28? ### Answer: SELECT MAX(year_start) FROM table_name_41 WHERE number = 28
Which Number has a Name of hill, lucius t.?
CREATE TABLE table_name_41 (number INTEGER, name VARCHAR)
SELECT MAX(number) FROM table_name_41 WHERE name = "hill, lucius t."
### Context: CREATE TABLE table_name_41 (number INTEGER, name VARCHAR) ### Question: Which Number has a Name of hill, lucius t.? ### Answer: SELECT MAX(number) FROM table_name_41 WHERE name = "hill, lucius t."
Which Number has a Year Start smaller than 1874, and a Year End larger than 1873?
CREATE TABLE table_name_13 (number INTEGER, year_start VARCHAR, year_end VARCHAR)
SELECT MAX(number) FROM table_name_13 WHERE year_start < 1874 AND year_end > 1873
### Context: CREATE TABLE table_name_13 (number INTEGER, year_start VARCHAR, year_end VARCHAR) ### Question: Which Number has a Year Start smaller than 1874, and a Year End larger than 1873? ### Answer: SELECT MAX(number) FROM table_name_13 WHERE year_start < 1874 AND year_end > 1873
Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984?
CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR)
SELECT AVG(number) FROM table_name_90 WHERE name = "cooper, c. kenneth" AND year_end > 1984
### Context: CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR) ### Question: Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984? ### Answer: SELECT AVG(number) FROM table_name_90 WHERE name = "cooper, c. kenneth" AND year_end > 1984
What is Venue, when Status is "Test Match", and when Against is "12"?
CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR)
SELECT venue FROM table_name_16 WHERE status = "test match" AND against = 12
### Context: CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR) ### Question: What is Venue, when Status is "Test Match", and when Against is "12"? ### Answer: SELECT venue FROM table_name_16 WHERE status = "test match" AND against = 12
What is Opposing Teams, when Date is "11/10/1991"?
CREATE TABLE table_name_81 (opposing_teams VARCHAR, date VARCHAR)
SELECT opposing_teams FROM table_name_81 WHERE date = "11/10/1991"
### Context: CREATE TABLE table_name_81 (opposing_teams VARCHAR, date VARCHAR) ### Question: What is Opposing Teams, when Date is "11/10/1991"? ### Answer: SELECT opposing_teams FROM table_name_81 WHERE date = "11/10/1991"
What is Date, when Opposing Teams is "Australia", and when Venue is "Twickenham , London"?
CREATE TABLE table_name_79 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR)
SELECT date FROM table_name_79 WHERE opposing_teams = "australia" AND venue = "twickenham , london"
### Context: CREATE TABLE table_name_79 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR) ### Question: What is Date, when Opposing Teams is "Australia", and when Venue is "Twickenham , London"? ### Answer: SELECT date FROM table_name_79 WHERE opposing_teams = "australia" AND venue = "twickenham , london"
What is Against, when Opposing Teams is "Australia", and when Date is "27/07/1991"?
CREATE TABLE table_name_12 (against VARCHAR, opposing_teams VARCHAR, date VARCHAR)
SELECT against FROM table_name_12 WHERE opposing_teams = "australia" AND date = "27/07/1991"
### Context: CREATE TABLE table_name_12 (against VARCHAR, opposing_teams VARCHAR, date VARCHAR) ### Question: What is Against, when Opposing Teams is "Australia", and when Date is "27/07/1991"? ### Answer: SELECT against FROM table_name_12 WHERE opposing_teams = "australia" AND date = "27/07/1991"
What is the tie no of the game where exeter city was the home team?
CREATE TABLE table_name_36 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_36 WHERE home_team = "exeter city"
### Context: CREATE TABLE table_name_36 (tie_no VARCHAR, home_team VARCHAR) ### Question: What is the tie no of the game where exeter city was the home team? ### Answer: SELECT tie_no FROM table_name_36 WHERE home_team = "exeter city"
What is the score of the game against away team exeter city on 10 jan 1990?
CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_70 WHERE date = "10 jan 1990" AND away_team = "exeter city"
### Context: CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: What is the score of the game against away team exeter city on 10 jan 1990? ### Answer: SELECT score FROM table_name_70 WHERE date = "10 jan 1990" AND away_team = "exeter city"
What date did home team liverpool play?
CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_70 WHERE home_team = "liverpool"
### Context: CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR) ### Question: What date did home team liverpool play? ### Answer: SELECT date FROM table_name_70 WHERE home_team = "liverpool"
What was the score of the game against away team crewe alexandra?
CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_3 WHERE away_team = "crewe alexandra"
### Context: CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR) ### Question: What was the score of the game against away team crewe alexandra? ### Answer: SELECT score FROM table_name_3 WHERE away_team = "crewe alexandra"
What are the results of the incumbent who was first elected in 1996?
CREATE TABLE table_name_79 (results VARCHAR, first_elected VARCHAR)
SELECT results FROM table_name_79 WHERE first_elected = 1996
### Context: CREATE TABLE table_name_79 (results VARCHAR, first_elected VARCHAR) ### Question: What are the results of the incumbent who was first elected in 1996? ### Answer: SELECT results FROM table_name_79 WHERE first_elected = 1996
What are the results of the incumbent who was first elected in 1996?
CREATE TABLE table_name_4 (results VARCHAR, first_elected VARCHAR)
SELECT results FROM table_name_4 WHERE first_elected = 1996
### Context: CREATE TABLE table_name_4 (results VARCHAR, first_elected VARCHAR) ### Question: What are the results of the incumbent who was first elected in 1996? ### Answer: SELECT results FROM table_name_4 WHERE first_elected = 1996