question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the urban sub-area with an East Dunbartonshire council area and a population of 19,020?
CREATE TABLE table_name_70 (urban_sub_area VARCHAR, council_area VARCHAR, population VARCHAR)
SELECT urban_sub_area FROM table_name_70 WHERE council_area = "east dunbartonshire" AND population = "19,020"
### Context: CREATE TABLE table_name_70 (urban_sub_area VARCHAR, council_area VARCHAR, population VARCHAR) ### Question: What is the urban sub-area with an East Dunbartonshire council area and a population of 19,020? ### Answer: SELECT urban_sub_area FROM table_name_70 WHERE council_area = "east dunbartonshire" AND population = "19,020"
What is the council area for the Larkhall urban sub-area?
CREATE TABLE table_name_51 (council_area VARCHAR, urban_sub_area VARCHAR)
SELECT council_area FROM table_name_51 WHERE urban_sub_area = "larkhall"
### Context: CREATE TABLE table_name_51 (council_area VARCHAR, urban_sub_area VARCHAR) ### Question: What is the council area for the Larkhall urban sub-area? ### Answer: SELECT council_area FROM table_name_51 WHERE urban_sub_area = "larkhall"
What is the population of the East Kilbride urban sub-area?
CREATE TABLE table_name_61 (population VARCHAR, urban_sub_area VARCHAR)
SELECT population FROM table_name_61 WHERE urban_sub_area = "east kilbride"
### Context: CREATE TABLE table_name_61 (population VARCHAR, urban_sub_area VARCHAR) ### Question: What is the population of the East Kilbride urban sub-area? ### Answer: SELECT population FROM table_name_61 WHERE urban_sub_area = "east kilbride"
Which urban sub-area has a population of 16,140?
CREATE TABLE table_name_58 (urban_sub_area VARCHAR, population VARCHAR)
SELECT urban_sub_area FROM table_name_58 WHERE population = "16,140"
### Context: CREATE TABLE table_name_58 (urban_sub_area VARCHAR, population VARCHAR) ### Question: Which urban sub-area has a population of 16,140? ### Answer: SELECT urban_sub_area FROM table_name_58 WHERE population = "16,140"
What is the record of the cubs on July 19?
CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_41 WHERE date = "july 19"
### Context: CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) ### Question: What is the record of the cubs on July 19? ### Answer: SELECT record FROM table_name_41 WHERE date = "july 19"
What nationality is Northwood School (N.Y.)?
CREATE TABLE table_name_44 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT nationality FROM table_name_44 WHERE college_junior_club_team__league_ = "northwood school (n.y.)"
### Context: CREATE TABLE table_name_44 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: What nationality is Northwood School (N.Y.)? ### Answer: SELECT nationality FROM table_name_44 WHERE college_junior_club_team__league_ = "northwood school (n.y.)"
What are incumbent William Vandever's results?
CREATE TABLE table_name_81 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_81 WHERE incumbent = "william vandever"
### Context: CREATE TABLE table_name_81 (result VARCHAR, incumbent VARCHAR) ### Question: What are incumbent William Vandever's results? ### Answer: SELECT result FROM table_name_81 WHERE incumbent = "william vandever"
Who was the first person elected from Democratic GAIN?
CREATE TABLE table_name_73 (first_elected VARCHAR, result VARCHAR)
SELECT first_elected FROM table_name_73 WHERE result = "democratic gain"
### Context: CREATE TABLE table_name_73 (first_elected VARCHAR, result VARCHAR) ### Question: Who was the first person elected from Democratic GAIN? ### Answer: SELECT first_elected FROM table_name_73 WHERE result = "democratic gain"
What was the result for incumbent Joseph McKenna who was first elected in 1884?
CREATE TABLE table_name_77 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_77 WHERE first_elected = "1884" AND incumbent = "joseph mckenna"
### Context: CREATE TABLE table_name_77 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What was the result for incumbent Joseph McKenna who was first elected in 1884? ### Answer: SELECT result FROM table_name_77 WHERE first_elected = "1884" AND incumbent = "joseph mckenna"
When was republican incumbent Joseph McKenna first elected?
CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_name_28 WHERE party = "republican" AND incumbent = "joseph mckenna"
### Context: CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, incumbent VARCHAR) ### Question: When was republican incumbent Joseph McKenna first elected? ### Answer: SELECT first_elected FROM table_name_28 WHERE party = "republican" AND incumbent = "joseph mckenna"
what is the lowest capacity in grodno
CREATE TABLE table_name_79 (capacity INTEGER, location VARCHAR)
SELECT MIN(capacity) FROM table_name_79 WHERE location = "grodno"
### Context: CREATE TABLE table_name_79 (capacity INTEGER, location VARCHAR) ### Question: what is the lowest capacity in grodno ### Answer: SELECT MIN(capacity) FROM table_name_79 WHERE location = "grodno"
Which Score has January larger than 18 and a Record of 35–15–1?
CREATE TABLE table_name_79 (score VARCHAR, january VARCHAR, record VARCHAR)
SELECT score FROM table_name_79 WHERE january > 18 AND record = "35–15–1"
### Context: CREATE TABLE table_name_79 (score VARCHAR, january VARCHAR, record VARCHAR) ### Question: Which Score has January larger than 18 and a Record of 35–15–1? ### Answer: SELECT score FROM table_name_79 WHERE january > 18 AND record = "35–15–1"
How many starts are associated with an oldsmobile engine, 21 finishes and before 2001?
CREATE TABLE table_name_17 (start INTEGER, year VARCHAR, engine VARCHAR, finish VARCHAR)
SELECT SUM(start) FROM table_name_17 WHERE engine = "oldsmobile" AND finish = 21 AND year < 2001
### Context: CREATE TABLE table_name_17 (start INTEGER, year VARCHAR, engine VARCHAR, finish VARCHAR) ### Question: How many starts are associated with an oldsmobile engine, 21 finishes and before 2001? ### Answer: SELECT SUM(start) FROM table_name_17 WHERE engine = "oldsmobile" AND finish = 21 AND year < 2001
What was the finish associated with under 11 starts, a honda engine, before 2003?
CREATE TABLE table_name_19 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR)
SELECT AVG(finish) FROM table_name_19 WHERE start < 11 AND engine = "honda" AND year < 2003
### Context: CREATE TABLE table_name_19 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR) ### Question: What was the finish associated with under 11 starts, a honda engine, before 2003? ### Answer: SELECT AVG(finish) FROM table_name_19 WHERE start < 11 AND engine = "honda" AND year < 2003
what is the director of la ronde
CREATE TABLE table_name_23 (director VARCHAR, original_title VARCHAR)
SELECT director FROM table_name_23 WHERE original_title = "la ronde"
### Context: CREATE TABLE table_name_23 (director VARCHAR, original_title VARCHAR) ### Question: what is the director of la ronde ### Answer: SELECT director FROM table_name_23 WHERE original_title = "la ronde"
What is the lowest number of people attending the game on May 30 with Colorado as the visitors?
CREATE TABLE table_name_27 (attendance INTEGER, visitor VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_27 WHERE visitor = "colorado" AND date = "may 30"
### Context: CREATE TABLE table_name_27 (attendance INTEGER, visitor VARCHAR, date VARCHAR) ### Question: What is the lowest number of people attending the game on May 30 with Colorado as the visitors? ### Answer: SELECT MIN(attendance) FROM table_name_27 WHERE visitor = "colorado" AND date = "may 30"
What is the lowest number of people attending the game where Colorado was the home team?
CREATE TABLE table_name_67 (attendance INTEGER, home VARCHAR)
SELECT MIN(attendance) FROM table_name_67 WHERE home = "colorado"
### Context: CREATE TABLE table_name_67 (attendance INTEGER, home VARCHAR) ### Question: What is the lowest number of people attending the game where Colorado was the home team? ### Answer: SELECT MIN(attendance) FROM table_name_67 WHERE home = "colorado"
What was the score of the game on May 26?
CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_24 WHERE date = "may 26"
### Context: CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game on May 26? ### Answer: SELECT score FROM table_name_24 WHERE date = "may 26"
What is the lowest round that Adam Wiesel was picked?
CREATE TABLE table_name_9 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_9 WHERE player = "adam wiesel"
### Context: CREATE TABLE table_name_9 (round INTEGER, player VARCHAR) ### Question: What is the lowest round that Adam Wiesel was picked? ### Answer: SELECT MIN(round) FROM table_name_9 WHERE player = "adam wiesel"
What college, junior, or club team did defence player Rory Fitzpatrick play for?
CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_name_81 WHERE position = "defence" AND player = "rory fitzpatrick"
### Context: CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR) ### Question: What college, junior, or club team did defence player Rory Fitzpatrick play for? ### Answer: SELECT college_junior_club_team FROM table_name_81 WHERE position = "defence" AND player = "rory fitzpatrick"
What was the score for 1911?
CREATE TABLE table_name_10 (score VARCHAR, year VARCHAR)
SELECT score FROM table_name_10 WHERE year = 1911
### Context: CREATE TABLE table_name_10 (score VARCHAR, year VARCHAR) ### Question: What was the score for 1911? ### Answer: SELECT score FROM table_name_10 WHERE year = 1911
what country has tiger woods
CREATE TABLE table_name_47 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_47 WHERE player = "tiger woods"
### Context: CREATE TABLE table_name_47 (country VARCHAR, player VARCHAR) ### Question: what country has tiger woods ### Answer: SELECT country FROM table_name_47 WHERE player = "tiger woods"
what country has a score of 69-70-72=211?
CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_63 WHERE score = 69 - 70 - 72 = 211
### Context: CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR) ### Question: what country has a score of 69-70-72=211? ### Answer: SELECT place FROM table_name_63 WHERE score = 69 - 70 - 72 = 211
what player scored 69-72-68=209?
CREATE TABLE table_name_66 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_66 WHERE score = 69 - 72 - 68 = 209
### Context: CREATE TABLE table_name_66 (player VARCHAR, score VARCHAR) ### Question: what player scored 69-72-68=209? ### Answer: SELECT player FROM table_name_66 WHERE score = 69 - 72 - 68 = 209
What is the largest number for earnings for tom watson when ranked more than 2?
CREATE TABLE table_name_59 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)
SELECT MAX(earnings___) AS $__ FROM table_name_59 WHERE player = "tom watson" AND rank > 2
### Context: CREATE TABLE table_name_59 (earnings___ INTEGER, player VARCHAR, rank VARCHAR) ### Question: What is the largest number for earnings for tom watson when ranked more than 2? ### Answer: SELECT MAX(earnings___) AS $__ FROM table_name_59 WHERE player = "tom watson" AND rank > 2
Which 1st (m) is the lowest one that has a Nationality of aut, and Points larger than 273.5?
CREATE TABLE table_name_28 (nationality VARCHAR, points VARCHAR)
SELECT MIN(1 AS st__m_) FROM table_name_28 WHERE nationality = "aut" AND points > 273.5
### Context: CREATE TABLE table_name_28 (nationality VARCHAR, points VARCHAR) ### Question: Which 1st (m) is the lowest one that has a Nationality of aut, and Points larger than 273.5? ### Answer: SELECT MIN(1 AS st__m_) FROM table_name_28 WHERE nationality = "aut" AND points > 273.5
What is the highest number of wins associated with under 0 poles?
CREATE TABLE table_name_36 (wins INTEGER, poles INTEGER)
SELECT MAX(wins) FROM table_name_36 WHERE poles < 0
### Context: CREATE TABLE table_name_36 (wins INTEGER, poles INTEGER) ### Question: What is the highest number of wins associated with under 0 poles? ### Answer: SELECT MAX(wins) FROM table_name_36 WHERE poles < 0
How many poles did he have in 2006 with under 2 wins?
CREATE TABLE table_name_57 (poles VARCHAR, season VARCHAR, wins VARCHAR)
SELECT poles FROM table_name_57 WHERE season = "2006" AND wins < 2
### Context: CREATE TABLE table_name_57 (poles VARCHAR, season VARCHAR, wins VARCHAR) ### Question: How many poles did he have in 2006 with under 2 wins? ### Answer: SELECT poles FROM table_name_57 WHERE season = "2006" AND wins < 2
What is the fewest number of wins when he has 3 poles in 2010?
CREATE TABLE table_name_51 (wins INTEGER, poles VARCHAR, season VARCHAR)
SELECT MIN(wins) FROM table_name_51 WHERE poles = 3 AND season = "2010"
### Context: CREATE TABLE table_name_51 (wins INTEGER, poles VARCHAR, season VARCHAR) ### Question: What is the fewest number of wins when he has 3 poles in 2010? ### Answer: SELECT MIN(wins) FROM table_name_51 WHERE poles = 3 AND season = "2010"
What's listed for the 2012 that has a 2011 of 7.7% with a 2008 of 7.9%?
CREATE TABLE table_name_88 (Id VARCHAR)
SELECT 2012 FROM table_name_88 WHERE 2011 = "7.7%" AND 2008 = "7.9%"
### Context: CREATE TABLE table_name_88 (Id VARCHAR) ### Question: What's listed for the 2012 that has a 2011 of 7.7% with a 2008 of 7.9%? ### Answer: SELECT 2012 FROM table_name_88 WHERE 2011 = "7.7%" AND 2008 = "7.9%"
What is listed for the 2011 that has a 2005 of 4.2%?
CREATE TABLE table_name_8 (Id VARCHAR)
SELECT 2011 FROM table_name_8 WHERE 2005 = "4.2%"
### Context: CREATE TABLE table_name_8 (Id VARCHAR) ### Question: What is listed for the 2011 that has a 2005 of 4.2%? ### Answer: SELECT 2011 FROM table_name_8 WHERE 2005 = "4.2%"
What is listed for the 2012 that has a 2011 of 28.9%?
CREATE TABLE table_name_86 (Id VARCHAR)
SELECT 2012 FROM table_name_86 WHERE 2011 = "28.9%"
### Context: CREATE TABLE table_name_86 (Id VARCHAR) ### Question: What is listed for the 2012 that has a 2011 of 28.9%? ### Answer: SELECT 2012 FROM table_name_86 WHERE 2011 = "28.9%"
What is listed for the 2005 that has a 2012 of 4.2%?
CREATE TABLE table_name_35 (Id VARCHAR)
SELECT 2005 FROM table_name_35 WHERE 2012 = "4.2%"
### Context: CREATE TABLE table_name_35 (Id VARCHAR) ### Question: What is listed for the 2005 that has a 2012 of 4.2%? ### Answer: SELECT 2005 FROM table_name_35 WHERE 2012 = "4.2%"
What is listed the Favorite Professional Sport that's got a 2005 of 17.1%?
CREATE TABLE table_name_91 (favorite_professional_sport VARCHAR)
SELECT favorite_professional_sport FROM table_name_91 WHERE 2005 = "17.1%"
### Context: CREATE TABLE table_name_91 (favorite_professional_sport VARCHAR) ### Question: What is listed the Favorite Professional Sport that's got a 2005 of 17.1%? ### Answer: SELECT favorite_professional_sport FROM table_name_91 WHERE 2005 = "17.1%"
What is listed as the Favorite Professional Sport that has a 2008 of 8.9%?
CREATE TABLE table_name_87 (favorite_professional_sport VARCHAR)
SELECT favorite_professional_sport FROM table_name_87 WHERE 2008 = "8.9%"
### Context: CREATE TABLE table_name_87 (favorite_professional_sport VARCHAR) ### Question: What is listed as the Favorite Professional Sport that has a 2008 of 8.9%? ### Answer: SELECT favorite_professional_sport FROM table_name_87 WHERE 2008 = "8.9%"
What was the score of the game that led to a 79-77 record?
CREATE TABLE table_name_64 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_64 WHERE record = "79-77"
### Context: CREATE TABLE table_name_64 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game that led to a 79-77 record? ### Answer: SELECT score FROM table_name_64 WHERE record = "79-77"
What was the record after the game in which Rosales (1-1) took the loss?
CREATE TABLE table_name_95 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_95 WHERE loss = "rosales (1-1)"
### Context: CREATE TABLE table_name_95 (record VARCHAR, loss VARCHAR) ### Question: What was the record after the game in which Rosales (1-1) took the loss? ### Answer: SELECT record FROM table_name_95 WHERE loss = "rosales (1-1)"
Which supercentenarians were born in Manitoba?
CREATE TABLE table_name_52 (name VARCHAR, province_or_country_of_birth VARCHAR)
SELECT name FROM table_name_52 WHERE province_or_country_of_birth = "manitoba"
### Context: CREATE TABLE table_name_52 (name VARCHAR, province_or_country_of_birth VARCHAR) ### Question: Which supercentenarians were born in Manitoba? ### Answer: SELECT name FROM table_name_52 WHERE province_or_country_of_birth = "manitoba"
What is the average age as of February 1, 2014 for the supercentenarians born in the United States?
CREATE TABLE table_name_23 (age_as_of_1_february_2014 VARCHAR, province_or_country_of_birth VARCHAR)
SELECT age_as_of_1_february_2014 FROM table_name_23 WHERE province_or_country_of_birth = "united states"
### Context: CREATE TABLE table_name_23 (age_as_of_1_february_2014 VARCHAR, province_or_country_of_birth VARCHAR) ### Question: What is the average age as of February 1, 2014 for the supercentenarians born in the United States? ### Answer: SELECT age_as_of_1_february_2014 FROM table_name_23 WHERE province_or_country_of_birth = "united states"
Which 2010 Tournament has a 2001 of grand slam tournaments?
CREATE TABLE table_name_36 (Id VARCHAR)
SELECT 2010 FROM table_name_36 WHERE 2001 = "grand slam tournaments"
### Context: CREATE TABLE table_name_36 (Id VARCHAR) ### Question: Which 2010 Tournament has a 2001 of grand slam tournaments? ### Answer: SELECT 2010 FROM table_name_36 WHERE 2001 = "grand slam tournaments"
Which 2006 Tournament has a 2004, and a 2002 of not tier i?
CREATE TABLE table_name_15 (Id VARCHAR)
SELECT 2006 FROM table_name_15 WHERE 2004 = "a" AND 2002 = "not tier i"
### Context: CREATE TABLE table_name_15 (Id VARCHAR) ### Question: Which 2006 Tournament has a 2004, and a 2002 of not tier i? ### Answer: SELECT 2006 FROM table_name_15 WHERE 2004 = "a" AND 2002 = "not tier i"
Which 2008 Tournament has a 2007 of a and a 2010 of qf?
CREATE TABLE table_name_46 (Id VARCHAR)
SELECT 2008 FROM table_name_46 WHERE 2007 = "a" AND 2010 = "qf"
### Context: CREATE TABLE table_name_46 (Id VARCHAR) ### Question: Which 2008 Tournament has a 2007 of a and a 2010 of qf? ### Answer: SELECT 2008 FROM table_name_46 WHERE 2007 = "a" AND 2010 = "qf"
Which Tournament has a 2002 of grand slam tournaments?
CREATE TABLE table_name_82 (tournament VARCHAR)
SELECT tournament FROM table_name_82 WHERE 2002 = "grand slam tournaments"
### Context: CREATE TABLE table_name_82 (tournament VARCHAR) ### Question: Which Tournament has a 2002 of grand slam tournaments? ### Answer: SELECT tournament FROM table_name_82 WHERE 2002 = "grand slam tournaments"
Which 2000 Tournament has a 2002 of not tier i, and a 2006 of 2r?
CREATE TABLE table_name_57 (Id VARCHAR)
SELECT 2000 FROM table_name_57 WHERE 2002 = "not tier i" AND 2006 = "2r"
### Context: CREATE TABLE table_name_57 (Id VARCHAR) ### Question: Which 2000 Tournament has a 2002 of not tier i, and a 2006 of 2r? ### Answer: SELECT 2000 FROM table_name_57 WHERE 2002 = "not tier i" AND 2006 = "2r"
Which language's launch was in 2006 when then hanzi was 青海电视台藏语综合频道?
CREATE TABLE table_name_7 (language VARCHAR, launch VARCHAR, hanzi VARCHAR)
SELECT language FROM table_name_7 WHERE launch = 2006 AND hanzi = "青海电视台藏语综合频道"
### Context: CREATE TABLE table_name_7 (language VARCHAR, launch VARCHAR, hanzi VARCHAR) ### Question: Which language's launch was in 2006 when then hanzi was 青海电视台藏语综合频道? ### Answer: SELECT language FROM table_name_7 WHERE launch = 2006 AND hanzi = "青海电视台藏语综合频道"
Which hanzi's name is nmtv mongolian satellite television?
CREATE TABLE table_name_84 (hanzi VARCHAR, name VARCHAR)
SELECT hanzi FROM table_name_84 WHERE name = "nmtv mongolian satellite television"
### Context: CREATE TABLE table_name_84 (hanzi VARCHAR, name VARCHAR) ### Question: Which hanzi's name is nmtv mongolian satellite television? ### Answer: SELECT hanzi FROM table_name_84 WHERE name = "nmtv mongolian satellite television"
Which hanzi's launch is before 2009, when the language was tibetan, and the name was qinghai tibetian general channel?
CREATE TABLE table_name_71 (hanzi VARCHAR, name VARCHAR, launch VARCHAR, language VARCHAR)
SELECT hanzi FROM table_name_71 WHERE launch < 2009 AND language = "tibetan" AND name = "qinghai tibetian general channel"
### Context: CREATE TABLE table_name_71 (hanzi VARCHAR, name VARCHAR, launch VARCHAR, language VARCHAR) ### Question: Which hanzi's launch is before 2009, when the language was tibetan, and the name was qinghai tibetian general channel? ### Answer: SELECT hanzi FROM table_name_71 WHERE launch < 2009 AND language = "tibetan" AND name = "qinghai tibetian general channel"
What Team had a 1:24.365 Qual 2?
CREATE TABLE table_name_60 (team VARCHAR, qual_2 VARCHAR)
SELECT team FROM table_name_60 WHERE qual_2 = "1:24.365"
### Context: CREATE TABLE table_name_60 (team VARCHAR, qual_2 VARCHAR) ### Question: What Team had a 1:24.365 Qual 2? ### Answer: SELECT team FROM table_name_60 WHERE qual_2 = "1:24.365"
What Team had a 1:24.152 Best?
CREATE TABLE table_name_51 (team VARCHAR, best VARCHAR)
SELECT team FROM table_name_51 WHERE best = "1:24.152"
### Context: CREATE TABLE table_name_51 (team VARCHAR, best VARCHAR) ### Question: What Team had a 1:24.152 Best? ### Answer: SELECT team FROM table_name_51 WHERE best = "1:24.152"
What was Robert Doornbos' Best?
CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR)
SELECT best FROM table_name_47 WHERE name = "robert doornbos"
### Context: CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR) ### Question: What was Robert Doornbos' Best? ### Answer: SELECT best FROM table_name_47 WHERE name = "robert doornbos"
What was Alex Figge's Best?
CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR)
SELECT best FROM table_name_47 WHERE name = "alex figge"
### Context: CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR) ### Question: What was Alex Figge's Best? ### Answer: SELECT best FROM table_name_47 WHERE name = "alex figge"
What Team had a 1:25.602 Best?
CREATE TABLE table_name_41 (team VARCHAR, best VARCHAR)
SELECT team FROM table_name_41 WHERE best = "1:25.602"
### Context: CREATE TABLE table_name_41 (team VARCHAR, best VARCHAR) ### Question: What Team had a 1:25.602 Best? ### Answer: SELECT team FROM table_name_41 WHERE best = "1:25.602"
What was the Name of the person with a Qual 1 of 1:26.056?
CREATE TABLE table_name_59 (name VARCHAR, qual_1 VARCHAR)
SELECT name FROM table_name_59 WHERE qual_1 = "1:26.056"
### Context: CREATE TABLE table_name_59 (name VARCHAR, qual_1 VARCHAR) ### Question: What was the Name of the person with a Qual 1 of 1:26.056? ### Answer: SELECT name FROM table_name_59 WHERE qual_1 = "1:26.056"
How many picks were there for the Bentley team?
CREATE TABLE table_name_31 (pick VARCHAR, school_club_team VARCHAR)
SELECT COUNT(pick) FROM table_name_31 WHERE school_club_team = "bentley"
### Context: CREATE TABLE table_name_31 (pick VARCHAR, school_club_team VARCHAR) ### Question: How many picks were there for the Bentley team? ### Answer: SELECT COUNT(pick) FROM table_name_31 WHERE school_club_team = "bentley"
What is the largest round number for Dan Connor, the player?
CREATE TABLE table_name_87 (round INTEGER, player VARCHAR)
SELECT MAX(round) FROM table_name_87 WHERE player = "dan connor"
### Context: CREATE TABLE table_name_87 (round INTEGER, player VARCHAR) ### Question: What is the largest round number for Dan Connor, the player? ### Answer: SELECT MAX(round) FROM table_name_87 WHERE player = "dan connor"
What is the largest round number for the dt position when the pick number is bigger than 181?
CREATE TABLE table_name_54 (round INTEGER, position VARCHAR, pick VARCHAR)
SELECT MAX(round) FROM table_name_54 WHERE position = "dt" AND pick > 181
### Context: CREATE TABLE table_name_54 (round INTEGER, position VARCHAR, pick VARCHAR) ### Question: What is the largest round number for the dt position when the pick number is bigger than 181? ### Answer: SELECT MAX(round) FROM table_name_54 WHERE position = "dt" AND pick > 181
what circuit is in italy
CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR)
SELECT circuit FROM table_name_25 WHERE round = "italy"
### Context: CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR) ### Question: what circuit is in italy ### Answer: SELECT circuit FROM table_name_25 WHERE round = "italy"
What is the average pick for clarence mason?
CREATE TABLE table_name_59 (pick INTEGER, player VARCHAR)
SELECT AVG(pick) FROM table_name_59 WHERE player = "clarence mason"
### Context: CREATE TABLE table_name_59 (pick INTEGER, player VARCHAR) ### Question: What is the average pick for clarence mason? ### Answer: SELECT AVG(pick) FROM table_name_59 WHERE player = "clarence mason"
What is the frequency for the city of Lamar, Colorado?
CREATE TABLE table_name_37 (frequency_mhz INTEGER, city_of_license VARCHAR)
SELECT AVG(frequency_mhz) FROM table_name_37 WHERE city_of_license = "lamar, colorado"
### Context: CREATE TABLE table_name_37 (frequency_mhz INTEGER, city_of_license VARCHAR) ### Question: What is the frequency for the city of Lamar, Colorado? ### Answer: SELECT AVG(frequency_mhz) FROM table_name_37 WHERE city_of_license = "lamar, colorado"
What is the average ERP W for callsign K207BK?
CREATE TABLE table_name_97 (erp_w INTEGER, call_sign VARCHAR)
SELECT AVG(erp_w) FROM table_name_97 WHERE call_sign = "k207bk"
### Context: CREATE TABLE table_name_97 (erp_w INTEGER, call_sign VARCHAR) ### Question: What is the average ERP W for callsign K207BK? ### Answer: SELECT AVG(erp_w) FROM table_name_97 WHERE call_sign = "k207bk"
Which callsign has ERP W of 99 and a frequency of greater than 88.7MHz?
CREATE TABLE table_name_15 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT call_sign FROM table_name_15 WHERE frequency_mhz > 88.7 AND erp_w = 99
### Context: CREATE TABLE table_name_15 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) ### Question: Which callsign has ERP W of 99 and a frequency of greater than 88.7MHz? ### Answer: SELECT call_sign FROM table_name_15 WHERE frequency_mhz > 88.7 AND erp_w = 99
Which city has ERP W under 14 and a frequency over 93.7MHz?
CREATE TABLE table_name_20 (city_of_license VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT city_of_license FROM table_name_20 WHERE erp_w < 14 AND frequency_mhz > 93.7
### Context: CREATE TABLE table_name_20 (city_of_license VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR) ### Question: Which city has ERP W under 14 and a frequency over 93.7MHz? ### Answer: SELECT city_of_license FROM table_name_20 WHERE erp_w < 14 AND frequency_mhz > 93.7
What were the total number of field goals when there were 0 touchdowns and 2 extra points?
CREATE TABLE table_name_80 (field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)
SELECT COUNT(field_goals) FROM table_name_80 WHERE touchdowns = 0 AND extra_points = 2
### Context: CREATE TABLE table_name_80 (field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR) ### Question: What were the total number of field goals when there were 0 touchdowns and 2 extra points? ### Answer: SELECT COUNT(field_goals) FROM table_name_80 WHERE touchdowns = 0 AND extra_points = 2
How many field goals did Carter get when he had 0 extra points?
CREATE TABLE table_name_14 (field_goals INTEGER, player VARCHAR, extra_points VARCHAR)
SELECT SUM(field_goals) FROM table_name_14 WHERE player = "carter" AND extra_points < 0
### Context: CREATE TABLE table_name_14 (field_goals INTEGER, player VARCHAR, extra_points VARCHAR) ### Question: How many field goals did Carter get when he had 0 extra points? ### Answer: SELECT SUM(field_goals) FROM table_name_14 WHERE player = "carter" AND extra_points < 0
What is the highest amount of extra points someone got when they scored 28 points but had 0 field goals?
CREATE TABLE table_name_20 (extra_points INTEGER, points VARCHAR, field_goals VARCHAR)
SELECT MAX(extra_points) FROM table_name_20 WHERE points = 28 AND field_goals < 0
### Context: CREATE TABLE table_name_20 (extra_points INTEGER, points VARCHAR, field_goals VARCHAR) ### Question: What is the highest amount of extra points someone got when they scored 28 points but had 0 field goals? ### Answer: SELECT MAX(extra_points) FROM table_name_20 WHERE points = 28 AND field_goals < 0
What is the average field goal someone has when they have 0 extra points but more than 5 touch downs?
CREATE TABLE table_name_80 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR)
SELECT AVG(field_goals) FROM table_name_80 WHERE extra_points > 0 AND touchdowns > 5
### Context: CREATE TABLE table_name_80 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR) ### Question: What is the average field goal someone has when they have 0 extra points but more than 5 touch downs? ### Answer: SELECT AVG(field_goals) FROM table_name_80 WHERE extra_points > 0 AND touchdowns > 5
What is the lowest number of wins with more than 113 points in 4th rank?
CREATE TABLE table_name_80 (wins INTEGER, points VARCHAR, rank VARCHAR)
SELECT MIN(wins) FROM table_name_80 WHERE points > 113 AND rank = "4th"
### Context: CREATE TABLE table_name_80 (wins INTEGER, points VARCHAR, rank VARCHAR) ### Question: What is the lowest number of wins with more than 113 points in 4th rank? ### Answer: SELECT MIN(wins) FROM table_name_80 WHERE points > 113 AND rank = "4th"
How many wins had less than 91 points in 25th rank?
CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR, rank VARCHAR)
SELECT wins FROM table_name_44 WHERE points < 91 AND rank = "25th"
### Context: CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR, rank VARCHAR) ### Question: How many wins had less than 91 points in 25th rank? ### Answer: SELECT wins FROM table_name_44 WHERE points < 91 AND rank = "25th"
How many wins in 1992?
CREATE TABLE table_name_52 (wins VARCHAR, year VARCHAR)
SELECT wins FROM table_name_52 WHERE year = 1992
### Context: CREATE TABLE table_name_52 (wins VARCHAR, year VARCHAR) ### Question: How many wins in 1992? ### Answer: SELECT wins FROM table_name_52 WHERE year = 1992
How many wins occurred for 6th rank?
CREATE TABLE table_name_31 (wins VARCHAR, rank VARCHAR)
SELECT COUNT(wins) FROM table_name_31 WHERE rank = "6th"
### Context: CREATE TABLE table_name_31 (wins VARCHAR, rank VARCHAR) ### Question: How many wins occurred for 6th rank? ### Answer: SELECT COUNT(wins) FROM table_name_31 WHERE rank = "6th"
Who was the constructor of the car driven by Heikki Kovalainen?
CREATE TABLE table_name_39 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_39 WHERE driver = "heikki kovalainen"
### Context: CREATE TABLE table_name_39 (constructor VARCHAR, driver VARCHAR) ### Question: Who was the constructor of the car driven by Heikki Kovalainen? ### Answer: SELECT constructor FROM table_name_39 WHERE driver = "heikki kovalainen"
Which Reg Season has a Division of 2?
CREATE TABLE table_name_31 (reg_season VARCHAR, division VARCHAR)
SELECT reg_season FROM table_name_31 WHERE division = 2
### Context: CREATE TABLE table_name_31 (reg_season VARCHAR, division VARCHAR) ### Question: Which Reg Season has a Division of 2? ### Answer: SELECT reg_season FROM table_name_31 WHERE division = 2
Which Year is the highest one that has a Reg Season of 3rd, western, and a Division larger than 2?
CREATE TABLE table_name_30 (year INTEGER, reg_season VARCHAR, division VARCHAR)
SELECT MAX(year) FROM table_name_30 WHERE reg_season = "3rd, western" AND division > 2
### Context: CREATE TABLE table_name_30 (year INTEGER, reg_season VARCHAR, division VARCHAR) ### Question: Which Year is the highest one that has a Reg Season of 3rd, western, and a Division larger than 2? ### Answer: SELECT MAX(year) FROM table_name_30 WHERE reg_season = "3rd, western" AND division > 2
Which year is the lowest one when the playoffs did not qualify?
CREATE TABLE table_name_93 (year INTEGER, playoffs VARCHAR)
SELECT MIN(year) FROM table_name_93 WHERE playoffs = "did not qualify"
### Context: CREATE TABLE table_name_93 (year INTEGER, playoffs VARCHAR) ### Question: Which year is the lowest one when the playoffs did not qualify? ### Answer: SELECT MIN(year) FROM table_name_93 WHERE playoffs = "did not qualify"
Which Year has a Reg Season of 3rd, western?
CREATE TABLE table_name_9 (year INTEGER, reg_season VARCHAR)
SELECT AVG(year) FROM table_name_9 WHERE reg_season = "3rd, western"
### Context: CREATE TABLE table_name_9 (year INTEGER, reg_season VARCHAR) ### Question: Which Year has a Reg Season of 3rd, western? ### Answer: SELECT AVG(year) FROM table_name_9 WHERE reg_season = "3rd, western"
Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013?
CREATE TABLE table_name_36 (division INTEGER, year VARCHAR, reg_season VARCHAR, playoffs VARCHAR)
SELECT AVG(division) FROM table_name_36 WHERE reg_season = "1st, western" AND playoffs = "champions" AND year < 2013
### Context: CREATE TABLE table_name_36 (division INTEGER, year VARCHAR, reg_season VARCHAR, playoffs VARCHAR) ### Question: Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013? ### Answer: SELECT AVG(division) FROM table_name_36 WHERE reg_season = "1st, western" AND playoffs = "champions" AND year < 2013
Who was the opponent during the game that had more than 31,891 people in attendance?
CREATE TABLE table_name_80 (opponent VARCHAR, attendance INTEGER)
SELECT opponent FROM table_name_80 WHERE attendance > 31 OFFSET 891
### Context: CREATE TABLE table_name_80 (opponent VARCHAR, attendance INTEGER) ### Question: Who was the opponent during the game that had more than 31,891 people in attendance? ### Answer: SELECT opponent FROM table_name_80 WHERE attendance > 31 OFFSET 891
What is the average attendance for the game before week 4 that was on october 16, 1955?
CREATE TABLE table_name_97 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT AVG(attendance) FROM table_name_97 WHERE date = "october 16, 1955" AND week < 4
### Context: CREATE TABLE table_name_97 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: What is the average attendance for the game before week 4 that was on october 16, 1955? ### Answer: SELECT AVG(attendance) FROM table_name_97 WHERE date = "october 16, 1955" AND week < 4
Who was the opponent for the game on November 20, 1955?
CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_35 WHERE date = "november 20, 1955"
### Context: CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent for the game on November 20, 1955? ### Answer: SELECT opponent FROM table_name_35 WHERE date = "november 20, 1955"
What is the highest number of successful defenses in brandon, florida and a reign less than 1?
CREATE TABLE table_name_13 (successful_defenses INTEGER, location VARCHAR, reign VARCHAR)
SELECT MAX(successful_defenses) FROM table_name_13 WHERE location = "brandon, florida" AND reign < 1
### Context: CREATE TABLE table_name_13 (successful_defenses INTEGER, location VARCHAR, reign VARCHAR) ### Question: What is the highest number of successful defenses in brandon, florida and a reign less than 1? ### Answer: SELECT MAX(successful_defenses) FROM table_name_13 WHERE location = "brandon, florida" AND reign < 1
What was the date of the game against Norway with a 1:1 result?
CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR)
SELECT date FROM table_name_31 WHERE opponent = "norway" AND results¹ = "1:1"
### Context: CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR) ### Question: What was the date of the game against Norway with a 1:1 result? ### Answer: SELECT date FROM table_name_31 WHERE opponent = "norway" AND results¹ = "1:1"
What type of game had a 0:0 result?
CREATE TABLE table_name_17 (type_of_game VARCHAR, results¹ VARCHAR)
SELECT type_of_game FROM table_name_17 WHERE results¹ = "0:0"
### Context: CREATE TABLE table_name_17 (type_of_game VARCHAR, results¹ VARCHAR) ### Question: What type of game had a 0:0 result? ### Answer: SELECT type_of_game FROM table_name_17 WHERE results¹ = "0:0"
What city held that game with a 5:2 result?
CREATE TABLE table_name_5 (city VARCHAR, results¹ VARCHAR)
SELECT city FROM table_name_5 WHERE results¹ = "5:2"
### Context: CREATE TABLE table_name_5 (city VARCHAR, results¹ VARCHAR) ### Question: What city held that game with a 5:2 result? ### Answer: SELECT city FROM table_name_5 WHERE results¹ = "5:2"
What is the score of the game that has a record of 1-2-1?
CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_29 WHERE record = "1-2-1"
### Context: CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR) ### Question: What is the score of the game that has a record of 1-2-1? ### Answer: SELECT score FROM table_name_29 WHERE record = "1-2-1"
What is the team's record in games against the Hartford Whalers?
CREATE TABLE table_name_52 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_52 WHERE opponent = "hartford whalers"
### Context: CREATE TABLE table_name_52 (record VARCHAR, opponent VARCHAR) ### Question: What is the team's record in games against the Hartford Whalers? ### Answer: SELECT record FROM table_name_52 WHERE opponent = "hartford whalers"
What was the Record on Week 13 at the Hoosier Dome?
CREATE TABLE table_name_97 (record VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT record FROM table_name_97 WHERE game_site = "hoosier dome" AND week = 13
### Context: CREATE TABLE table_name_97 (record VARCHAR, game_site VARCHAR, week VARCHAR) ### Question: What was the Record on Week 13 at the Hoosier Dome? ### Answer: SELECT record FROM table_name_97 WHERE game_site = "hoosier dome" AND week = 13
What was the Week on October 18, 1992?
CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)
SELECT SUM(week) FROM table_name_3 WHERE date = "october 18, 1992"
### Context: CREATE TABLE table_name_3 (week INTEGER, date VARCHAR) ### Question: What was the Week on October 18, 1992? ### Answer: SELECT SUM(week) FROM table_name_3 WHERE date = "october 18, 1992"
What loss has 16-6 as the record?
CREATE TABLE table_name_25 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_25 WHERE record = "16-6"
### Context: CREATE TABLE table_name_25 (loss VARCHAR, record VARCHAR) ### Question: What loss has 16-6 as the record? ### Answer: SELECT loss FROM table_name_25 WHERE record = "16-6"
What loss has 4-2 as the record?
CREATE TABLE table_name_73 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_73 WHERE record = "4-2"
### Context: CREATE TABLE table_name_73 (loss VARCHAR, record VARCHAR) ### Question: What loss has 4-2 as the record? ### Answer: SELECT loss FROM table_name_73 WHERE record = "4-2"
What attendance has astros as the opponent, and april 29 as the date?
CREATE TABLE table_name_69 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
SELECT SUM(attendance) FROM table_name_69 WHERE opponent = "astros" AND date = "april 29"
### Context: CREATE TABLE table_name_69 (attendance INTEGER, opponent VARCHAR, date VARCHAR) ### Question: What attendance has astros as the opponent, and april 29 as the date? ### Answer: SELECT SUM(attendance) FROM table_name_69 WHERE opponent = "astros" AND date = "april 29"
Which Operator has a Width of 2.65 m, and a Type designation of m5000?
CREATE TABLE table_name_13 (operator VARCHAR, width VARCHAR, type_designation VARCHAR)
SELECT operator FROM table_name_13 WHERE width = "2.65 m" AND type_designation = "m5000"
### Context: CREATE TABLE table_name_13 (operator VARCHAR, width VARCHAR, type_designation VARCHAR) ### Question: Which Operator has a Width of 2.65 m, and a Type designation of m5000? ### Answer: SELECT operator FROM table_name_13 WHERE width = "2.65 m" AND type_designation = "m5000"
Which Width has a Number of vehicles larger than 15, and a Type designation of k5000?
CREATE TABLE table_name_88 (width VARCHAR, number_of_vehicles VARCHAR, type_designation VARCHAR)
SELECT width FROM table_name_88 WHERE number_of_vehicles > 15 AND type_designation = "k5000"
### Context: CREATE TABLE table_name_88 (width VARCHAR, number_of_vehicles VARCHAR, type_designation VARCHAR) ### Question: Which Width has a Number of vehicles larger than 15, and a Type designation of k5000? ### Answer: SELECT width FROM table_name_88 WHERE number_of_vehicles > 15 AND type_designation = "k5000"
Which Number of vehicles has a Type designation of u5-25 (bi-directional)?
CREATE TABLE table_name_76 (number_of_vehicles VARCHAR, type_designation VARCHAR)
SELECT number_of_vehicles FROM table_name_76 WHERE type_designation = "u5-25 (bi-directional)"
### Context: CREATE TABLE table_name_76 (number_of_vehicles VARCHAR, type_designation VARCHAR) ### Question: Which Number of vehicles has a Type designation of u5-25 (bi-directional)? ### Answer: SELECT number_of_vehicles FROM table_name_76 WHERE type_designation = "u5-25 (bi-directional)"
Province of leinster, and a County of fingal has which irish name?
CREATE TABLE table_name_65 (irish_name VARCHAR, province VARCHAR, county VARCHAR)
SELECT irish_name FROM table_name_65 WHERE province = "leinster" AND county = "fingal"
### Context: CREATE TABLE table_name_65 (irish_name VARCHAR, province VARCHAR, county VARCHAR) ### Question: Province of leinster, and a County of fingal has which irish name? ### Answer: SELECT irish_name FROM table_name_65 WHERE province = "leinster" AND county = "fingal"
Irish name of an dún (contae an dúin) has what county town?
CREATE TABLE table_name_34 (county VARCHAR, irish_name VARCHAR)
SELECT county AS town FROM table_name_34 WHERE irish_name = "an dún (contae an dúin)"
### Context: CREATE TABLE table_name_34 (county VARCHAR, irish_name VARCHAR) ### Question: Irish name of an dún (contae an dúin) has what county town? ### Answer: SELECT county AS town FROM table_name_34 WHERE irish_name = "an dún (contae an dúin)"
Most populous city/town of clonmel, and a Irish name of tiobraid árann (contae thiobraid árann) is which region?
CREATE TABLE table_name_8 (region VARCHAR, most_populous_city_town VARCHAR, irish_name VARCHAR)
SELECT region FROM table_name_8 WHERE most_populous_city_town = "clonmel" AND irish_name = "tiobraid árann (contae thiobraid árann)"
### Context: CREATE TABLE table_name_8 (region VARCHAR, most_populous_city_town VARCHAR, irish_name VARCHAR) ### Question: Most populous city/town of clonmel, and a Irish name of tiobraid árann (contae thiobraid árann) is which region? ### Answer: SELECT region FROM table_name_8 WHERE most_populous_city_town = "clonmel" AND irish_name = "tiobraid árann (contae thiobraid árann)"
Irish name of dún na ngall (contae dhún na ngall) has the most populous city/town?
CREATE TABLE table_name_46 (most_populous_city_town VARCHAR, irish_name VARCHAR)
SELECT most_populous_city_town FROM table_name_46 WHERE irish_name = "dún na ngall (contae dhún na ngall)"
### Context: CREATE TABLE table_name_46 (most_populous_city_town VARCHAR, irish_name VARCHAR) ### Question: Irish name of dún na ngall (contae dhún na ngall) has the most populous city/town? ### Answer: SELECT most_populous_city_town FROM table_name_46 WHERE irish_name = "dún na ngall (contae dhún na ngall)"
Name the games for rubén limardo
CREATE TABLE table_name_66 (games VARCHAR, name VARCHAR)
SELECT games FROM table_name_66 WHERE name = "rubén limardo"
### Context: CREATE TABLE table_name_66 (games VARCHAR, name VARCHAR) ### Question: Name the games for rubén limardo ### Answer: SELECT games FROM table_name_66 WHERE name = "rubén limardo"
Name the sport for men's light flyweight with medal of gold
CREATE TABLE table_name_75 (sport VARCHAR, medal VARCHAR, event VARCHAR)
SELECT sport FROM table_name_75 WHERE medal = "gold" AND event = "men's light flyweight"
### Context: CREATE TABLE table_name_75 (sport VARCHAR, medal VARCHAR, event VARCHAR) ### Question: Name the sport for men's light flyweight with medal of gold ### Answer: SELECT sport FROM table_name_75 WHERE medal = "gold" AND event = "men's light flyweight"
Tell me the name for men's featherweight and sport of weightlifting
CREATE TABLE table_name_71 (name VARCHAR, event VARCHAR, sport VARCHAR)
SELECT name FROM table_name_71 WHERE event = "men's featherweight" AND sport = "weightlifting"
### Context: CREATE TABLE table_name_71 (name VARCHAR, event VARCHAR, sport VARCHAR) ### Question: Tell me the name for men's featherweight and sport of weightlifting ### Answer: SELECT name FROM table_name_71 WHERE event = "men's featherweight" AND sport = "weightlifting"