question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which method did pride bushido 10 have ?
CREATE TABLE table_name_56 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_56 WHERE event = "pride bushido 10"
### Context: CREATE TABLE table_name_56 (method VARCHAR, event VARCHAR) ### Question: Which method did pride bushido 10 have ? ### Answer: SELECT method FROM table_name_56 WHERE event = "pride bushido 10"
Which 2008–09 has an Event of autumn gold?
CREATE TABLE table_name_13 (event VARCHAR)
SELECT 2008 AS _09 FROM table_name_13 WHERE event = "autumn gold"
### Context: CREATE TABLE table_name_13 (event VARCHAR) ### Question: Which 2008–09 has an Event of autumn gold? ### Answer: SELECT 2008 AS _09 FROM table_name_13 WHERE event = "autumn gold"
Which Drawn has a Team of internacional-sp?
CREATE TABLE table_name_77 (drawn INTEGER, team VARCHAR)
SELECT SUM(drawn) FROM table_name_77 WHERE team = "internacional-sp"
### Context: CREATE TABLE table_name_77 (drawn INTEGER, team VARCHAR) ### Question: Which Drawn has a Team of internacional-sp? ### Answer: SELECT SUM(drawn) FROM table_name_77 WHERE team = "internacional-sp"
How much Lost has a Drawn larger than 5, and a Played larger than 18?
CREATE TABLE table_name_78 (lost INTEGER, drawn VARCHAR, played VARCHAR)
SELECT SUM(lost) FROM table_name_78 WHERE drawn > 5 AND played > 18
### Context: CREATE TABLE table_name_78 (lost INTEGER, drawn VARCHAR, played VARCHAR) ### Question: How much Lost has a Drawn larger than 5, and a Played larger than 18? ### Answer: SELECT SUM(lost) FROM table_name_78 WHERE drawn > 5 AND played > 18
Which Drawn is the highest one that has a Played smaller than 18?
CREATE TABLE table_name_36 (drawn INTEGER, played INTEGER)
SELECT MAX(drawn) FROM table_name_36 WHERE played < 18
### Context: CREATE TABLE table_name_36 (drawn INTEGER, played INTEGER) ### Question: Which Drawn is the highest one that has a Played smaller than 18? ### Answer: SELECT MAX(drawn) FROM table_name_36 WHERE played < 18
Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?
CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR)
SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9
### Context: CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR) ### Question: Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9? ### Answer: SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9
What's the least amount of floors at 921 sw sixth avenue?
CREATE TABLE table_name_41 (floors INTEGER, street_address VARCHAR)
SELECT MIN(floors) FROM table_name_41 WHERE street_address = "921 sw sixth avenue"
### Context: CREATE TABLE table_name_41 (floors INTEGER, street_address VARCHAR) ### Question: What's the least amount of floors at 921 sw sixth avenue? ### Answer: SELECT MIN(floors) FROM table_name_41 WHERE street_address = "921 sw sixth avenue"
What's the address of the union bank of California tower?
CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR)
SELECT street_address FROM table_name_27 WHERE name = "union bank of california tower"
### Context: CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR) ### Question: What's the address of the union bank of California tower? ### Answer: SELECT street_address FROM table_name_27 WHERE name = "union bank of california tower"
What were the years that the building at 200 sw harrison was considered to be the tallest building?
CREATE TABLE table_name_3 (years_as_tallest VARCHAR, street_address VARCHAR)
SELECT years_as_tallest FROM table_name_3 WHERE street_address = "200 sw harrison"
### Context: CREATE TABLE table_name_3 (years_as_tallest VARCHAR, street_address VARCHAR) ### Question: What were the years that the building at 200 sw harrison was considered to be the tallest building? ### Answer: SELECT years_as_tallest FROM table_name_3 WHERE street_address = "200 sw harrison"
What is the smallest position with less than 7 points piloted by Didier Hauss?
CREATE TABLE table_name_29 (position INTEGER, points VARCHAR, pilot VARCHAR)
SELECT MIN(position) FROM table_name_29 WHERE points < 7 AND pilot = "didier hauss"
### Context: CREATE TABLE table_name_29 (position INTEGER, points VARCHAR, pilot VARCHAR) ### Question: What is the smallest position with less than 7 points piloted by Didier Hauss? ### Answer: SELECT MIN(position) FROM table_name_29 WHERE points < 7 AND pilot = "didier hauss"
During what Season was the Final Venue at Sandy Lane with Kiveton Park as the Winner?
CREATE TABLE table_name_62 (season VARCHAR, winner VARCHAR, final_venue VARCHAR)
SELECT season FROM table_name_62 WHERE winner = "kiveton park" AND final_venue = "sandy lane"
### Context: CREATE TABLE table_name_62 (season VARCHAR, winner VARCHAR, final_venue VARCHAR) ### Question: During what Season was the Final Venue at Sandy Lane with Kiveton Park as the Winner? ### Answer: SELECT season FROM table_name_62 WHERE winner = "kiveton park" AND final_venue = "sandy lane"
What was the Runner-up during the 2005-06 Season with Kiveton Park as the Winner?
CREATE TABLE table_name_88 (runner_up VARCHAR, winner VARCHAR, season VARCHAR)
SELECT runner_up FROM table_name_88 WHERE winner = "kiveton park" AND season = "2005-06"
### Context: CREATE TABLE table_name_88 (runner_up VARCHAR, winner VARCHAR, season VARCHAR) ### Question: What was the Runner-up during the 2005-06 Season with Kiveton Park as the Winner? ### Answer: SELECT runner_up FROM table_name_88 WHERE winner = "kiveton park" AND season = "2005-06"
What was the Result in Green Lane with Kirkburton as the Runner-up?
CREATE TABLE table_name_94 (result VARCHAR, runner_up VARCHAR, final_venue VARCHAR)
SELECT result FROM table_name_94 WHERE runner_up = "kirkburton" AND final_venue = "green lane"
### Context: CREATE TABLE table_name_94 (result VARCHAR, runner_up VARCHAR, final_venue VARCHAR) ### Question: What was the Result in Green Lane with Kirkburton as the Runner-up? ### Answer: SELECT result FROM table_name_94 WHERE runner_up = "kirkburton" AND final_venue = "green lane"
What was the Result in the 2005-06 Season?
CREATE TABLE table_name_9 (result VARCHAR, season VARCHAR)
SELECT result FROM table_name_9 WHERE season = "2005-06"
### Context: CREATE TABLE table_name_9 (result VARCHAR, season VARCHAR) ### Question: What was the Result in the 2005-06 Season? ### Answer: SELECT result FROM table_name_9 WHERE season = "2005-06"
What was the Final Venue having Sheffield Reserves as the Winner?
CREATE TABLE table_name_17 (final_venue VARCHAR, winner VARCHAR)
SELECT final_venue FROM table_name_17 WHERE winner = "sheffield reserves"
### Context: CREATE TABLE table_name_17 (final_venue VARCHAR, winner VARCHAR) ### Question: What was the Final Venue having Sheffield Reserves as the Winner? ### Answer: SELECT final_venue FROM table_name_17 WHERE winner = "sheffield reserves"
What is the total number of Round that has a Time of 6:04?
CREATE TABLE table_name_85 (round INTEGER, time VARCHAR)
SELECT SUM(round) FROM table_name_85 WHERE time = "6:04"
### Context: CREATE TABLE table_name_85 (round INTEGER, time VARCHAR) ### Question: What is the total number of Round that has a Time of 6:04? ### Answer: SELECT SUM(round) FROM table_name_85 WHERE time = "6:04"
What Round has the Method of Submission (Single Wing Choke)?
CREATE TABLE table_name_55 (round VARCHAR, method VARCHAR)
SELECT round FROM table_name_55 WHERE method = "submission (single wing choke)"
### Context: CREATE TABLE table_name_55 (round VARCHAR, method VARCHAR) ### Question: What Round has the Method of Submission (Single Wing Choke)? ### Answer: SELECT round FROM table_name_55 WHERE method = "submission (single wing choke)"
Which Class has a Frequency MHz larger than 91.5, and a City of license of hyannis, nebraska?
CREATE TABLE table_name_12 (class VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT class FROM table_name_12 WHERE frequency_mhz > 91.5 AND city_of_license = "hyannis, nebraska"
### Context: CREATE TABLE table_name_12 (class VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: Which Class has a Frequency MHz larger than 91.5, and a City of license of hyannis, nebraska? ### Answer: SELECT class FROM table_name_12 WHERE frequency_mhz > 91.5 AND city_of_license = "hyannis, nebraska"
Which Class has a ERP W larger than 205, and a Frequency MHz smaller than 93.9, and a Call sign of k210cb?
CREATE TABLE table_name_54 (class VARCHAR, call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT class FROM table_name_54 WHERE erp_w > 205 AND frequency_mhz < 93.9 AND call_sign = "k210cb"
### Context: CREATE TABLE table_name_54 (class VARCHAR, call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR) ### Question: Which Class has a ERP W larger than 205, and a Frequency MHz smaller than 93.9, and a Call sign of k210cb? ### Answer: SELECT class FROM table_name_54 WHERE erp_w > 205 AND frequency_mhz < 93.9 AND call_sign = "k210cb"
Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?
CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap"
### Context: CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR) ### Question: Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap? ### Answer: SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap"
Which Frequency MHz has a ERP W of 250?
CREATE TABLE table_name_36 (frequency_mhz INTEGER, erp_w VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_36 WHERE erp_w = 250
### Context: CREATE TABLE table_name_36 (frequency_mhz INTEGER, erp_w VARCHAR) ### Question: Which Frequency MHz has a ERP W of 250? ### Answer: SELECT MAX(frequency_mhz) FROM table_name_36 WHERE erp_w = 250
What was the date of game 81?
CREATE TABLE table_name_40 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_40 WHERE game = 81
### Context: CREATE TABLE table_name_40 (date VARCHAR, game VARCHAR) ### Question: What was the date of game 81? ### Answer: SELECT date FROM table_name_40 WHERE game = 81
WHich Surface has an Opponent of gustavo kuerten?
CREATE TABLE table_name_13 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_13 WHERE opponent = "gustavo kuerten"
### Context: CREATE TABLE table_name_13 (surface VARCHAR, opponent VARCHAR) ### Question: WHich Surface has an Opponent of gustavo kuerten? ### Answer: SELECT surface FROM table_name_13 WHERE opponent = "gustavo kuerten"
Which Surface has a Tournament of st. petersburg , russia?
CREATE TABLE table_name_53 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_53 WHERE tournament = "st. petersburg , russia"
### Context: CREATE TABLE table_name_53 (surface VARCHAR, tournament VARCHAR) ### Question: Which Surface has a Tournament of st. petersburg , russia? ### Answer: SELECT surface FROM table_name_53 WHERE tournament = "st. petersburg , russia"
When is the Surface of hard (i), and a Tournament of brighton , united kingdom taken?
CREATE TABLE table_name_11 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_11 WHERE surface = "hard (i)" AND tournament = "brighton , united kingdom"
### Context: CREATE TABLE table_name_11 (date VARCHAR, surface VARCHAR, tournament VARCHAR) ### Question: When is the Surface of hard (i), and a Tournament of brighton , united kingdom taken? ### Answer: SELECT date FROM table_name_11 WHERE surface = "hard (i)" AND tournament = "brighton , united kingdom"
Which Opponent has a Score of 3–6, 5–7?
CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_52 WHERE score = "3–6, 5–7"
### Context: CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR) ### Question: Which Opponent has a Score of 3–6, 5–7? ### Answer: SELECT opponent FROM table_name_52 WHERE score = "3–6, 5–7"
When has a Tournament of palermo , italy?
CREATE TABLE table_name_17 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_17 WHERE tournament = "palermo , italy"
### Context: CREATE TABLE table_name_17 (date VARCHAR, tournament VARCHAR) ### Question: When has a Tournament of palermo , italy? ### Answer: SELECT date FROM table_name_17 WHERE tournament = "palermo , italy"
Which Opponent is on 29 september 1997?
CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_70 WHERE date = "29 september 1997"
### Context: CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR) ### Question: Which Opponent is on 29 september 1997? ### Answer: SELECT opponent FROM table_name_70 WHERE date = "29 september 1997"
Which constellation has hd 75732 as a destignation HD?
CREATE TABLE table_name_38 (constellation VARCHAR, designation_hd VARCHAR)
SELECT constellation FROM table_name_38 WHERE designation_hd = "hd 75732"
### Context: CREATE TABLE table_name_38 (constellation VARCHAR, designation_hd VARCHAR) ### Question: Which constellation has hd 75732 as a destignation HD? ### Answer: SELECT constellation FROM table_name_38 WHERE designation_hd = "hd 75732"
What message has hd 186408 as a designation HD?
CREATE TABLE table_name_75 (message VARCHAR, designation_hd VARCHAR)
SELECT message FROM table_name_75 WHERE designation_hd = "hd 186408"
### Context: CREATE TABLE table_name_75 (message VARCHAR, designation_hd VARCHAR) ### Question: What message has hd 186408 as a designation HD? ### Answer: SELECT message FROM table_name_75 WHERE designation_hd = "hd 186408"
What date sent has cygnus as a constellation, and hd 190360 as a designation HD?
CREATE TABLE table_name_65 (date_sent VARCHAR, constellation VARCHAR, designation_hd VARCHAR)
SELECT date_sent FROM table_name_65 WHERE constellation = "cygnus" AND designation_hd = "hd 190360"
### Context: CREATE TABLE table_name_65 (date_sent VARCHAR, constellation VARCHAR, designation_hd VARCHAR) ### Question: What date sent has cygnus as a constellation, and hd 190360 as a designation HD? ### Answer: SELECT date_sent FROM table_name_65 WHERE constellation = "cygnus" AND designation_hd = "hd 190360"
What date sent has orion as the constellation?
CREATE TABLE table_name_63 (date_sent VARCHAR, constellation VARCHAR)
SELECT date_sent FROM table_name_63 WHERE constellation = "orion"
### Context: CREATE TABLE table_name_63 (date_sent VARCHAR, constellation VARCHAR) ### Question: What date sent has orion as the constellation? ### Answer: SELECT date_sent FROM table_name_63 WHERE constellation = "orion"
Which constellation has cosmic call 1 as the message, and an arrival date of october 2067?
CREATE TABLE table_name_27 (constellation VARCHAR, message VARCHAR, arrival_date VARCHAR)
SELECT constellation FROM table_name_27 WHERE message = "cosmic call 1" AND arrival_date = "october 2067"
### Context: CREATE TABLE table_name_27 (constellation VARCHAR, message VARCHAR, arrival_date VARCHAR) ### Question: Which constellation has cosmic call 1 as the message, and an arrival date of october 2067? ### Answer: SELECT constellation FROM table_name_27 WHERE message = "cosmic call 1" AND arrival_date = "october 2067"
What date sent has cancer as the constellation?
CREATE TABLE table_name_29 (date_sent VARCHAR, constellation VARCHAR)
SELECT date_sent FROM table_name_29 WHERE constellation = "cancer"
### Context: CREATE TABLE table_name_29 (date_sent VARCHAR, constellation VARCHAR) ### Question: What date sent has cancer as the constellation? ### Answer: SELECT date_sent FROM table_name_29 WHERE constellation = "cancer"
Which Conceded is the highest one that has Points larger than 17, and a Team of guaraní, and Losses smaller than 6?
CREATE TABLE table_name_39 (conceded INTEGER, losses VARCHAR, points VARCHAR, team VARCHAR)
SELECT MAX(conceded) FROM table_name_39 WHERE points > 17 AND team = "guaraní" AND losses < 6
### Context: CREATE TABLE table_name_39 (conceded INTEGER, losses VARCHAR, points VARCHAR, team VARCHAR) ### Question: Which Conceded is the highest one that has Points larger than 17, and a Team of guaraní, and Losses smaller than 6? ### Answer: SELECT MAX(conceded) FROM table_name_39 WHERE points > 17 AND team = "guaraní" AND losses < 6
Which Conceded has Draws smaller than 5, and a Position larger than 6?
CREATE TABLE table_name_39 (conceded INTEGER, draws VARCHAR, position VARCHAR)
SELECT SUM(conceded) FROM table_name_39 WHERE draws < 5 AND position > 6
### Context: CREATE TABLE table_name_39 (conceded INTEGER, draws VARCHAR, position VARCHAR) ### Question: Which Conceded has Draws smaller than 5, and a Position larger than 6? ### Answer: SELECT SUM(conceded) FROM table_name_39 WHERE draws < 5 AND position > 6
How many Points have a Played larger than 18?
CREATE TABLE table_name_65 (points VARCHAR, played INTEGER)
SELECT COUNT(points) FROM table_name_65 WHERE played > 18
### Context: CREATE TABLE table_name_65 (points VARCHAR, played INTEGER) ### Question: How many Points have a Played larger than 18? ### Answer: SELECT COUNT(points) FROM table_name_65 WHERE played > 18
Which Scored has a Team of recoleta?
CREATE TABLE table_name_81 (scored INTEGER, team VARCHAR)
SELECT SUM(scored) FROM table_name_81 WHERE team = "recoleta"
### Context: CREATE TABLE table_name_81 (scored INTEGER, team VARCHAR) ### Question: Which Scored has a Team of recoleta? ### Answer: SELECT SUM(scored) FROM table_name_81 WHERE team = "recoleta"
Which Notes have a Date of 2008-01-27?
CREATE TABLE table_name_21 (notes VARCHAR, date VARCHAR)
SELECT notes FROM table_name_21 WHERE date = "2008-01-27"
### Context: CREATE TABLE table_name_21 (notes VARCHAR, date VARCHAR) ### Question: Which Notes have a Date of 2008-01-27? ### Answer: SELECT notes FROM table_name_21 WHERE date = "2008-01-27"
Which Date has a Distance of 3,000 m?
CREATE TABLE table_name_63 (date VARCHAR, distance VARCHAR)
SELECT date FROM table_name_63 WHERE distance = "3,000 m"
### Context: CREATE TABLE table_name_63 (date VARCHAR, distance VARCHAR) ### Question: Which Date has a Distance of 3,000 m? ### Answer: SELECT date FROM table_name_63 WHERE distance = "3,000 m"
Which Distance has a Time of men's speed skating?
CREATE TABLE table_name_46 (distance VARCHAR, time VARCHAR)
SELECT distance FROM table_name_46 WHERE time = "men's speed skating"
### Context: CREATE TABLE table_name_46 (distance VARCHAR, time VARCHAR) ### Question: Which Distance has a Time of men's speed skating? ### Answer: SELECT distance FROM table_name_46 WHERE time = "men's speed skating"
Which Location has a Time of time?
CREATE TABLE table_name_89 (location VARCHAR)
SELECT location FROM table_name_89 WHERE "time" = "time"
### Context: CREATE TABLE table_name_89 (location VARCHAR) ### Question: Which Location has a Time of time? ### Answer: SELECT location FROM table_name_89 WHERE "time" = "time"
Which Location has a Distance of 10,000 m?
CREATE TABLE table_name_59 (location VARCHAR, distance VARCHAR)
SELECT location FROM table_name_59 WHERE distance = "10,000 m"
### Context: CREATE TABLE table_name_59 (location VARCHAR, distance VARCHAR) ### Question: Which Location has a Distance of 10,000 m? ### Answer: SELECT location FROM table_name_59 WHERE distance = "10,000 m"
Which Date has a Distance of 500 m?
CREATE TABLE table_name_3 (date VARCHAR, distance VARCHAR)
SELECT date FROM table_name_3 WHERE distance = "500 m"
### Context: CREATE TABLE table_name_3 (date VARCHAR, distance VARCHAR) ### Question: Which Date has a Distance of 500 m? ### Answer: SELECT date FROM table_name_3 WHERE distance = "500 m"
What was the score for the June 22 game with attendance 0?
CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_44 WHERE date = "june 22" AND attendance = 0
### Context: CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR, attendance VARCHAR) ### Question: What was the score for the June 22 game with attendance 0? ### Answer: SELECT score FROM table_name_44 WHERE date = "june 22" AND attendance = 0
What type of surface was used for the carthage tournament on august 14, 1994?
CREATE TABLE table_name_97 (surface VARCHAR, tournament VARCHAR, date VARCHAR)
SELECT surface FROM table_name_97 WHERE tournament = "carthage" AND date = "august 14, 1994"
### Context: CREATE TABLE table_name_97 (surface VARCHAR, tournament VARCHAR, date VARCHAR) ### Question: What type of surface was used for the carthage tournament on august 14, 1994? ### Answer: SELECT surface FROM table_name_97 WHERE tournament = "carthage" AND date = "august 14, 1994"
Which tournament has marielle bruens for the opponent in the final?
CREATE TABLE table_name_81 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_81 WHERE opponent_in_the_final = "marielle bruens"
### Context: CREATE TABLE table_name_81 (tournament VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which tournament has marielle bruens for the opponent in the final? ### Answer: SELECT tournament FROM table_name_81 WHERE opponent_in_the_final = "marielle bruens"
What surface was used on may 13, 2007?
CREATE TABLE table_name_19 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_19 WHERE date = "may 13, 2007"
### Context: CREATE TABLE table_name_19 (surface VARCHAR, date VARCHAR) ### Question: What surface was used on may 13, 2007? ### Answer: SELECT surface FROM table_name_19 WHERE date = "may 13, 2007"
Frequency MHz of 93.7 has what class?
CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR)
SELECT class FROM table_name_4 WHERE frequency_mhz = 93.7
### Context: CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR) ### Question: Frequency MHz of 93.7 has what class? ### Answer: SELECT class FROM table_name_4 WHERE frequency_mhz = 93.7
What is the average Entre Ríos Municipality with less than 9 Pojo Municipalities?
CREATE TABLE table_name_99 (entre_ríos_municipality INTEGER, pojo_municipality INTEGER)
SELECT AVG(entre_ríos_municipality) FROM table_name_99 WHERE pojo_municipality < 9
### Context: CREATE TABLE table_name_99 (entre_ríos_municipality INTEGER, pojo_municipality INTEGER) ### Question: What is the average Entre Ríos Municipality with less than 9 Pojo Municipalities? ### Answer: SELECT AVG(entre_ríos_municipality) FROM table_name_99 WHERE pojo_municipality < 9
What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?
CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)
SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74
### Context: CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR) ### Question: What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities? ### Answer: SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74
What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities?
CREATE TABLE table_name_76 (chimoré_municipality INTEGER, pojo_municipality VARCHAR, totora_municipality VARCHAR)
SELECT MAX(chimoré_municipality) FROM table_name_76 WHERE pojo_municipality = 9 AND totora_municipality < 7
### Context: CREATE TABLE table_name_76 (chimoré_municipality INTEGER, pojo_municipality VARCHAR, totora_municipality VARCHAR) ### Question: What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities? ### Answer: SELECT MAX(chimoré_municipality) FROM table_name_76 WHERE pojo_municipality = 9 AND totora_municipality < 7
Which Copa Libertadores 1996 has a Team of estudiantes?
CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, team VARCHAR)
SELECT copa_libertadores_1996 FROM table_name_10 WHERE team = "estudiantes"
### Context: CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, team VARCHAR) ### Question: Which Copa Libertadores 1996 has a Team of estudiantes? ### Answer: SELECT copa_libertadores_1996 FROM table_name_10 WHERE team = "estudiantes"
which CONMEBOL 1995 has a Supercopa 1995 of sf?
CREATE TABLE table_name_86 (conmebol_1995 VARCHAR, supercopa_1995 VARCHAR)
SELECT conmebol_1995 FROM table_name_86 WHERE supercopa_1995 = "sf"
### Context: CREATE TABLE table_name_86 (conmebol_1995 VARCHAR, supercopa_1995 VARCHAR) ### Question: which CONMEBOL 1995 has a Supercopa 1995 of sf? ### Answer: SELECT conmebol_1995 FROM table_name_86 WHERE supercopa_1995 = "sf"
which Copa Libertadores 1996 has round 1 Supercopa 1995 and argentinos juniors team ?
CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, supercopa_1995 VARCHAR, team VARCHAR)
SELECT copa_libertadores_1996 FROM table_name_10 WHERE supercopa_1995 = "round 1" AND team = "argentinos juniors"
### Context: CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, supercopa_1995 VARCHAR, team VARCHAR) ### Question: which Copa Libertadores 1996 has round 1 Supercopa 1995 and argentinos juniors team ? ### Answer: SELECT copa_libertadores_1996 FROM table_name_10 WHERE supercopa_1995 = "round 1" AND team = "argentinos juniors"
Which CONMEBOL 1995 has river plate team?
CREATE TABLE table_name_61 (conmebol_1995 VARCHAR, team VARCHAR)
SELECT conmebol_1995 FROM table_name_61 WHERE team = "river plate"
### Context: CREATE TABLE table_name_61 (conmebol_1995 VARCHAR, team VARCHAR) ### Question: Which CONMEBOL 1995 has river plate team? ### Answer: SELECT conmebol_1995 FROM table_name_61 WHERE team = "river plate"
Which Team has a round 1 CONMEBOL 1995?
CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)
SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1"
### Context: CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR) ### Question: Which Team has a round 1 CONMEBOL 1995? ### Answer: SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1"
Which Date has an Attendance of 57,013?
CREATE TABLE table_name_36 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_36 WHERE attendance = "57,013"
### Context: CREATE TABLE table_name_36 (date VARCHAR, attendance VARCHAR) ### Question: Which Date has an Attendance of 57,013? ### Answer: SELECT date FROM table_name_36 WHERE attendance = "57,013"
Which Date has a TV Time of cbs 1:00pm, and a Game Site of rca dome, and an Opponent of cincinnati bengals?
CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, tv_time VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_7 WHERE tv_time = "cbs 1:00pm" AND game_site = "rca dome" AND opponent = "cincinnati bengals"
### Context: CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, tv_time VARCHAR, game_site VARCHAR) ### Question: Which Date has a TV Time of cbs 1:00pm, and a Game Site of rca dome, and an Opponent of cincinnati bengals? ### Answer: SELECT date FROM table_name_7 WHERE tv_time = "cbs 1:00pm" AND game_site = "rca dome" AND opponent = "cincinnati bengals"
Which TV Time has a Date of december 26, 1999?
CREATE TABLE table_name_63 (tv_time VARCHAR, date VARCHAR)
SELECT tv_time FROM table_name_63 WHERE date = "december 26, 1999"
### Context: CREATE TABLE table_name_63 (tv_time VARCHAR, date VARCHAR) ### Question: Which TV Time has a Date of december 26, 1999? ### Answer: SELECT tv_time FROM table_name_63 WHERE date = "december 26, 1999"
Which Game Site has a Date of october 17, 1999?
CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_name_1 WHERE date = "october 17, 1999"
### Context: CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR) ### Question: Which Game Site has a Date of october 17, 1999? ### Answer: SELECT game_site FROM table_name_1 WHERE date = "october 17, 1999"
what's the result with streak of won 6?
CREATE TABLE table_name_21 (result VARCHAR, streak VARCHAR)
SELECT result FROM table_name_21 WHERE streak = "won 6"
### Context: CREATE TABLE table_name_21 (result VARCHAR, streak VARCHAR) ### Question: what's the result with streak of won 6? ### Answer: SELECT result FROM table_name_21 WHERE streak = "won 6"
What was the 2nd leg score having an aggregate score of 4-2?
CREATE TABLE table_name_88 (aggregate VARCHAR)
SELECT 2 AS nd_leg FROM table_name_88 WHERE aggregate = "4-2"
### Context: CREATE TABLE table_name_88 (aggregate VARCHAR) ### Question: What was the 2nd leg score having an aggregate score of 4-2? ### Answer: SELECT 2 AS nd_leg FROM table_name_88 WHERE aggregate = "4-2"
What was the home team for the 2nd leg of the match having an aggregate of 2-3?
CREATE TABLE table_name_59 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
SELECT home__2nd_leg_ FROM table_name_59 WHERE aggregate = "2-3"
### Context: CREATE TABLE table_name_59 (home__2nd_leg_ VARCHAR, aggregate VARCHAR) ### Question: What was the home team for the 2nd leg of the match having an aggregate of 2-3? ### Answer: SELECT home__2nd_leg_ FROM table_name_59 WHERE aggregate = "2-3"
What is the lowest number of played games of the team with less than 12 drawns, 41 against, and less than 69 points?
CREATE TABLE table_name_58 (played INTEGER, points VARCHAR, drawn VARCHAR, against VARCHAR)
SELECT MIN(played) FROM table_name_58 WHERE drawn < 12 AND against = 41 AND points < 69
### Context: CREATE TABLE table_name_58 (played INTEGER, points VARCHAR, drawn VARCHAR, against VARCHAR) ### Question: What is the lowest number of played games of the team with less than 12 drawns, 41 against, and less than 69 points? ### Answer: SELECT MIN(played) FROM table_name_58 WHERE drawn < 12 AND against = 41 AND points < 69
What is the highest number of played of the team with less than 11 losses and less than 12 drawns?
CREATE TABLE table_name_9 (played INTEGER, lost VARCHAR, drawn VARCHAR)
SELECT MAX(played) FROM table_name_9 WHERE lost < 11 AND drawn < 12
### Context: CREATE TABLE table_name_9 (played INTEGER, lost VARCHAR, drawn VARCHAR) ### Question: What is the highest number of played of the team with less than 11 losses and less than 12 drawns? ### Answer: SELECT MAX(played) FROM table_name_9 WHERE lost < 11 AND drawn < 12
What is the sum of againsts the team with less than 38 played had?
CREATE TABLE table_name_86 (against INTEGER, played INTEGER)
SELECT SUM(against) FROM table_name_86 WHERE played < 38
### Context: CREATE TABLE table_name_86 (against INTEGER, played INTEGER) ### Question: What is the sum of againsts the team with less than 38 played had? ### Answer: SELECT SUM(against) FROM table_name_86 WHERE played < 38
What is the average drawn of the team with a difference of 4 and more than 13 losses?
CREATE TABLE table_name_30 (drawn INTEGER, difference VARCHAR, lost VARCHAR)
SELECT AVG(drawn) FROM table_name_30 WHERE difference = "4" AND lost > 13
### Context: CREATE TABLE table_name_30 (drawn INTEGER, difference VARCHAR, lost VARCHAR) ### Question: What is the average drawn of the team with a difference of 4 and more than 13 losses? ### Answer: SELECT AVG(drawn) FROM table_name_30 WHERE difference = "4" AND lost > 13
What is the position of the team with more than 16 losses and an against greater than 74?
CREATE TABLE table_name_43 (position INTEGER, lost VARCHAR, against VARCHAR)
SELECT SUM(position) FROM table_name_43 WHERE lost > 16 AND against > 74
### Context: CREATE TABLE table_name_43 (position INTEGER, lost VARCHAR, against VARCHAR) ### Question: What is the position of the team with more than 16 losses and an against greater than 74? ### Answer: SELECT SUM(position) FROM table_name_43 WHERE lost > 16 AND against > 74
What is the highest number of points team vitória, which had more than 38 played, had?
CREATE TABLE table_name_92 (points INTEGER, team VARCHAR, played VARCHAR)
SELECT MAX(points) FROM table_name_92 WHERE team = "vitória" AND played > 38
### Context: CREATE TABLE table_name_92 (points INTEGER, team VARCHAR, played VARCHAR) ### Question: What is the highest number of points team vitória, which had more than 38 played, had? ### Answer: SELECT MAX(points) FROM table_name_92 WHERE team = "vitória" AND played > 38
When the A Score was larger than 5.933 with a total of 19.833, what nation was this?
CREATE TABLE table_name_40 (nation VARCHAR, a_score VARCHAR, total VARCHAR)
SELECT nation FROM table_name_40 WHERE a_score > 5.933 AND total = 19.833
### Context: CREATE TABLE table_name_40 (nation VARCHAR, a_score VARCHAR, total VARCHAR) ### Question: When the A Score was larger than 5.933 with a total of 19.833, what nation was this? ### Answer: SELECT nation FROM table_name_40 WHERE a_score > 5.933 AND total = 19.833
How large was the total when the E Score was greater than 9.35 and T Score was less than 4?
CREATE TABLE table_name_35 (total INTEGER, e_score VARCHAR, t_score VARCHAR)
SELECT MAX(total) FROM table_name_35 WHERE e_score > 9.35 AND t_score < 4
### Context: CREATE TABLE table_name_35 (total INTEGER, e_score VARCHAR, t_score VARCHAR) ### Question: How large was the total when the E Score was greater than 9.35 and T Score was less than 4? ### Answer: SELECT MAX(total) FROM table_name_35 WHERE e_score > 9.35 AND t_score < 4
What was the quantity of the A Score when the E Score was larger than 9.566 in the Greece and the T score was more than 4?
CREATE TABLE table_name_54 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, nation VARCHAR)
SELECT SUM(a_score) FROM table_name_54 WHERE e_score > 9.566 AND nation = "greece" AND t_score > 4
### Context: CREATE TABLE table_name_54 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, nation VARCHAR) ### Question: What was the quantity of the A Score when the E Score was larger than 9.566 in the Greece and the T score was more than 4? ### Answer: SELECT SUM(a_score) FROM table_name_54 WHERE e_score > 9.566 AND nation = "greece" AND t_score > 4
What was the total of A Score when the E Score was greater than 9.383, total was less than 19.716 and the T Score was larger than 4?
CREATE TABLE table_name_74 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, total VARCHAR)
SELECT SUM(a_score) FROM table_name_74 WHERE e_score > 9.383 AND total < 19.716 AND t_score > 4
### Context: CREATE TABLE table_name_74 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, total VARCHAR) ### Question: What was the total of A Score when the E Score was greater than 9.383, total was less than 19.716 and the T Score was larger than 4? ### Answer: SELECT SUM(a_score) FROM table_name_74 WHERE e_score > 9.383 AND total < 19.716 AND t_score > 4
Which city has a frequency of 104.5 fm?
CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency_mhz VARCHAR)
SELECT city_of_license FROM table_name_1 WHERE frequency_mhz = "104.5 fm"
### Context: CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency_mhz VARCHAR) ### Question: Which city has a frequency of 104.5 fm? ### Answer: SELECT city_of_license FROM table_name_1 WHERE frequency_mhz = "104.5 fm"
What is the frequency of Walterboro, SC?
CREATE TABLE table_name_74 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT frequency_mhz FROM table_name_74 WHERE city_of_license = "walterboro, sc"
### Context: CREATE TABLE table_name_74 (frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: What is the frequency of Walterboro, SC? ### Answer: SELECT frequency_mhz FROM table_name_74 WHERE city_of_license = "walterboro, sc"
What is the FCC information of 104.5 fm frequency?
CREATE TABLE table_name_68 (fcc_info VARCHAR, frequency_mhz VARCHAR)
SELECT fcc_info FROM table_name_68 WHERE frequency_mhz = "104.5 fm"
### Context: CREATE TABLE table_name_68 (fcc_info VARCHAR, frequency_mhz VARCHAR) ### Question: What is the FCC information of 104.5 fm frequency? ### Answer: SELECT fcc_info FROM table_name_68 WHERE frequency_mhz = "104.5 fm"
What is Charleston, SC ERP W?
CREATE TABLE table_name_2 (erp_w VARCHAR, city_of_license VARCHAR)
SELECT erp_w FROM table_name_2 WHERE city_of_license = "charleston, sc"
### Context: CREATE TABLE table_name_2 (erp_w VARCHAR, city_of_license VARCHAR) ### Question: What is Charleston, SC ERP W? ### Answer: SELECT erp_w FROM table_name_2 WHERE city_of_license = "charleston, sc"
What does the ERP W sum equal for 105.1 fm frequency?
CREATE TABLE table_name_66 (erp_w INTEGER, frequency_mhz VARCHAR)
SELECT SUM(erp_w) FROM table_name_66 WHERE frequency_mhz = "105.1 fm"
### Context: CREATE TABLE table_name_66 (erp_w INTEGER, frequency_mhz VARCHAR) ### Question: What does the ERP W sum equal for 105.1 fm frequency? ### Answer: SELECT SUM(erp_w) FROM table_name_66 WHERE frequency_mhz = "105.1 fm"
What is surfside beach, SC frequency?
CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = "surfside beach, sc"
### Context: CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: What is surfside beach, SC frequency? ### Answer: SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = "surfside beach, sc"
What is the player from Japan's To Par?
CREATE TABLE table_name_30 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_30 WHERE country = "japan"
### Context: CREATE TABLE table_name_30 (to_par VARCHAR, country VARCHAR) ### Question: What is the player from Japan's To Par? ### Answer: SELECT to_par FROM table_name_30 WHERE country = "japan"
What is the player from England's To Par?
CREATE TABLE table_name_68 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_68 WHERE country = "england"
### Context: CREATE TABLE table_name_68 (to_par VARCHAR, country VARCHAR) ### Question: What is the player from England's To Par? ### Answer: SELECT to_par FROM table_name_68 WHERE country = "england"
What is the player from England's score?
CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_98 WHERE country = "england"
### Context: CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR) ### Question: What is the player from England's score? ### Answer: SELECT score FROM table_name_98 WHERE country = "england"
Which country does Adam Scott play for?
CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_39 WHERE player = "adam scott"
### Context: CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR) ### Question: Which country does Adam Scott play for? ### Answer: SELECT country FROM table_name_39 WHERE player = "adam scott"
Name the ICAO for lilongwe international airport
CREATE TABLE table_name_43 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_43 WHERE airport = "lilongwe international airport"
### Context: CREATE TABLE table_name_43 (icao VARCHAR, airport VARCHAR) ### Question: Name the ICAO for lilongwe international airport ### Answer: SELECT icao FROM table_name_43 WHERE airport = "lilongwe international airport"
Name the airport for ICAO of flls
CREATE TABLE table_name_6 (airport VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_6 WHERE icao = "flls"
### Context: CREATE TABLE table_name_6 (airport VARCHAR, icao VARCHAR) ### Question: Name the airport for ICAO of flls ### Answer: SELECT airport FROM table_name_6 WHERE icao = "flls"
Name the ICAO for lilongwe international airport
CREATE TABLE table_name_74 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_74 WHERE airport = "lilongwe international airport"
### Context: CREATE TABLE table_name_74 (icao VARCHAR, airport VARCHAR) ### Question: Name the ICAO for lilongwe international airport ### Answer: SELECT icao FROM table_name_74 WHERE airport = "lilongwe international airport"
Name the ICAO for julius nyerere international airport
CREATE TABLE table_name_79 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_79 WHERE airport = "julius nyerere international airport"
### Context: CREATE TABLE table_name_79 (icao VARCHAR, airport VARCHAR) ### Question: Name the ICAO for julius nyerere international airport ### Answer: SELECT icao FROM table_name_79 WHERE airport = "julius nyerere international airport"
Name the country for johannesburg
CREATE TABLE table_name_35 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_35 WHERE city = "johannesburg"
### Context: CREATE TABLE table_name_35 (country VARCHAR, city VARCHAR) ### Question: Name the country for johannesburg ### Answer: SELECT country FROM table_name_35 WHERE city = "johannesburg"
Name the city for IATA of llw
CREATE TABLE table_name_32 (city VARCHAR, iata VARCHAR)
SELECT city FROM table_name_32 WHERE iata = "llw"
### Context: CREATE TABLE table_name_32 (city VARCHAR, iata VARCHAR) ### Question: Name the city for IATA of llw ### Answer: SELECT city FROM table_name_32 WHERE iata = "llw"
What is the name of the home time with a 10 tie no?
CREATE TABLE table_name_5 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_5 WHERE tie_no = "10"
### Context: CREATE TABLE table_name_5 (home_team VARCHAR, tie_no VARCHAR) ### Question: What is the name of the home time with a 10 tie no? ### Answer: SELECT home_team FROM table_name_5 WHERE tie_no = "10"
What was the date of the game that was played against the away team of York City?
CREATE TABLE table_name_7 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_7 WHERE away_team = "york city"
### Context: CREATE TABLE table_name_7 (attendance VARCHAR, away_team VARCHAR) ### Question: What was the date of the game that was played against the away team of York City? ### Answer: SELECT attendance FROM table_name_7 WHERE away_team = "york city"
What group of juventus had an attendance larger than 47,786?
CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR)
SELECT group_position FROM table_name_2 WHERE opponents = "juventus" AND attendance > 47 OFFSET 786
### Context: CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR) ### Question: What group of juventus had an attendance larger than 47,786? ### Answer: SELECT group_position FROM table_name_2 WHERE opponents = "juventus" AND attendance > 47 OFFSET 786
Name the average week for result of l 28–17
CREATE TABLE table_name_56 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_56 WHERE result = "l 28–17"
### Context: CREATE TABLE table_name_56 (week INTEGER, result VARCHAR) ### Question: Name the average week for result of l 28–17 ### Answer: SELECT AVG(week) FROM table_name_56 WHERE result = "l 28–17"
What was the score on April 12?
CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_48 WHERE date = "april 12"
### Context: CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR) ### Question: What was the score on April 12? ### Answer: SELECT score FROM table_name_48 WHERE date = "april 12"
Which 2009 has a 2008 of A, and a 2010 of 4r?
CREATE TABLE table_name_84 (Id VARCHAR)
SELECT 2009 FROM table_name_84 WHERE 2008 = "a" AND 2010 = "4r"
### Context: CREATE TABLE table_name_84 (Id VARCHAR) ### Question: Which 2009 has a 2008 of A, and a 2010 of 4r? ### Answer: SELECT 2009 FROM table_name_84 WHERE 2008 = "a" AND 2010 = "4r"
Which 2009 has a 2008 of wta premier mandatory tournaments?
CREATE TABLE table_name_64 (Id VARCHAR)
SELECT 2009 FROM table_name_64 WHERE 2008 = "wta premier mandatory tournaments"
### Context: CREATE TABLE table_name_64 (Id VARCHAR) ### Question: Which 2009 has a 2008 of wta premier mandatory tournaments? ### Answer: SELECT 2009 FROM table_name_64 WHERE 2008 = "wta premier mandatory tournaments"
Which 2010 has a Tournament of australian open?
CREATE TABLE table_name_80 (tournament VARCHAR)
SELECT 2010 FROM table_name_80 WHERE tournament = "australian open"
### Context: CREATE TABLE table_name_80 (tournament VARCHAR) ### Question: Which 2010 has a Tournament of australian open? ### Answer: SELECT 2010 FROM table_name_80 WHERE tournament = "australian open"
Which 2007 has a 2006 of A, and a Tournament of canada?
CREATE TABLE table_name_8 (tournament VARCHAR)
SELECT 2007 FROM table_name_8 WHERE 2006 = "a" AND tournament = "canada"
### Context: CREATE TABLE table_name_8 (tournament VARCHAR) ### Question: Which 2007 has a 2006 of A, and a Tournament of canada? ### Answer: SELECT 2007 FROM table_name_8 WHERE 2006 = "a" AND tournament = "canada"
Which 2009 has a 2006 of A, and a 2011 of sf?
CREATE TABLE table_name_83 (Id VARCHAR)
SELECT 2009 FROM table_name_83 WHERE 2006 = "a" AND 2011 = "sf"
### Context: CREATE TABLE table_name_83 (Id VARCHAR) ### Question: Which 2009 has a 2006 of A, and a 2011 of sf? ### Answer: SELECT 2009 FROM table_name_83 WHERE 2006 = "a" AND 2011 = "sf"