question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Can you tell me the lowest Area km 2 that has the Population of 2,352?
CREATE TABLE table_name_16 (area_km_2 INTEGER, population VARCHAR)
SELECT MIN(area_km_2) FROM table_name_16 WHERE population = 2 OFFSET 352
### Context: CREATE TABLE table_name_16 (area_km_2 INTEGER, population VARCHAR) ### Question: Can you tell me the lowest Area km 2 that has the Population of 2,352? ### Answer: SELECT MIN(area_km_2) FROM table_name_16 WHERE population = 2 OFFSET 352
What is the FCC info for the radio station in West Lafayette, Indiana?
CREATE TABLE table_name_35 (fcc_info VARCHAR, state VARCHAR, city_of_license VARCHAR)
SELECT fcc_info FROM table_name_35 WHERE state = "indiana" AND city_of_license = "west lafayette"
### Context: CREATE TABLE table_name_35 (fcc_info VARCHAR, state VARCHAR, city_of_license VARCHAR) ### Question: What is the FCC info for the radio station in West Lafayette, Indiana? ### Answer: SELECT fcc_info FROM table_name_35 WHERE state = "indiana" AND city_of_license = "west lafayette"
What is the frequency of the radio station in Indiana that has a call sign of WGNR?
CREATE TABLE table_name_70 (frequency VARCHAR, state VARCHAR, call_sign VARCHAR)
SELECT frequency FROM table_name_70 WHERE state = "indiana" AND call_sign = "wgnr"
### Context: CREATE TABLE table_name_70 (frequency VARCHAR, state VARCHAR, call_sign VARCHAR) ### Question: What is the frequency of the radio station in Indiana that has a call sign of WGNR? ### Answer: SELECT frequency FROM table_name_70 WHERE state = "indiana" AND call_sign = "wgnr"
What is the frequency of the radio station with a call sign of WGNR-FM?
CREATE TABLE table_name_19 (frequency VARCHAR, call_sign VARCHAR)
SELECT frequency FROM table_name_19 WHERE call_sign = "wgnr-fm"
### Context: CREATE TABLE table_name_19 (frequency VARCHAR, call_sign VARCHAR) ### Question: What is the frequency of the radio station with a call sign of WGNR-FM? ### Answer: SELECT frequency FROM table_name_19 WHERE call_sign = "wgnr-fm"
What state is the radio station in that has a frequency of 90.1 FM and a city license in New Castle?
CREATE TABLE table_name_71 (state VARCHAR, frequency VARCHAR, city_of_license VARCHAR)
SELECT state FROM table_name_71 WHERE frequency = "90.1 fm" AND city_of_license = "new castle"
### Context: CREATE TABLE table_name_71 (state VARCHAR, frequency VARCHAR, city_of_license VARCHAR) ### Question: What state is the radio station in that has a frequency of 90.1 FM and a city license in New Castle? ### Answer: SELECT state FROM table_name_71 WHERE frequency = "90.1 fm" AND city_of_license = "new castle...
What city is 103.3 FM licensed in?
CREATE TABLE table_name_61 (city_of_license VARCHAR, frequency VARCHAR)
SELECT city_of_license FROM table_name_61 WHERE frequency = "103.3 fm"
### Context: CREATE TABLE table_name_61 (city_of_license VARCHAR, frequency VARCHAR) ### Question: What city is 103.3 FM licensed in? ### Answer: SELECT city_of_license FROM table_name_61 WHERE frequency = "103.3 fm"
What is the call sign for 90.9 FM which is in Florida?
CREATE TABLE table_name_87 (call_sign VARCHAR, state VARCHAR, frequency VARCHAR)
SELECT call_sign FROM table_name_87 WHERE state = "florida" AND frequency = "90.9 fm"
### Context: CREATE TABLE table_name_87 (call_sign VARCHAR, state VARCHAR, frequency VARCHAR) ### Question: What is the call sign for 90.9 FM which is in Florida? ### Answer: SELECT call_sign FROM table_name_87 WHERE state = "florida" AND frequency = "90.9 fm"
What is the result for the Call to Arms I event?
CREATE TABLE table_name_98 (res VARCHAR, event VARCHAR)
SELECT res FROM table_name_98 WHERE event = "call to arms i"
### Context: CREATE TABLE table_name_98 (res VARCHAR, event VARCHAR) ### Question: What is the result for the Call to Arms I event? ### Answer: SELECT res FROM table_name_98 WHERE event = "call to arms i"
What is the record for the Utah Jazz?
CREATE TABLE table_name_4 (record VARCHAR, team VARCHAR)
SELECT record FROM table_name_4 WHERE team = "utah jazz"
### Context: CREATE TABLE table_name_4 (record VARCHAR, team VARCHAR) ### Question: What is the record for the Utah Jazz? ### Answer: SELECT record FROM table_name_4 WHERE team = "utah jazz"
what is the location when the method is tko (punches) and the time is 2:48?
CREATE TABLE table_name_65 (location VARCHAR, method VARCHAR, time VARCHAR)
SELECT location FROM table_name_65 WHERE method = "tko (punches)" AND time = "2:48"
### Context: CREATE TABLE table_name_65 (location VARCHAR, method VARCHAR, time VARCHAR) ### Question: what is the location when the method is tko (punches) and the time is 2:48? ### Answer: SELECT location FROM table_name_65 WHERE method = "tko (punches)" AND time = "2:48"
what is the location when the record is 5-1-1?
CREATE TABLE table_name_90 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_90 WHERE record = "5-1-1"
### Context: CREATE TABLE table_name_90 (location VARCHAR, record VARCHAR) ### Question: what is the location when the record is 5-1-1? ### Answer: SELECT location FROM table_name_90 WHERE record = "5-1-1"
What is the total avg/g of McCrary, Greg?
CREATE TABLE table_name_40 (avg_g VARCHAR, name VARCHAR)
SELECT COUNT(avg_g) FROM table_name_40 WHERE name = "mccrary, greg"
### Context: CREATE TABLE table_name_40 (avg_g VARCHAR, name VARCHAR) ### Question: What is the total avg/g of McCrary, Greg? ### Answer: SELECT COUNT(avg_g) FROM table_name_40 WHERE name = "mccrary, greg"
What is the lowest effic with a 58.9 avg/g?
CREATE TABLE table_name_58 (effic INTEGER, avg_g VARCHAR)
SELECT MIN(effic) FROM table_name_58 WHERE avg_g = 58.9
### Context: CREATE TABLE table_name_58 (effic INTEGER, avg_g VARCHAR) ### Question: What is the lowest effic with a 58.9 avg/g? ### Answer: SELECT MIN(effic) FROM table_name_58 WHERE avg_g = 58.9
What is the avg/g of Rhines, Chris, who has an effic greater than 73.95?
CREATE TABLE table_name_70 (avg_g VARCHAR, effic VARCHAR, name VARCHAR)
SELECT avg_g FROM table_name_70 WHERE effic > 73.95 AND name = "rhines, chris"
### Context: CREATE TABLE table_name_70 (avg_g VARCHAR, effic VARCHAR, name VARCHAR) ### Question: What is the avg/g of Rhines, Chris, who has an effic greater than 73.95? ### Answer: SELECT avg_g FROM table_name_70 WHERE effic > 73.95 AND name = "rhines, chris"
Which week has a record of 5–2?
CREATE TABLE table_name_57 (week VARCHAR, record VARCHAR)
SELECT week FROM table_name_57 WHERE record = "5–2"
### Context: CREATE TABLE table_name_57 (week VARCHAR, record VARCHAR) ### Question: Which week has a record of 5–2? ### Answer: SELECT week FROM table_name_57 WHERE record = "5–2"
On what date was the result w 28–7?
CREATE TABLE table_name_85 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_85 WHERE result = "w 28–7"
### Context: CREATE TABLE table_name_85 (date VARCHAR, result VARCHAR) ### Question: On what date was the result w 28–7? ### Answer: SELECT date FROM table_name_85 WHERE result = "w 28–7"
Who has a birth of 16 august 1401?
CREATE TABLE table_name_21 (name VARCHAR, birth VARCHAR)
SELECT name FROM table_name_21 WHERE birth = "16 august 1401"
### Context: CREATE TABLE table_name_21 (name VARCHAR, birth VARCHAR) ### Question: Who has a birth of 16 august 1401? ### Answer: SELECT name FROM table_name_21 WHERE birth = "16 august 1401"
when was the death of the person with husband Charles, 1st dauphin?
CREATE TABLE table_name_1 (death VARCHAR, husband VARCHAR)
SELECT death FROM table_name_1 WHERE husband = "charles, 1st dauphin"
### Context: CREATE TABLE table_name_1 (death VARCHAR, husband VARCHAR) ### Question: when was the death of the person with husband Charles, 1st dauphin? ### Answer: SELECT death FROM table_name_1 WHERE husband = "charles, 1st dauphin"
when was the death when the birth was 8 december 1542?
CREATE TABLE table_name_45 (death VARCHAR, birth VARCHAR)
SELECT death FROM table_name_45 WHERE birth = "8 december 1542"
### Context: CREATE TABLE table_name_45 (death VARCHAR, birth VARCHAR) ### Question: when was the death when the birth was 8 december 1542? ### Answer: SELECT death FROM table_name_45 WHERE birth = "8 december 1542"
When was became dauphine when birth is 1393?
CREATE TABLE table_name_72 (became_dauphine VARCHAR, birth VARCHAR)
SELECT became_dauphine FROM table_name_72 WHERE birth = "1393"
### Context: CREATE TABLE table_name_72 (became_dauphine VARCHAR, birth VARCHAR) ### Question: When was became dauphine when birth is 1393? ### Answer: SELECT became_dauphine FROM table_name_72 WHERE birth = "1393"
when was the marriage when became dauphine is 31 august 1412?
CREATE TABLE table_name_79 (marriage VARCHAR, became_dauphine VARCHAR)
SELECT marriage FROM table_name_79 WHERE became_dauphine = "31 august 1412"
### Context: CREATE TABLE table_name_79 (marriage VARCHAR, became_dauphine VARCHAR) ### Question: when was the marriage when became dauphine is 31 august 1412? ### Answer: SELECT marriage FROM table_name_79 WHERE became_dauphine = "31 august 1412"
who is the husband when ceased to be dauphine is 22 july 1461 became queen?
CREATE TABLE table_name_36 (husband VARCHAR, ceased_to_be_dauphine VARCHAR)
SELECT husband FROM table_name_36 WHERE ceased_to_be_dauphine = "22 july 1461 became queen"
### Context: CREATE TABLE table_name_36 (husband VARCHAR, ceased_to_be_dauphine VARCHAR) ### Question: who is the husband when ceased to be dauphine is 22 july 1461 became queen? ### Answer: SELECT husband FROM table_name_36 WHERE ceased_to_be_dauphine = "22 july 1461 became queen"
what is the least money ($) when the country is united states and the player is kirk triplett?
CREATE TABLE table_name_45 (money___ INTEGER, country VARCHAR, player VARCHAR)
SELECT MIN(money___) AS $__ FROM table_name_45 WHERE country = "united states" AND player = "kirk triplett"
### Context: CREATE TABLE table_name_45 (money___ INTEGER, country VARCHAR, player VARCHAR) ### Question: what is the least money ($) when the country is united states and the player is kirk triplett? ### Answer: SELECT MIN(money___) AS $__ FROM table_name_45 WHERE country = "united states" AND player = "kirk triplett"
what is the most money ($) when the score is 71-74-69-72=286?
CREATE TABLE table_name_21 (money___ INTEGER, score VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_21 WHERE score = 71 - 74 - 69 - 72 = 286
### Context: CREATE TABLE table_name_21 (money___ INTEGER, score VARCHAR) ### Question: what is the most money ($) when the score is 71-74-69-72=286? ### Answer: SELECT MAX(money___) AS $__ FROM table_name_21 WHERE score = 71 - 74 - 69 - 72 = 286
What is the Money ($) when the Place is t6, and Player is chris dimarco?
CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
SELECT money___$__ FROM table_name_40 WHERE place = "t6" AND player = "chris dimarco"
### Context: CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is the Money ($) when the Place is t6, and Player is chris dimarco? ### Answer: SELECT money___$__ FROM table_name_40 WHERE place = "t6" AND player = "chris dimarco"
What year was Jamboree made?
CREATE TABLE table_name_26 (year VARCHAR, movie_title VARCHAR)
SELECT year FROM table_name_26 WHERE movie_title = "jamboree"
### Context: CREATE TABLE table_name_26 (year VARCHAR, movie_title VARCHAR) ### Question: What year was Jamboree made? ### Answer: SELECT year FROM table_name_26 WHERE movie_title = "jamboree"
What movie was made in 1957?
CREATE TABLE table_name_75 (movie_title VARCHAR, year VARCHAR)
SELECT movie_title FROM table_name_75 WHERE year = 1957
### Context: CREATE TABLE table_name_75 (movie_title VARCHAR, year VARCHAR) ### Question: What movie was made in 1957? ### Answer: SELECT movie_title FROM table_name_75 WHERE year = 1957
What year was Sam Kazman a producer?
CREATE TABLE table_name_35 (year VARCHAR, producer VARCHAR)
SELECT year FROM table_name_35 WHERE producer = "sam kazman"
### Context: CREATE TABLE table_name_35 (year VARCHAR, producer VARCHAR) ### Question: What year was Sam Kazman a producer? ### Answer: SELECT year FROM table_name_35 WHERE producer = "sam kazman"
Who were the producers in 1961?
CREATE TABLE table_name_60 (producer VARCHAR, year VARCHAR)
SELECT producer FROM table_name_60 WHERE year = 1961
### Context: CREATE TABLE table_name_60 (producer VARCHAR, year VARCHAR) ### Question: Who were the producers in 1961? ### Answer: SELECT producer FROM table_name_60 WHERE year = 1961
What were the roles in 1961?
CREATE TABLE table_name_70 (role VARCHAR, year VARCHAR)
SELECT role FROM table_name_70 WHERE year = 1961
### Context: CREATE TABLE table_name_70 (role VARCHAR, year VARCHAR) ### Question: What were the roles in 1961? ### Answer: SELECT role FROM table_name_70 WHERE year = 1961
What was the date during week 13?
CREATE TABLE table_name_70 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_70 WHERE week = 13
### Context: CREATE TABLE table_name_70 (date VARCHAR, week VARCHAR) ### Question: What was the date during week 13? ### Answer: SELECT date FROM table_name_70 WHERE week = 13
what is the game when on november 27?
CREATE TABLE table_name_26 (game INTEGER, november VARCHAR)
SELECT SUM(game) FROM table_name_26 WHERE november = 27
### Context: CREATE TABLE table_name_26 (game INTEGER, november VARCHAR) ### Question: what is the game when on november 27? ### Answer: SELECT SUM(game) FROM table_name_26 WHERE november = 27
who is the opponent on november 24?
CREATE TABLE table_name_68 (opponent VARCHAR, november VARCHAR)
SELECT opponent FROM table_name_68 WHERE november = 24
### Context: CREATE TABLE table_name_68 (opponent VARCHAR, november VARCHAR) ### Question: who is the opponent on november 24? ### Answer: SELECT opponent FROM table_name_68 WHERE november = 24
Which opposing team had an Against score less than 42 and a Tour Match status in Rugby Park, Gisborne?
CREATE TABLE table_name_48 (opposing_team VARCHAR, venue VARCHAR, against VARCHAR, status VARCHAR)
SELECT opposing_team FROM table_name_48 WHERE against < 42 AND status = "tour match" AND venue = "rugby park, gisborne"
### Context: CREATE TABLE table_name_48 (opposing_team VARCHAR, venue VARCHAR, against VARCHAR, status VARCHAR) ### Question: Which opposing team had an Against score less than 42 and a Tour Match status in Rugby Park, Gisborne? ### Answer: SELECT opposing_team FROM table_name_48 WHERE against < 42 AND status = "tour m...
What date was the opposing team Poverty Bay?
CREATE TABLE table_name_94 (date VARCHAR, opposing_team VARCHAR)
SELECT date FROM table_name_94 WHERE opposing_team = "poverty bay"
### Context: CREATE TABLE table_name_94 (date VARCHAR, opposing_team VARCHAR) ### Question: What date was the opposing team Poverty Bay? ### Answer: SELECT date FROM table_name_94 WHERE opposing_team = "poverty bay"
Which venue had an against score smaller than 18 when the opposing team was North Auckland?
CREATE TABLE table_name_84 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)
SELECT venue FROM table_name_84 WHERE against < 18 AND opposing_team = "north auckland"
### Context: CREATE TABLE table_name_84 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR) ### Question: Which venue had an against score smaller than 18 when the opposing team was North Auckland? ### Answer: SELECT venue FROM table_name_84 WHERE against < 18 AND opposing_team = "north auckland"
What was the score when the time was 14:00?
CREATE TABLE table_name_86 (score VARCHAR, time VARCHAR)
SELECT score FROM table_name_86 WHERE time = "14:00"
### Context: CREATE TABLE table_name_86 (score VARCHAR, time VARCHAR) ### Question: What was the score when the time was 14:00? ### Answer: SELECT score FROM table_name_86 WHERE time = "14:00"
What is High Assists, when High Points is "Kobe Bryant (27)", and when High Rebounds is "Pau Gasol (11)"?
CREATE TABLE table_name_13 (high_assists VARCHAR, high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_name_13 WHERE high_points = "kobe bryant (27)" AND high_rebounds = "pau gasol (11)"
### Context: CREATE TABLE table_name_13 (high_assists VARCHAR, high_points VARCHAR, high_rebounds VARCHAR) ### Question: What is High Assists, when High Points is "Kobe Bryant (27)", and when High Rebounds is "Pau Gasol (11)"? ### Answer: SELECT high_assists FROM table_name_13 WHERE high_points = "kobe bryant (27)" AND...
What is the record for the St. Louis team?
CREATE TABLE table_name_58 (record VARCHAR, team VARCHAR)
SELECT record FROM table_name_58 WHERE team = "st. louis"
### Context: CREATE TABLE table_name_58 (record VARCHAR, team VARCHAR) ### Question: What is the record for the St. Louis team? ### Answer: SELECT record FROM table_name_58 WHERE team = "st. louis"
What shows for 2002 when the 1991 is w?
CREATE TABLE table_name_46 (Id VARCHAR)
SELECT 2002 FROM table_name_46 WHERE 1991 = "w"
### Context: CREATE TABLE table_name_46 (Id VARCHAR) ### Question: What shows for 2002 when the 1991 is w? ### Answer: SELECT 2002 FROM table_name_46 WHERE 1991 = "w"
What shows for 1995 when 1996 shows grand slams?
CREATE TABLE table_name_74 (Id VARCHAR)
SELECT 1995 FROM table_name_74 WHERE 1996 = "grand slams"
### Context: CREATE TABLE table_name_74 (Id VARCHAR) ### Question: What shows for 1995 when 1996 shows grand slams? ### Answer: SELECT 1995 FROM table_name_74 WHERE 1996 = "grand slams"
What shows for 202 when the 1994 is A, the 1989 is NME, and the 199 is 2R?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT 2002 FROM table_name_3 WHERE 1994 = "a" AND 1989 = "nme" AND 1999 = "2r"
### Context: CREATE TABLE table_name_3 (Id VARCHAR) ### Question: What shows for 202 when the 1994 is A, the 1989 is NME, and the 199 is 2R? ### Answer: SELECT 2002 FROM table_name_3 WHERE 1994 = "a" AND 1989 = "nme" AND 1999 = "2r"
What shows for 1992 when 1988 is A, at the Australian Open?
CREATE TABLE table_name_43 (tournament VARCHAR)
SELECT 1992 FROM table_name_43 WHERE 1988 = "a" AND tournament = "australian open"
### Context: CREATE TABLE table_name_43 (tournament VARCHAR) ### Question: What shows for 1992 when 1988 is A, at the Australian Open? ### Answer: SELECT 1992 FROM table_name_43 WHERE 1988 = "a" AND tournament = "australian open"
What shows for 1992 when 2001 is 1r, 1994 is 1r, and the 2002 is qf?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT 1992 FROM table_name_3 WHERE 2001 = "1r" AND 1994 = "1r" AND 2002 = "qf"
### Context: CREATE TABLE table_name_3 (Id VARCHAR) ### Question: What shows for 1992 when 2001 is 1r, 1994 is 1r, and the 2002 is qf? ### Answer: SELECT 1992 FROM table_name_3 WHERE 2001 = "1r" AND 1994 = "1r" AND 2002 = "qf"
What shows for 1988 when 1994 shows 10–6?
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT 1988 FROM table_name_32 WHERE 1994 = "10–6"
### Context: CREATE TABLE table_name_32 (Id VARCHAR) ### Question: What shows for 1988 when 1994 shows 10–6? ### Answer: SELECT 1988 FROM table_name_32 WHERE 1994 = "10–6"
What result is found for the round that has f?
CREATE TABLE table_name_37 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_37 WHERE round = "f"
### Context: CREATE TABLE table_name_37 (result VARCHAR, round VARCHAR) ### Question: What result is found for the round that has f? ### Answer: SELECT result FROM table_name_37 WHERE round = "f"
What was the method of resolution for the fight against dale hartt?
CREATE TABLE table_name_83 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_83 WHERE opponent = "dale hartt"
### Context: CREATE TABLE table_name_83 (method VARCHAR, opponent VARCHAR) ### Question: What was the method of resolution for the fight against dale hartt? ### Answer: SELECT method FROM table_name_83 WHERE opponent = "dale hartt"
Which phase is for the Matchday 4 Round?
CREATE TABLE table_name_72 (phase VARCHAR, round VARCHAR)
SELECT phase FROM table_name_72 WHERE round = "matchday 4"
### Context: CREATE TABLE table_name_72 (phase VARCHAR, round VARCHAR) ### Question: Which phase is for the Matchday 4 Round? ### Answer: SELECT phase FROM table_name_72 WHERE round = "matchday 4"
what is the mountain range when the state is colorado, rank is higher than 90 and mountain peak is whetstone mountain?
CREATE TABLE table_name_28 (mountain_range VARCHAR, mountain_peak VARCHAR, state VARCHAR, rank VARCHAR)
SELECT mountain_range FROM table_name_28 WHERE state = "colorado" AND rank > 90 AND mountain_peak = "whetstone mountain"
### Context: CREATE TABLE table_name_28 (mountain_range VARCHAR, mountain_peak VARCHAR, state VARCHAR, rank VARCHAR) ### Question: what is the mountain range when the state is colorado, rank is higher than 90 and mountain peak is whetstone mountain? ### Answer: SELECT mountain_range FROM table_name_28 WHERE state = "co...
what is the mountain peak when the location is 37.5775°n 105.4856°w?
CREATE TABLE table_name_73 (mountain_peak VARCHAR, location VARCHAR)
SELECT mountain_peak FROM table_name_73 WHERE location = "37.5775°n 105.4856°w"
### Context: CREATE TABLE table_name_73 (mountain_peak VARCHAR, location VARCHAR) ### Question: what is the mountain peak when the location is 37.5775°n 105.4856°w? ### Answer: SELECT mountain_peak FROM table_name_73 WHERE location = "37.5775°n 105.4856°w"
what is the mountain range when the mountain peak is mauna kea?
CREATE TABLE table_name_50 (mountain_range VARCHAR, mountain_peak VARCHAR)
SELECT mountain_range FROM table_name_50 WHERE mountain_peak = "mauna kea"
### Context: CREATE TABLE table_name_50 (mountain_range VARCHAR, mountain_peak VARCHAR) ### Question: what is the mountain range when the mountain peak is mauna kea? ### Answer: SELECT mountain_range FROM table_name_50 WHERE mountain_peak = "mauna kea"
what is the rank when the state is colorado and the location is 37.7859°n 107.7039°w?
CREATE TABLE table_name_21 (rank INTEGER, state VARCHAR, location VARCHAR)
SELECT SUM(rank) FROM table_name_21 WHERE state = "colorado" AND location = "37.7859°n 107.7039°w"
### Context: CREATE TABLE table_name_21 (rank INTEGER, state VARCHAR, location VARCHAR) ### Question: what is the rank when the state is colorado and the location is 37.7859°n 107.7039°w? ### Answer: SELECT SUM(rank) FROM table_name_21 WHERE state = "colorado" AND location = "37.7859°n 107.7039°w"
What is the number of people in attendance when the time is 3:00?
CREATE TABLE table_name_82 (attendance VARCHAR, time VARCHAR)
SELECT attendance FROM table_name_82 WHERE time = "3:00"
### Context: CREATE TABLE table_name_82 (attendance VARCHAR, time VARCHAR) ### Question: What is the number of people in attendance when the time is 3:00? ### Answer: SELECT attendance FROM table_name_82 WHERE time = "3:00"
What was the score at Tiger Stadium on October 12?
CREATE TABLE table_name_14 (score VARCHAR, location VARCHAR, date VARCHAR)
SELECT score FROM table_name_14 WHERE location = "tiger stadium" AND date = "october 12"
### Context: CREATE TABLE table_name_14 (score VARCHAR, location VARCHAR, date VARCHAR) ### Question: What was the score at Tiger Stadium on October 12? ### Answer: SELECT score FROM table_name_14 WHERE location = "tiger stadium" AND date = "october 12"
What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2?
CREATE TABLE table_name_83 (attendance INTEGER, location VARCHAR, game VARCHAR)
SELECT SUM(attendance) FROM table_name_83 WHERE location = "oakland-alameda county coliseum" AND game = 2
### Context: CREATE TABLE table_name_83 (attendance INTEGER, location VARCHAR, game VARCHAR) ### Question: What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2? ### Answer: SELECT SUM(attendance) FROM table_name_83 WHERE location = "oakland-alameda county coliseum" AND game = 2
Who had the most assists in the game against Atlanta?
CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_name_13 WHERE team = "atlanta"
### Context: CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR) ### Question: Who had the most assists in the game against Atlanta? ### Answer: SELECT high_assists FROM table_name_13 WHERE team = "atlanta"
What is the lowest played with a lost bigger than 10?
CREATE TABLE table_name_85 (played INTEGER, lost INTEGER)
SELECT MIN(played) FROM table_name_85 WHERE lost > 10
### Context: CREATE TABLE table_name_85 (played INTEGER, lost INTEGER) ### Question: What is the lowest played with a lost bigger than 10? ### Answer: SELECT MIN(played) FROM table_name_85 WHERE lost > 10
What team with a goals conceded smaller than 25, and a place smaller than 3?
CREATE TABLE table_name_81 (team VARCHAR, goals_conceded VARCHAR, place VARCHAR)
SELECT team FROM table_name_81 WHERE goals_conceded < 25 AND place < 3
### Context: CREATE TABLE table_name_81 (team VARCHAR, goals_conceded VARCHAR, place VARCHAR) ### Question: What team with a goals conceded smaller than 25, and a place smaller than 3? ### Answer: SELECT team FROM table_name_81 WHERE goals_conceded < 25 AND place < 3
What is the sum of draw with a lost smaller than 6, and a place of 5, and a goals scored less than 29?
CREATE TABLE table_name_90 (draw INTEGER, goals_scored VARCHAR, lost VARCHAR, place VARCHAR)
SELECT SUM(draw) FROM table_name_90 WHERE lost < 6 AND place = 5 AND goals_scored < 29
### Context: CREATE TABLE table_name_90 (draw INTEGER, goals_scored VARCHAR, lost VARCHAR, place VARCHAR) ### Question: What is the sum of draw with a lost smaller than 6, and a place of 5, and a goals scored less than 29? ### Answer: SELECT SUM(draw) FROM table_name_90 WHERE lost < 6 AND place = 5 AND goals_scored < 2...
What is the total number for a place with points smaller than 12?
CREATE TABLE table_name_70 (place VARCHAR, points INTEGER)
SELECT COUNT(place) FROM table_name_70 WHERE points < 12
### Context: CREATE TABLE table_name_70 (place VARCHAR, points INTEGER) ### Question: What is the total number for a place with points smaller than 12? ### Answer: SELECT COUNT(place) FROM table_name_70 WHERE points < 12
What is Place, when Country is "United States", and when Player is "Lee Trevino"?
CREATE TABLE table_name_41 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_41 WHERE country = "united states" AND player = "lee trevino"
### Context: CREATE TABLE table_name_41 (place VARCHAR, country VARCHAR, player VARCHAR) ### Question: What is Place, when Country is "United States", and when Player is "Lee Trevino"? ### Answer: SELECT place FROM table_name_41 WHERE country = "united states" AND player = "lee trevino"
What is the total number of Score, when Country is "United States", and when Player is "Lee Trevino"?
CREATE TABLE table_name_75 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT COUNT(score) FROM table_name_75 WHERE country = "united states" AND player = "lee trevino"
### Context: CREATE TABLE table_name_75 (score VARCHAR, country VARCHAR, player VARCHAR) ### Question: What is the total number of Score, when Country is "United States", and when Player is "Lee Trevino"? ### Answer: SELECT COUNT(score) FROM table_name_75 WHERE country = "united states" AND player = "lee trevino"
What is To Par, when Place is "T9", and when Player is "Lee Trevino"?
CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_23 WHERE place = "t9" AND player = "lee trevino"
### Context: CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is To Par, when Place is "T9", and when Player is "Lee Trevino"? ### Answer: SELECT to_par FROM table_name_23 WHERE place = "t9" AND player = "lee trevino"
What is the Country, when Place is T6, and when Player is "Raymond Floyd"?
CREATE TABLE table_name_3 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_3 WHERE place = "t6" AND player = "raymond floyd"
### Context: CREATE TABLE table_name_3 (country VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is the Country, when Place is T6, and when Player is "Raymond Floyd"? ### Answer: SELECT country FROM table_name_3 WHERE place = "t6" AND player = "raymond floyd"
What were the years for Seasons in CSL when they played in the Guiyang Olympic Sports Center and had Top Division Titles (Overall) of 0?
CREATE TABLE table_name_15 (seasons_in_csl VARCHAR, top_division_titles__overall_ VARCHAR, home_stadium VARCHAR)
SELECT seasons_in_csl FROM table_name_15 WHERE top_division_titles__overall_ = 0 AND home_stadium = "guiyang olympic sports center"
### Context: CREATE TABLE table_name_15 (seasons_in_csl VARCHAR, top_division_titles__overall_ VARCHAR, home_stadium VARCHAR) ### Question: What were the years for Seasons in CSL when they played in the Guiyang Olympic Sports Center and had Top Division Titles (Overall) of 0? ### Answer: SELECT seasons_in_csl FROM tabl...
What is To Par, when Place is "T5", and when Country is "United States"?
CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_18 WHERE place = "t5" AND country = "united states"
### Context: CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR, country VARCHAR) ### Question: What is To Par, when Place is "T5", and when Country is "United States"? ### Answer: SELECT to_par FROM table_name_18 WHERE place = "t5" AND country = "united states"
What is Score, when Country is "United States", and when To Par is "+4"?
CREATE TABLE table_name_56 (score VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT score FROM table_name_56 WHERE country = "united states" AND to_par = "+4"
### Context: CREATE TABLE table_name_56 (score VARCHAR, country VARCHAR, to_par VARCHAR) ### Question: What is Score, when Country is "United States", and when To Par is "+4"? ### Answer: SELECT score FROM table_name_56 WHERE country = "united states" AND to_par = "+4"
What is Player, when Score is "66-74-76=216"?
CREATE TABLE table_name_48 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_48 WHERE score = 66 - 74 - 76 = 216
### Context: CREATE TABLE table_name_48 (player VARCHAR, score VARCHAR) ### Question: What is Player, when Score is "66-74-76=216"? ### Answer: SELECT player FROM table_name_48 WHERE score = 66 - 74 - 76 = 216
What is Country, when Place is "T9", and when Player is "Michael Campbell"?
CREATE TABLE table_name_1 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_1 WHERE place = "t9" AND player = "michael campbell"
### Context: CREATE TABLE table_name_1 (country VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is Country, when Place is "T9", and when Player is "Michael Campbell"? ### Answer: SELECT country FROM table_name_1 WHERE place = "t9" AND player = "michael campbell"
What is Player, when Country is "England", and when Place is "T7"?
CREATE TABLE table_name_50 (player VARCHAR, country VARCHAR, place VARCHAR)
SELECT player FROM table_name_50 WHERE country = "england" AND place = "t7"
### Context: CREATE TABLE table_name_50 (player VARCHAR, country VARCHAR, place VARCHAR) ### Question: What is Player, when Country is "England", and when Place is "T7"? ### Answer: SELECT player FROM table_name_50 WHERE country = "england" AND place = "t7"
What is Player, when Place is "1"?
CREATE TABLE table_name_70 (player VARCHAR, place VARCHAR)
SELECT player FROM table_name_70 WHERE place = "1"
### Context: CREATE TABLE table_name_70 (player VARCHAR, place VARCHAR) ### Question: What is Player, when Place is "1"? ### Answer: SELECT player FROM table_name_70 WHERE place = "1"
What is the total of Mark O'meara?
CREATE TABLE table_name_88 (total INTEGER, player VARCHAR)
SELECT MIN(total) FROM table_name_88 WHERE player = "mark o'meara"
### Context: CREATE TABLE table_name_88 (total INTEGER, player VARCHAR) ### Question: What is the total of Mark O'meara? ### Answer: SELECT MIN(total) FROM table_name_88 WHERE player = "mark o'meara"
What is the total for Bernhard Langer?
CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR)
SELECT COUNT(total) FROM table_name_83 WHERE player = "bernhard langer"
### Context: CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR) ### Question: What is the total for Bernhard Langer? ### Answer: SELECT COUNT(total) FROM table_name_83 WHERE player = "bernhard langer"
Which player has +2 to par?
CREATE TABLE table_name_45 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_45 WHERE to_par = "+2"
### Context: CREATE TABLE table_name_45 (player VARCHAR, to_par VARCHAR) ### Question: Which player has +2 to par? ### Answer: SELECT player FROM table_name_45 WHERE to_par = "+2"
Which country has a finish of t22?
CREATE TABLE table_name_87 (country VARCHAR, finish VARCHAR)
SELECT country FROM table_name_87 WHERE finish = "t22"
### Context: CREATE TABLE table_name_87 (country VARCHAR, finish VARCHAR) ### Question: Which country has a finish of t22? ### Answer: SELECT country FROM table_name_87 WHERE finish = "t22"
Which player has a total of more than 290 and +4 to par.
CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_29 WHERE total > 290 AND to_par = "+4"
### Context: CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR) ### Question: Which player has a total of more than 290 and +4 to par. ### Answer: SELECT player FROM table_name_29 WHERE total > 290 AND to_par = "+4"
What is the number of gold medals when the number of bronze medals is 8?
CREATE TABLE table_name_88 (gold VARCHAR, bronze VARCHAR)
SELECT gold FROM table_name_88 WHERE bronze = "8"
### Context: CREATE TABLE table_name_88 (gold VARCHAR, bronze VARCHAR) ### Question: What is the number of gold medals when the number of bronze medals is 8? ### Answer: SELECT gold FROM table_name_88 WHERE bronze = "8"
What rank is the nation that has a bronze of source: Maltese Olympic Committee?
CREATE TABLE table_name_29 (rank VARCHAR, bronze VARCHAR)
SELECT rank FROM table_name_29 WHERE bronze = "source: maltese olympic committee"
### Context: CREATE TABLE table_name_29 (rank VARCHAR, bronze VARCHAR) ### Question: What rank is the nation that has a bronze of source: Maltese Olympic Committee? ### Answer: SELECT rank FROM table_name_29 WHERE bronze = "source: maltese olympic committee"
What rank is the nation with 2 silver medals?
CREATE TABLE table_name_44 (rank VARCHAR, silver VARCHAR)
SELECT rank FROM table_name_44 WHERE silver = "2"
### Context: CREATE TABLE table_name_44 (rank VARCHAR, silver VARCHAR) ### Question: What rank is the nation with 2 silver medals? ### Answer: SELECT rank FROM table_name_44 WHERE silver = "2"
What is the total medal count for the nation that has 5 gold?
CREATE TABLE table_name_91 (total VARCHAR, gold VARCHAR)
SELECT total FROM table_name_91 WHERE gold = "5"
### Context: CREATE TABLE table_name_91 (total VARCHAR, gold VARCHAR) ### Question: What is the total medal count for the nation that has 5 gold? ### Answer: SELECT total FROM table_name_91 WHERE gold = "5"
How many bronze medals does the nation ranked number 1 have?
CREATE TABLE table_name_80 (bronze VARCHAR, rank VARCHAR)
SELECT bronze FROM table_name_80 WHERE rank = "1"
### Context: CREATE TABLE table_name_80 (bronze VARCHAR, rank VARCHAR) ### Question: How many bronze medals does the nation ranked number 1 have? ### Answer: SELECT bronze FROM table_name_80 WHERE rank = "1"
What nation has 28 bronze medals?
CREATE TABLE table_name_63 (nation VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_63 WHERE bronze = "28"
### Context: CREATE TABLE table_name_63 (nation VARCHAR, bronze VARCHAR) ### Question: What nation has 28 bronze medals? ### Answer: SELECT nation FROM table_name_63 WHERE bronze = "28"
What is the average To Par, when Score is "72-67-71-72=282"?
CREATE TABLE table_name_40 (to_par INTEGER, score VARCHAR)
SELECT AVG(to_par) FROM table_name_40 WHERE score = 72 - 67 - 71 - 72 = 282
### Context: CREATE TABLE table_name_40 (to_par INTEGER, score VARCHAR) ### Question: What is the average To Par, when Score is "72-67-71-72=282"? ### Answer: SELECT AVG(to_par) FROM table_name_40 WHERE score = 72 - 67 - 71 - 72 = 282
What is the highest To Par, when Place is "1"?
CREATE TABLE table_name_22 (to_par INTEGER, place VARCHAR)
SELECT MAX(to_par) FROM table_name_22 WHERE place = "1"
### Context: CREATE TABLE table_name_22 (to_par INTEGER, place VARCHAR) ### Question: What is the highest To Par, when Place is "1"? ### Answer: SELECT MAX(to_par) FROM table_name_22 WHERE place = "1"
What's the nationality of Montreal Impact with Justin Mapp Category:articles with hcards as the player?
CREATE TABLE table_name_14 (nationality VARCHAR, team VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_14 WHERE team = "montreal impact" AND player = "justin mapp category:articles with hcards"
### Context: CREATE TABLE table_name_14 (nationality VARCHAR, team VARCHAR, player VARCHAR) ### Question: What's the nationality of Montreal Impact with Justin Mapp Category:articles with hcards as the player? ### Answer: SELECT nationality FROM table_name_14 WHERE team = "montreal impact" AND player = "justin mapp cat...
After 2009, who was the player that has a nationality of Canada?
CREATE TABLE table_name_23 (player VARCHAR, nationality VARCHAR, year VARCHAR)
SELECT player FROM table_name_23 WHERE nationality = "canada" AND year > 2009
### Context: CREATE TABLE table_name_23 (player VARCHAR, nationality VARCHAR, year VARCHAR) ### Question: After 2009, who was the player that has a nationality of Canada? ### Answer: SELECT player FROM table_name_23 WHERE nationality = "canada" AND year > 2009
After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards?
CREATE TABLE table_name_78 (nationality VARCHAR, year VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_78 WHERE year > 2009 AND player = "dwayne de rosario category:articles with hcards"
### Context: CREATE TABLE table_name_78 (nationality VARCHAR, year VARCHAR, player VARCHAR) ### Question: After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards? ### Answer: SELECT nationality FROM table_name_78 WHERE year > 2009 AND player = "dwayne de rosario category:art...
What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality?
CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT position FROM table_name_36 WHERE nationality = "united states" AND player = "justin mapp category:articles with hcards"
### Context: CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality? ### Answer: SELECT position FROM table_name_36 WHERE nationality = "united states" AND player ...
What is the result of round R3?
CREATE TABLE table_name_34 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_34 WHERE round = "r3"
### Context: CREATE TABLE table_name_34 (result VARCHAR, round VARCHAR) ### Question: What is the result of round R3? ### Answer: SELECT result FROM table_name_34 WHERE round = "r3"
In which venue was round F?
CREATE TABLE table_name_72 (venue VARCHAR, round VARCHAR)
SELECT venue FROM table_name_72 WHERE round = "f"
### Context: CREATE TABLE table_name_72 (venue VARCHAR, round VARCHAR) ### Question: In which venue was round F? ### Answer: SELECT venue FROM table_name_72 WHERE round = "f"
How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?
CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)
SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7
### Context: CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR) ### Question: How many top 10s belong to the team with a start of 7 and an average finish less than 16.7? ### Answer: SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7
Which Competition has an Event of 50km, a Year earlier than 2010 and a Position of 3rd?
CREATE TABLE table_name_46 (competition VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)
SELECT competition FROM table_name_46 WHERE event = "50km" AND year < 2010 AND position = "3rd"
### Context: CREATE TABLE table_name_46 (competition VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR) ### Question: Which Competition has an Event of 50km, a Year earlier than 2010 and a Position of 3rd? ### Answer: SELECT competition FROM table_name_46 WHERE event = "50km" AND year < 2010 AND position = "3rd"
What is the Position for the European U23 Championships?
CREATE TABLE table_name_74 (position VARCHAR, competition VARCHAR)
SELECT position FROM table_name_74 WHERE competition = "european u23 championships"
### Context: CREATE TABLE table_name_74 (position VARCHAR, competition VARCHAR) ### Question: What is the Position for the European U23 Championships? ### Answer: SELECT position FROM table_name_74 WHERE competition = "european u23 championships"
Which Event has 5th Position in the European Championships Competition?
CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR)
SELECT event FROM table_name_49 WHERE competition = "european championships" AND position = "5th"
### Context: CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR) ### Question: Which Event has 5th Position in the European Championships Competition? ### Answer: SELECT event FROM table_name_49 WHERE competition = "european championships" AND position = "5th"
What Position is listed against a Venue of Debrecen, Hungary
CREATE TABLE table_name_64 (position VARCHAR, venue VARCHAR)
SELECT position FROM table_name_64 WHERE venue = "debrecen, hungary"
### Context: CREATE TABLE table_name_64 (position VARCHAR, venue VARCHAR) ### Question: What Position is listed against a Venue of Debrecen, Hungary ### Answer: SELECT position FROM table_name_64 WHERE venue = "debrecen, hungary"
How many blocks are there when the rebounds are fewer than 5.2?
CREATE TABLE table_name_19 (blocks VARCHAR, rebounds INTEGER)
SELECT COUNT(blocks) FROM table_name_19 WHERE rebounds < 5.2
### Context: CREATE TABLE table_name_19 (blocks VARCHAR, rebounds INTEGER) ### Question: How many blocks are there when the rebounds are fewer than 5.2? ### Answer: SELECT COUNT(blocks) FROM table_name_19 WHERE rebounds < 5.2
What is the maximum rebounds when there are 0.9 steals and fewer than 1.4 turnovers?
CREATE TABLE table_name_69 (rebounds INTEGER, steals VARCHAR, turnovers VARCHAR)
SELECT MAX(rebounds) FROM table_name_69 WHERE steals = 0.9 AND turnovers < 1.4
### Context: CREATE TABLE table_name_69 (rebounds INTEGER, steals VARCHAR, turnovers VARCHAR) ### Question: What is the maximum rebounds when there are 0.9 steals and fewer than 1.4 turnovers? ### Answer: SELECT MAX(rebounds) FROM table_name_69 WHERE steals = 0.9 AND turnovers < 1.4
What team was the opponent in a week earlier than 17 on June 17, 2006?
CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_91 WHERE week < 17 AND date = "june 17, 2006"
### Context: CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: What team was the opponent in a week earlier than 17 on June 17, 2006? ### Answer: SELECT opponent FROM table_name_91 WHERE week < 17 AND date = "june 17, 2006"
What is the result for the game on May 27, 2006?
CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_19 WHERE date = "may 27, 2006"
### Context: CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR) ### Question: What is the result for the game on May 27, 2006? ### Answer: SELECT result FROM table_name_19 WHERE date = "may 27, 2006"
What is the Game site week 1?
CREATE TABLE table_name_20 (game_site VARCHAR, week VARCHAR)
SELECT game_site FROM table_name_20 WHERE week = 1
### Context: CREATE TABLE table_name_20 (game_site VARCHAR, week VARCHAR) ### Question: What is the Game site week 1? ### Answer: SELECT game_site FROM table_name_20 WHERE week = 1