question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what is the molecules when the percent mass is 1.0?
CREATE TABLE table_name_8 (molecules VARCHAR, percent_of_mass VARCHAR)
SELECT molecules FROM table_name_8 WHERE percent_of_mass = "1.0"
### Context: CREATE TABLE table_name_8 (molecules VARCHAR, percent_of_mass VARCHAR) ### Question: what is the molecules when the percent mass is 1.0? ### Answer: SELECT molecules FROM table_name_8 WHERE percent_of_mass = "1.0"
what is the mol.weight (daltons) when the percent of mass is 1.5?
CREATE TABLE table_name_47 (molweight__daltons_ VARCHAR, percent_of_mass VARCHAR)
SELECT molweight__daltons_ FROM table_name_47 WHERE percent_of_mass = "1.5"
### Context: CREATE TABLE table_name_47 (molweight__daltons_ VARCHAR, percent_of_mass VARCHAR) ### Question: what is the mol.weight (daltons) when the percent of mass is 1.5? ### Answer: SELECT molweight__daltons_ FROM table_name_47 WHERE percent_of_mass = "1.5"
what is the perfect of mass when the molecules is 1.74e14*?
CREATE TABLE table_name_58 (percent_of_mass VARCHAR, molecules VARCHAR)
SELECT percent_of_mass FROM table_name_58 WHERE molecules = "1.74e14*"
### Context: CREATE TABLE table_name_58 (percent_of_mass VARCHAR, molecules VARCHAR) ### Question: what is the perfect of mass when the molecules is 1.74e14*? ### Answer: SELECT percent_of_mass FROM table_name_58 WHERE molecules = "1.74e14*"
what is the percent of mass when the mol.weight (daltons) is 1e11?
CREATE TABLE table_name_21 (percent_of_mass VARCHAR, molweight__daltons_ VARCHAR)
SELECT percent_of_mass FROM table_name_21 WHERE molweight__daltons_ = "1e11"
### Context: CREATE TABLE table_name_21 (percent_of_mass VARCHAR, molweight__daltons_ VARCHAR) ### Question: what is the percent of mass when the mol.weight (daltons) is 1e11? ### Answer: SELECT percent_of_mass FROM table_name_21 WHERE molweight__daltons_ = "1e11"
How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia?
CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR)
SELECT attendance FROM table_name_31 WHERE away_team = "dynamo kyiv" AND home_team = "torpedo zaporizhia"
### Context: CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR) ### Question: How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia? ### Answer: SELECT attendance FROM table_name_31 WHERE away_team = "dynamo kyiv" AND home_team = "torpedo zaporizhia"
What was the round when the home team was chornomorets odessa?
CREATE TABLE table_name_55 (round VARCHAR, home_team VARCHAR)
SELECT round FROM table_name_55 WHERE home_team = "chornomorets odessa"
### Context: CREATE TABLE table_name_55 (round VARCHAR, home_team VARCHAR) ### Question: What was the round when the home team was chornomorets odessa? ### Answer: SELECT round FROM table_name_55 WHERE home_team = "chornomorets odessa"
What is the rank when the game was at dnipro stadium , kremenchuk?
CREATE TABLE table_name_55 (rank VARCHAR, location VARCHAR)
SELECT rank FROM table_name_55 WHERE location = "dnipro stadium , kremenchuk"
### Context: CREATE TABLE table_name_55 (rank VARCHAR, location VARCHAR) ### Question: What is the rank when the game was at dnipro stadium , kremenchuk? ### Answer: SELECT rank FROM table_name_55 WHERE location = "dnipro stadium , kremenchuk"
What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b?
CREATE TABLE table_name_48 (points INTEGER, engine VARCHAR, chassis VARCHAR)
SELECT MIN(points) FROM table_name_48 WHERE engine = "lamborghini v12" AND chassis = "minardi m191b"
### Context: CREATE TABLE table_name_48 (points INTEGER, engine VARCHAR, chassis VARCHAR) ### Question: What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b? ### Answer: SELECT MIN(points) FROM table_name_48 WHERE engine = "lamborghini v12" AND chassis = "minardi m191b"
What is the Chassis from before 1997 with a Lamborghini v12 engine?
CREATE TABLE table_name_98 (chassis VARCHAR, year VARCHAR, engine VARCHAR)
SELECT chassis FROM table_name_98 WHERE year < 1997 AND engine = "lamborghini v12"
### Context: CREATE TABLE table_name_98 (chassis VARCHAR, year VARCHAR, engine VARCHAR) ### Question: What is the Chassis from before 1997 with a Lamborghini v12 engine? ### Answer: SELECT chassis FROM table_name_98 WHERE year < 1997 AND engine = "lamborghini v12"
What is the total of the year with a point larger than 0 or the Chassis of Minardi m190?
CREATE TABLE table_name_32 (year INTEGER, chassis VARCHAR, points VARCHAR)
SELECT SUM(year) FROM table_name_32 WHERE chassis = "minardi m190" AND points > 0
### Context: CREATE TABLE table_name_32 (year INTEGER, chassis VARCHAR, points VARCHAR) ### Question: What is the total of the year with a point larger than 0 or the Chassis of Minardi m190? ### Answer: SELECT SUM(year) FROM table_name_32 WHERE chassis = "minardi m190" AND points > 0
What are the lowest points from 1992 with a Chassis of Minardi m192?
CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, chassis VARCHAR)
SELECT MIN(points) FROM table_name_89 WHERE year = 1992 AND chassis = "minardi m192"
### Context: CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, chassis VARCHAR) ### Question: What are the lowest points from 1992 with a Chassis of Minardi m192? ### Answer: SELECT MIN(points) FROM table_name_89 WHERE year = 1992 AND chassis = "minardi m192"
What Entrant has 0 points and from 1997?
CREATE TABLE table_name_67 (entrant VARCHAR, points VARCHAR, year VARCHAR)
SELECT entrant FROM table_name_67 WHERE points = 0 AND year = 1997
### Context: CREATE TABLE table_name_67 (entrant VARCHAR, points VARCHAR, year VARCHAR) ### Question: What Entrant has 0 points and from 1997? ### Answer: SELECT entrant FROM table_name_67 WHERE points = 0 AND year = 1997
What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?
CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)
SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = "state" AND area = "macraes flat"
### Context: CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR) ### Question: What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area? ### Answer: SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = "state" AND area = "macraes flat"
What year has a decile more than 6, in the Waikouaiti area?
CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR)
SELECT years FROM table_name_78 WHERE decile > 6 AND area = "waikouaiti"
### Context: CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR) ### Question: What year has a decile more than 6, in the Waikouaiti area? ### Answer: SELECT years FROM table_name_78 WHERE decile > 6 AND area = "waikouaiti"
What place did the Nashville Metros place in the 1994/95 Season?
CREATE TABLE table_name_64 (regular_season VARCHAR, year VARCHAR)
SELECT regular_season FROM table_name_64 WHERE year = "1994/95"
### Context: CREATE TABLE table_name_64 (regular_season VARCHAR, year VARCHAR) ### Question: What place did the Nashville Metros place in the 1994/95 Season? ### Answer: SELECT regular_season FROM table_name_64 WHERE year = "1994/95"
What years did the Nashville Metros have Usisl Indoor League?
CREATE TABLE table_name_63 (year VARCHAR, league VARCHAR)
SELECT year FROM table_name_63 WHERE league = "usisl indoor"
### Context: CREATE TABLE table_name_63 (year VARCHAR, league VARCHAR) ### Question: What years did the Nashville Metros have Usisl Indoor League? ### Answer: SELECT year FROM table_name_63 WHERE league = "usisl indoor"
Which Round has kim eun-ha as an Opponent?
CREATE TABLE table_name_37 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_37 WHERE opponent = "kim eun-ha"
### Context: CREATE TABLE table_name_37 (round VARCHAR, opponent VARCHAR) ### Question: Which Round has kim eun-ha as an Opponent? ### Answer: SELECT round FROM table_name_37 WHERE opponent = "kim eun-ha"
Which kind of Edition that has a Surface of clay, and Park Sung-Hee as an opponent?
CREATE TABLE table_name_95 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)
SELECT edition FROM table_name_95 WHERE surface = "clay" AND opponent = "park sung-hee"
### Context: CREATE TABLE table_name_95 (edition VARCHAR, surface VARCHAR, opponent VARCHAR) ### Question: Which kind of Edition that has a Surface of clay, and Park Sung-Hee as an opponent? ### Answer: SELECT edition FROM table_name_95 WHERE surface = "clay" AND opponent = "park sung-hee"
What is the highest gold number count where a county had over 9 golds and 10 silvers?
CREATE TABLE table_name_87 (gold INTEGER, total VARCHAR, silver VARCHAR)
SELECT MAX(gold) FROM table_name_87 WHERE total > 9 AND silver > 10
### Context: CREATE TABLE table_name_87 (gold INTEGER, total VARCHAR, silver VARCHAR) ### Question: What is the highest gold number count where a county had over 9 golds and 10 silvers? ### Answer: SELECT MAX(gold) FROM table_name_87 WHERE total > 9 AND silver > 10
How many bronze medals did the country with 7 medals and over 5 silver medals receive?
CREATE TABLE table_name_88 (bronze INTEGER, total VARCHAR, silver VARCHAR)
SELECT SUM(bronze) FROM table_name_88 WHERE total = 7 AND silver > 5
### Context: CREATE TABLE table_name_88 (bronze INTEGER, total VARCHAR, silver VARCHAR) ### Question: How many bronze medals did the country with 7 medals and over 5 silver medals receive? ### Answer: SELECT SUM(bronze) FROM table_name_88 WHERE total = 7 AND silver > 5
Name the date for venue of lord's
CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_78 WHERE venue = "lord's"
### Context: CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR) ### Question: Name the date for venue of lord's ### Answer: SELECT date FROM table_name_78 WHERE venue = "lord's"
Name the result for venue of lord's
CREATE TABLE table_name_82 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_82 WHERE venue = "lord's"
### Context: CREATE TABLE table_name_82 (result VARCHAR, venue VARCHAR) ### Question: Name the result for venue of lord's ### Answer: SELECT result FROM table_name_82 WHERE venue = "lord's"
Name the date for result of eng by 23 runs
CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_24 WHERE result = "eng by 23 runs"
### Context: CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR) ### Question: Name the date for result of eng by 23 runs ### Answer: SELECT date FROM table_name_24 WHERE result = "eng by 23 runs"
Name the date for result of draw, and venue of edgbaston
CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR)
SELECT date FROM table_name_37 WHERE result = "draw" AND venue = "edgbaston"
### Context: CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR) ### Question: Name the date for result of draw, and venue of edgbaston ### Answer: SELECT date FROM table_name_37 WHERE result = "draw" AND venue = "edgbaston"
What is the total number of weeks that the Seahawks had a record of 5-5?
CREATE TABLE table_name_73 (week VARCHAR, record VARCHAR)
SELECT COUNT(week) FROM table_name_73 WHERE record = "5-5"
### Context: CREATE TABLE table_name_73 (week VARCHAR, record VARCHAR) ### Question: What is the total number of weeks that the Seahawks had a record of 5-5? ### Answer: SELECT COUNT(week) FROM table_name_73 WHERE record = "5-5"
Who has 1 win, 1 loss, and has played 2 matches?
CREATE TABLE table_name_77 (name VARCHAR, matches VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT name FROM table_name_77 WHERE wins = "1" AND losses = "1" AND matches = "2"
### Context: CREATE TABLE table_name_77 (name VARCHAR, matches VARCHAR, wins VARCHAR, losses VARCHAR) ### Question: Who has 1 win, 1 loss, and has played 2 matches? ### Answer: SELECT name FROM table_name_77 WHERE wins = "1" AND losses = "1" AND matches = "2"
Who has 5 losses and has played 11 matches?
CREATE TABLE table_name_47 (name VARCHAR, losses VARCHAR, matches VARCHAR)
SELECT name FROM table_name_47 WHERE losses = "5" AND matches = "11"
### Context: CREATE TABLE table_name_47 (name VARCHAR, losses VARCHAR, matches VARCHAR) ### Question: Who has 5 losses and has played 11 matches? ### Answer: SELECT name FROM table_name_47 WHERE losses = "5" AND matches = "11"
How many matches has Mohammad Al-Shamlan played when there is 1 win?
CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR)
SELECT matches FROM table_name_43 WHERE wins = "1" AND name = "mohammad al-shamlan"
### Context: CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR) ### Question: How many matches has Mohammad Al-Shamlan played when there is 1 win? ### Answer: SELECT matches FROM table_name_43 WHERE wins = "1" AND name = "mohammad al-shamlan"
How many matches were played when there was 1 draw and 1 win?
CREATE TABLE table_name_92 (matches VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT matches FROM table_name_92 WHERE draws = "1" AND wins = "1"
### Context: CREATE TABLE table_name_92 (matches VARCHAR, draws VARCHAR, wins VARCHAR) ### Question: How many matches were played when there was 1 draw and 1 win? ### Answer: SELECT matches FROM table_name_92 WHERE draws = "1" AND wins = "1"
Name the played with lost of 5
CREATE TABLE table_name_65 (played VARCHAR, lost VARCHAR)
SELECT played FROM table_name_65 WHERE lost = "5"
### Context: CREATE TABLE table_name_65 (played VARCHAR, lost VARCHAR) ### Question: Name the played with lost of 5 ### Answer: SELECT played FROM table_name_65 WHERE lost = "5"
Name the played with points against of points against
CREATE TABLE table_name_95 (played VARCHAR, points_against VARCHAR)
SELECT played FROM table_name_95 WHERE points_against = "points against"
### Context: CREATE TABLE table_name_95 (played VARCHAR, points_against VARCHAR) ### Question: Name the played with points against of points against ### Answer: SELECT played FROM table_name_95 WHERE points_against = "points against"
Name the tries with tries against of 38
CREATE TABLE table_name_35 (tries_for VARCHAR, tries_against VARCHAR)
SELECT tries_for FROM table_name_35 WHERE tries_against = "38"
### Context: CREATE TABLE table_name_35 (tries_for VARCHAR, tries_against VARCHAR) ### Question: Name the tries with tries against of 38 ### Answer: SELECT tries_for FROM table_name_35 WHERE tries_against = "38"
Name the points against when tries against is 51 and points is 52 with played of 22
CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)
SELECT points_against FROM table_name_91 WHERE played = "22" AND points = "52" AND tries_against = "51"
### Context: CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR) ### Question: Name the points against when tries against is 51 and points is 52 with played of 22 ### Answer: SELECT points_against FROM table_name_91 WHERE played = "22" AND points = "52" AND tries_against = "51"
Name the points against for cwmllynfell rfc
CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR)
SELECT points_against FROM table_name_27 WHERE club = "cwmllynfell rfc"
### Context: CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR) ### Question: Name the points against for cwmllynfell rfc ### Answer: SELECT points_against FROM table_name_27 WHERE club = "cwmllynfell rfc"
What is lead for the Election Results polling firm and has a PSOE of 39.6% 175?
CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR)
SELECT lead FROM table_name_8 WHERE polling_firm = "election results" AND psoe = "39.6% 175"
### Context: CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR) ### Question: What is lead for the Election Results polling firm and has a PSOE of 39.6% 175? ### Answer: SELECT lead FROM table_name_8 WHERE polling_firm = "election results" AND psoe = "39.6% 175"
What is the PSOE for the Local Elections polling firm?
CREATE TABLE table_name_78 (psoe VARCHAR, polling_firm VARCHAR)
SELECT psoe FROM table_name_78 WHERE polling_firm = "local elections"
### Context: CREATE TABLE table_name_78 (psoe VARCHAR, polling_firm VARCHAR) ### Question: What is the PSOE for the Local Elections polling firm? ### Answer: SELECT psoe FROM table_name_78 WHERE polling_firm = "local elections"
Which date has a PSOE of 36.1%?
CREATE TABLE table_name_86 (date VARCHAR, psoe VARCHAR)
SELECT date FROM table_name_86 WHERE psoe = "36.1%"
### Context: CREATE TABLE table_name_86 (date VARCHAR, psoe VARCHAR) ### Question: Which date has a PSOE of 36.1%? ### Answer: SELECT date FROM table_name_86 WHERE psoe = "36.1%"
Name the height with 9 floors
CREATE TABLE table_name_80 (height_ft___m VARCHAR, floors VARCHAR)
SELECT height_ft___m FROM table_name_80 WHERE floors = 9
### Context: CREATE TABLE table_name_80 (height_ft___m VARCHAR, floors VARCHAR) ### Question: Name the height with 9 floors ### Answer: SELECT height_ft___m FROM table_name_80 WHERE floors = 9
Name the years as tallest when floors are larger than 18
CREATE TABLE table_name_4 (years_as_tallest VARCHAR, floors INTEGER)
SELECT years_as_tallest FROM table_name_4 WHERE floors > 18
### Context: CREATE TABLE table_name_4 (years_as_tallest VARCHAR, floors INTEGER) ### Question: Name the years as tallest when floors are larger than 18 ### Answer: SELECT years_as_tallest FROM table_name_4 WHERE floors > 18
Tell me the name that has 17 floors
CREATE TABLE table_name_25 (name VARCHAR, floors VARCHAR)
SELECT name FROM table_name_25 WHERE floors = 17
### Context: CREATE TABLE table_name_25 (name VARCHAR, floors VARCHAR) ### Question: Tell me the name that has 17 floors ### Answer: SELECT name FROM table_name_25 WHERE floors = 17
Which was the position for overall less than 254, round less than 5 and pick number less than 13?
CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR)
SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13
### Context: CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR) ### Question: Which was the position for overall less than 254, round less than 5 and pick number less than 13? ### Answer: SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13
Name the round having an overall of 6
CREATE TABLE table_name_84 (round VARCHAR, overall VARCHAR)
SELECT round FROM table_name_84 WHERE overall = 6
### Context: CREATE TABLE table_name_84 (round VARCHAR, overall VARCHAR) ### Question: Name the round having an overall of 6 ### Answer: SELECT round FROM table_name_84 WHERE overall = 6
Name the position of the player from college of virginia
CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_96 WHERE college = "virginia"
### Context: CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR) ### Question: Name the position of the player from college of virginia ### Answer: SELECT position FROM table_name_96 WHERE college = "virginia"
What was the date of the game that had a goal of 3?
CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR)
SELECT date FROM table_name_48 WHERE goal = 3
### Context: CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR) ### Question: What was the date of the game that had a goal of 3? ### Answer: SELECT date FROM table_name_48 WHERE goal = 3
What was the date of the game that had a goal of 4?
CREATE TABLE table_name_58 (date VARCHAR, goal VARCHAR)
SELECT date FROM table_name_58 WHERE goal = 4
### Context: CREATE TABLE table_name_58 (date VARCHAR, goal VARCHAR) ### Question: What was the date of the game that had a goal of 4? ### Answer: SELECT date FROM table_name_58 WHERE goal = 4
What is the highest rank of a swimmer in lane 5?
CREATE TABLE table_name_20 (rank INTEGER, lane VARCHAR)
SELECT MAX(rank) FROM table_name_20 WHERE lane = 5
### Context: CREATE TABLE table_name_20 (rank INTEGER, lane VARCHAR) ### Question: What is the highest rank of a swimmer in lane 5? ### Answer: SELECT MAX(rank) FROM table_name_20 WHERE lane = 5
What is the lowest rank of Jens Kruppa in a lane larger than 2?
CREATE TABLE table_name_28 (rank INTEGER, name VARCHAR, lane VARCHAR)
SELECT MIN(rank) FROM table_name_28 WHERE name = "jens kruppa" AND lane > 2
### Context: CREATE TABLE table_name_28 (rank INTEGER, name VARCHAR, lane VARCHAR) ### Question: What is the lowest rank of Jens Kruppa in a lane larger than 2? ### Answer: SELECT MIN(rank) FROM table_name_28 WHERE name = "jens kruppa" AND lane > 2
Which nationality has a lane of 6 and a rank smaller than 6?
CREATE TABLE table_name_33 (nationality VARCHAR, rank VARCHAR, lane VARCHAR)
SELECT nationality FROM table_name_33 WHERE rank < 6 AND lane = 6
### Context: CREATE TABLE table_name_33 (nationality VARCHAR, rank VARCHAR, lane VARCHAR) ### Question: Which nationality has a lane of 6 and a rank smaller than 6? ### Answer: SELECT nationality FROM table_name_33 WHERE rank < 6 AND lane = 6
What is Tony Jacklin's total?
CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)
SELECT total FROM table_name_33 WHERE player = "tony jacklin"
### Context: CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR) ### Question: What is Tony Jacklin's total? ### Answer: SELECT total FROM table_name_33 WHERE player = "tony jacklin"
What was Todd Hamilton's to par?
CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_9 WHERE player = "todd hamilton"
### Context: CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR) ### Question: What was Todd Hamilton's to par? ### Answer: SELECT to_par FROM table_name_9 WHERE player = "todd hamilton"
When was a game won with more than 11 to par?
CREATE TABLE table_name_6 (year_s__won VARCHAR, to_par INTEGER)
SELECT year_s__won FROM table_name_6 WHERE to_par > 11
### Context: CREATE TABLE table_name_6 (year_s__won VARCHAR, to_par INTEGER) ### Question: When was a game won with more than 11 to par? ### Answer: SELECT year_s__won FROM table_name_6 WHERE to_par > 11
Where is the place that has a Callsign of DWRJ-FM?
CREATE TABLE table_name_77 (location VARCHAR, callsign VARCHAR)
SELECT location FROM table_name_77 WHERE callsign = "dwrj-fm"
### Context: CREATE TABLE table_name_77 (location VARCHAR, callsign VARCHAR) ### Question: Where is the place that has a Callsign of DWRJ-FM? ### Answer: SELECT location FROM table_name_77 WHERE callsign = "dwrj-fm"
Which Power has Location in metro manila
CREATE TABLE table_name_75 (power__kw_ VARCHAR, location VARCHAR)
SELECT power__kw_ FROM table_name_75 WHERE location = "metro manila"
### Context: CREATE TABLE table_name_75 (power__kw_ VARCHAR, location VARCHAR) ### Question: Which Power has Location in metro manila ### Answer: SELECT power__kw_ FROM table_name_75 WHERE location = "metro manila"
Which tier of the tournament has Mont de Marson in it?
CREATE TABLE table_name_61 (tier VARCHAR, tournament VARCHAR)
SELECT tier FROM table_name_61 WHERE tournament = "mont de marson"
### Context: CREATE TABLE table_name_61 (tier VARCHAR, tournament VARCHAR) ### Question: Which tier of the tournament has Mont de Marson in it? ### Answer: SELECT tier FROM table_name_61 WHERE tournament = "mont de marson"
Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final?
CREATE TABLE table_name_65 (date VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_65 WHERE opponents_in_the_final = "akgul amanmuradova nina bratchikova"
### Context: CREATE TABLE table_name_65 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final? ### Answer: SELECT date FROM table_name_65 WHERE opponents_in_the_final = "akgul amanmuradova nina bratchikova"
Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final?
CREATE TABLE table_name_20 (date VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_20 WHERE opponents_in_the_final = "claire de gubernatis alexandra dulgheru"
### Context: CREATE TABLE table_name_20 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final? ### Answer: SELECT date FROM table_name_20 WHERE opponents_in_the_final = "claire de gubernatis alexandra dulgheru"
What is the score in the touranament of Antalya-Belek?
CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_66 WHERE tournament = "antalya-belek"
### Context: CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR) ### Question: What is the score in the touranament of Antalya-Belek? ### Answer: SELECT score FROM table_name_66 WHERE tournament = "antalya-belek"
Which date has the tier of Itf $10k?
CREATE TABLE table_name_66 (date VARCHAR, tier VARCHAR)
SELECT date FROM table_name_66 WHERE tier = "itf $10k"
### Context: CREATE TABLE table_name_66 (date VARCHAR, tier VARCHAR) ### Question: Which date has the tier of Itf $10k? ### Answer: SELECT date FROM table_name_66 WHERE tier = "itf $10k"
What is the score vs. all when the score vs. Terran is 159?
CREATE TABLE table_name_72 (vs_all VARCHAR, vs_terran VARCHAR)
SELECT vs_all FROM table_name_72 WHERE vs_terran = "159"
### Context: CREATE TABLE table_name_72 (vs_all VARCHAR, vs_terran VARCHAR) ### Question: What is the score vs. all when the score vs. Terran is 159? ### Answer: SELECT vs_all FROM table_name_72 WHERE vs_terran = "159"
What is the score vs. Protoss when the score vs. Terran is 10 wins?
CREATE TABLE table_name_97 (vs_protoss VARCHAR, vs_terran VARCHAR)
SELECT vs_protoss FROM table_name_97 WHERE vs_terran = "10 wins"
### Context: CREATE TABLE table_name_97 (vs_protoss VARCHAR, vs_terran VARCHAR) ### Question: What is the score vs. Protoss when the score vs. Terran is 10 wins? ### Answer: SELECT vs_protoss FROM table_name_97 WHERE vs_terran = "10 wins"
What is the score vs. Terran when the score vs. Zerg is 69?
CREATE TABLE table_name_12 (vs_terran VARCHAR, vs_zerg VARCHAR)
SELECT vs_terran FROM table_name_12 WHERE vs_zerg = "69"
### Context: CREATE TABLE table_name_12 (vs_terran VARCHAR, vs_zerg VARCHAR) ### Question: What is the score vs. Terran when the score vs. Zerg is 69? ### Answer: SELECT vs_terran FROM table_name_12 WHERE vs_zerg = "69"
What occurrs as of September 1, 2012 when the value for vs. all is 65.47%?
CREATE TABLE table_name_61 (as_of_september_1 VARCHAR, _2012 VARCHAR, vs_all VARCHAR)
SELECT as_of_september_1, _2012 FROM table_name_61 WHERE vs_all = "65.47%"
### Context: CREATE TABLE table_name_61 (as_of_september_1 VARCHAR, _2012 VARCHAR, vs_all VARCHAR) ### Question: What occurrs as of September 1, 2012 when the value for vs. all is 65.47%? ### Answer: SELECT as_of_september_1, _2012 FROM table_name_61 WHERE vs_all = "65.47%"
What is the record of the opponent that has a bye?
CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_35 WHERE opponent = "bye"
### Context: CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR) ### Question: What is the record of the opponent that has a bye? ### Answer: SELECT record FROM table_name_35 WHERE opponent = "bye"
What was the average total medals received by Roland Hayes School when there were 0 gold medals?
CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)
SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = "roland hayes school"
### Context: CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR) ### Question: What was the average total medals received by Roland Hayes School when there were 0 gold medals? ### Answer: SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = "roland hayes school"
What was the total number of medals received by James Logan High School when it received less than 1 silver medal?
CREATE TABLE table_name_42 (total_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)
SELECT COUNT(total_medals) FROM table_name_42 WHERE ensemble = "james logan high school" AND silver_medals < 1
### Context: CREATE TABLE table_name_42 (total_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR) ### Question: What was the total number of medals received by James Logan High School when it received less than 1 silver medal? ### Answer: SELECT COUNT(total_medals) FROM table_name_42 WHERE ensemble = "james logan high school" AND silver_medals < 1
What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals?
CREATE TABLE table_name_77 (bronze_medals INTEGER, gold_medals INTEGER)
SELECT MAX(bronze_medals) FROM table_name_77 WHERE gold_medals < 0
### Context: CREATE TABLE table_name_77 (bronze_medals INTEGER, gold_medals INTEGER) ### Question: What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals? ### Answer: SELECT MAX(bronze_medals) FROM table_name_77 WHERE gold_medals < 0
What was the Score of the 2008 Africa Cup of Nations Competition?
CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_3 WHERE competition = "2008 africa cup of nations"
### Context: CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR) ### Question: What was the Score of the 2008 Africa Cup of Nations Competition? ### Answer: SELECT score FROM table_name_3 WHERE competition = "2008 africa cup of nations"
Name the most goals with losses less than 15 and position more than 8 with points of 42+4
CREATE TABLE table_name_18 (goals_for INTEGER, points VARCHAR, losses VARCHAR, position VARCHAR)
SELECT MAX(goals_for) FROM table_name_18 WHERE losses < 15 AND position > 8 AND points = "42+4"
### Context: CREATE TABLE table_name_18 (goals_for INTEGER, points VARCHAR, losses VARCHAR, position VARCHAR) ### Question: Name the most goals with losses less than 15 and position more than 8 with points of 42+4 ### Answer: SELECT MAX(goals_for) FROM table_name_18 WHERE losses < 15 AND position > 8 AND points = "42+4"
Name the average goals against for draws of 8 and wins more than 22 with losses less than 12
CREATE TABLE table_name_92 (goals_against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR)
SELECT AVG(goals_against) FROM table_name_92 WHERE draws = 8 AND losses < 12 AND wins > 22
### Context: CREATE TABLE table_name_92 (goals_against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR) ### Question: Name the average goals against for draws of 8 and wins more than 22 with losses less than 12 ### Answer: SELECT AVG(goals_against) FROM table_name_92 WHERE draws = 8 AND losses < 12 AND wins > 22
Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35
CREATE TABLE table_name_19 (wins INTEGER, goal_difference VARCHAR, position VARCHAR, goals_for VARCHAR)
SELECT MIN(wins) FROM table_name_19 WHERE position < 20 AND goals_for = 35 AND goal_difference < -20
### Context: CREATE TABLE table_name_19 (wins INTEGER, goal_difference VARCHAR, position VARCHAR, goals_for VARCHAR) ### Question: Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35 ### Answer: SELECT MIN(wins) FROM table_name_19 WHERE position < 20 AND goals_for = 35 AND goal_difference < -20
Name the average losses for draws larger than 6 and played more than 38
CREATE TABLE table_name_58 (losses INTEGER, draws VARCHAR, played VARCHAR)
SELECT AVG(losses) FROM table_name_58 WHERE draws > 6 AND played > 38
### Context: CREATE TABLE table_name_58 (losses INTEGER, draws VARCHAR, played VARCHAR) ### Question: Name the average losses for draws larger than 6 and played more than 38 ### Answer: SELECT AVG(losses) FROM table_name_58 WHERE draws > 6 AND played > 38
Name the least goals against for played more than 38
CREATE TABLE table_name_4 (goals_against INTEGER, played INTEGER)
SELECT MIN(goals_against) FROM table_name_4 WHERE played > 38
### Context: CREATE TABLE table_name_4 (goals_against INTEGER, played INTEGER) ### Question: Name the least goals against for played more than 38 ### Answer: SELECT MIN(goals_against) FROM table_name_4 WHERE played > 38
After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23?
CREATE TABLE table_name_64 (entrant VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)
SELECT entrant FROM table_name_64 WHERE year > 1961 AND engine = "ferrari v8" AND points < 23
### Context: CREATE TABLE table_name_64 (entrant VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR) ### Question: After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23? ### Answer: SELECT entrant FROM table_name_64 WHERE year > 1961 AND engine = "ferrari v8" AND points < 23
What is was the Chassis in 1967?
CREATE TABLE table_name_38 (chassis VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_38 WHERE year = 1967
### Context: CREATE TABLE table_name_38 (chassis VARCHAR, year VARCHAR) ### Question: What is was the Chassis in 1967? ### Answer: SELECT chassis FROM table_name_38 WHERE year = 1967
In 1962, what was the total number of points, when the Engine was Ferrari v6?
CREATE TABLE table_name_97 (points VARCHAR, engine VARCHAR, year VARCHAR)
SELECT COUNT(points) FROM table_name_97 WHERE engine = "ferrari v6" AND year = 1962
### Context: CREATE TABLE table_name_97 (points VARCHAR, engine VARCHAR, year VARCHAR) ### Question: In 1962, what was the total number of points, when the Engine was Ferrari v6? ### Answer: SELECT COUNT(points) FROM table_name_97 WHERE engine = "ferrari v6" AND year = 1962
In 1961, what was the Chassis when the points were lower than 6?
CREATE TABLE table_name_51 (chassis VARCHAR, points VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_51 WHERE points < 6 AND year = 1961
### Context: CREATE TABLE table_name_51 (chassis VARCHAR, points VARCHAR, year VARCHAR) ### Question: In 1961, what was the Chassis when the points were lower than 6? ### Answer: SELECT chassis FROM table_name_51 WHERE points < 6 AND year = 1961
What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66?
CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR)
SELECT SUM(year) FROM table_name_68 WHERE entrant = "scuderia ferrari" AND chassis = "ferrari 312/66"
### Context: CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR) ### Question: What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66? ### Answer: SELECT SUM(year) FROM table_name_68 WHERE entrant = "scuderia ferrari" AND chassis = "ferrari 312/66"
What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points?
CREATE TABLE table_name_69 (year INTEGER, entrant VARCHAR, points VARCHAR)
SELECT SUM(year) FROM table_name_69 WHERE entrant = "scuderia centro sud" AND points = 6
### Context: CREATE TABLE table_name_69 (year INTEGER, entrant VARCHAR, points VARCHAR) ### Question: What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points? ### Answer: SELECT SUM(year) FROM table_name_69 WHERE entrant = "scuderia centro sud" AND points = 6
In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/
CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR)
SELECT authority FROM table_name_93 WHERE gender = "coed" AND area = "kelvin grove" AND name = "tkkm o manawatu"
### Context: CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR) ### Question: In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/ ### Answer: SELECT authority FROM table_name_93 WHERE gender = "coed" AND area = "kelvin grove" AND name = "tkkm o manawatu"
which Authority has a coed school with a decile greater than 4, with a 150 roll?
CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)
SELECT authority FROM table_name_49 WHERE gender = "coed" AND decile > 4 AND roll = "150"
### Context: CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR) ### Question: which Authority has a coed school with a decile greater than 4, with a 150 roll? ### Answer: SELECT authority FROM table_name_49 WHERE gender = "coed" AND decile > 4 AND roll = "150"
Name the language for trotta
CREATE TABLE table_name_68 (language VARCHAR, original_title VARCHAR)
SELECT language FROM table_name_68 WHERE original_title = "trotta"
### Context: CREATE TABLE table_name_68 (language VARCHAR, original_title VARCHAR) ### Question: Name the language for trotta ### Answer: SELECT language FROM table_name_68 WHERE original_title = "trotta"
Name the original title directed by luis buñuel
CREATE TABLE table_name_85 (original_title VARCHAR, director VARCHAR)
SELECT original_title FROM table_name_85 WHERE director = "luis buñuel"
### Context: CREATE TABLE table_name_85 (original_title VARCHAR, director VARCHAR) ### Question: Name the original title directed by luis buñuel ### Answer: SELECT original_title FROM table_name_85 WHERE director = "luis buñuel"
Name the original title directed by sudhendu roy
CREATE TABLE table_name_79 (original_title VARCHAR, director VARCHAR)
SELECT original_title FROM table_name_79 WHERE director = "sudhendu roy"
### Context: CREATE TABLE table_name_79 (original_title VARCHAR, director VARCHAR) ### Question: Name the original title directed by sudhendu roy ### Answer: SELECT original_title FROM table_name_79 WHERE director = "sudhendu roy"
Name the film title that is spanish from peru
CREATE TABLE table_name_78 (film_title_used_in_nomination VARCHAR, language VARCHAR, country VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_78 WHERE language = "spanish" AND country = "peru"
### Context: CREATE TABLE table_name_78 (film_title_used_in_nomination VARCHAR, language VARCHAR, country VARCHAR) ### Question: Name the film title that is spanish from peru ### Answer: SELECT film_title_used_in_nomination FROM table_name_78 WHERE language = "spanish" AND country = "peru"
Name the langauge for switzerland
CREATE TABLE table_name_96 (language VARCHAR, country VARCHAR)
SELECT language FROM table_name_96 WHERE country = "switzerland"
### Context: CREATE TABLE table_name_96 (language VARCHAR, country VARCHAR) ### Question: Name the langauge for switzerland ### Answer: SELECT language FROM table_name_96 WHERE country = "switzerland"
What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?
CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR)
SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0
### Context: CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR) ### Question: What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2? ### Answer: SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0
How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals?
CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR)
SELECT AVG(bronze) FROM table_name_70 WHERE rank < 5 AND gold > 2 AND total = 9 AND silver < 4
### Context: CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR) ### Question: How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals? ### Answer: SELECT AVG(bronze) FROM table_name_70 WHERE rank < 5 AND gold > 2 AND total = 9 AND silver < 4
which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?
CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)
SELECT order FROM table_name_26 WHERE family = "vespertilionidae" AND name = "northern long-eared myotis"
### Context: CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR) ### Question: which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis? ### Answer: SELECT order FROM table_name_26 WHERE family = "vespertilionidae" AND name = "northern long-eared myotis"
What year has WSC class?
CREATE TABLE table_name_42 (year VARCHAR, class VARCHAR)
SELECT year FROM table_name_42 WHERE class = "wsc"
### Context: CREATE TABLE table_name_42 (year VARCHAR, class VARCHAR) ### Question: What year has WSC class? ### Answer: SELECT year FROM table_name_42 WHERE class = "wsc"
Which race has D. Beadman for the jockey and a 4th place result?
CREATE TABLE table_name_27 (race VARCHAR, jockey VARCHAR, result VARCHAR)
SELECT race FROM table_name_27 WHERE jockey = "d. beadman" AND result = "4th"
### Context: CREATE TABLE table_name_27 (race VARCHAR, jockey VARCHAR, result VARCHAR) ### Question: Which race has D. Beadman for the jockey and a 4th place result? ### Answer: SELECT race FROM table_name_27 WHERE jockey = "d. beadman" AND result = "4th"
Who is the 1st member in the 1884 by-election?
CREATE TABLE table_name_7 (election VARCHAR)
SELECT 1 AS st_member FROM table_name_7 WHERE election = "1884 by-election"
### Context: CREATE TABLE table_name_7 (election VARCHAR) ### Question: Who is the 1st member in the 1884 by-election? ### Answer: SELECT 1 AS st_member FROM table_name_7 WHERE election = "1884 by-election"
What is the 2nd party in the 1874 election?
CREATE TABLE table_name_16 (election VARCHAR)
SELECT 2 AS nd_party FROM table_name_16 WHERE election = "1874"
### Context: CREATE TABLE table_name_16 (election VARCHAR) ### Question: What is the 2nd party in the 1874 election? ### Answer: SELECT 2 AS nd_party FROM table_name_16 WHERE election = "1874"
Which school had a player who played the C position?
CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR)
SELECT school FROM table_name_64 WHERE position = "c"
### Context: CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR) ### Question: Which school had a player who played the C position? ### Answer: SELECT school FROM table_name_64 WHERE position = "c"
Which game is on the date October 16?
CREATE TABLE table_name_11 (game INTEGER, date VARCHAR)
SELECT AVG(game) FROM table_name_11 WHERE date = "october 16"
### Context: CREATE TABLE table_name_11 (game INTEGER, date VARCHAR) ### Question: Which game is on the date October 16? ### Answer: SELECT AVG(game) FROM table_name_11 WHERE date = "october 16"
What is the 2009 value with a q1 in 2006 in the French Open?
CREATE TABLE table_name_75 (tournament VARCHAR)
SELECT 2009 FROM table_name_75 WHERE 2006 = "q1" AND tournament = "french open"
### Context: CREATE TABLE table_name_75 (tournament VARCHAR) ### Question: What is the 2009 value with a q1 in 2006 in the French Open? ### Answer: SELECT 2009 FROM table_name_75 WHERE 2006 = "q1" AND tournament = "french open"
What is the 2010 value with a 2r in 2008 and A in 2013?
CREATE TABLE table_name_83 (Id VARCHAR)
SELECT 2010 FROM table_name_83 WHERE 2008 = "2r" AND 2013 = "a"
### Context: CREATE TABLE table_name_83 (Id VARCHAR) ### Question: What is the 2010 value with a 2r in 2008 and A in 2013? ### Answer: SELECT 2010 FROM table_name_83 WHERE 2008 = "2r" AND 2013 = "a"
What is the 2007 value with 1r in 2009 in the US Open?
CREATE TABLE table_name_26 (tournament VARCHAR)
SELECT 2007 FROM table_name_26 WHERE 2009 = "1r" AND tournament = "us open"
### Context: CREATE TABLE table_name_26 (tournament VARCHAR) ### Question: What is the 2007 value with 1r in 2009 in the US Open? ### Answer: SELECT 2007 FROM table_name_26 WHERE 2009 = "1r" AND tournament = "us open"
What is the 2009 value in the 2011 Grand Slam Tournaments?
CREATE TABLE table_name_55 (Id VARCHAR)
SELECT 2009 FROM table_name_55 WHERE 2011 = "grand slam tournaments"
### Context: CREATE TABLE table_name_55 (Id VARCHAR) ### Question: What is the 2009 value in the 2011 Grand Slam Tournaments? ### Answer: SELECT 2009 FROM table_name_55 WHERE 2011 = "grand slam tournaments"
What is the 2005 value with 1r in 2013 and q2 in 2011?
CREATE TABLE table_name_73 (Id VARCHAR)
SELECT 2005 FROM table_name_73 WHERE 2013 = "1r" AND 2011 = "q2"
### Context: CREATE TABLE table_name_73 (Id VARCHAR) ### Question: What is the 2005 value with 1r in 2013 and q2 in 2011? ### Answer: SELECT 2005 FROM table_name_73 WHERE 2013 = "1r" AND 2011 = "q2"
What is the 2010 value in the Australian Open?
CREATE TABLE table_name_60 (tournament VARCHAR)
SELECT 2010 FROM table_name_60 WHERE tournament = "australian open"
### Context: CREATE TABLE table_name_60 (tournament VARCHAR) ### Question: What is the 2010 value in the Australian Open? ### Answer: SELECT 2010 FROM table_name_60 WHERE tournament = "australian open"