question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Tell me the bp comp 2 for % wt comp 1 of 76
CREATE TABLE table_name_32 (bp_comp_2__˚c_ VARCHAR, _percentage_wt_comp_1 VARCHAR)
SELECT bp_comp_2__˚c_ FROM table_name_32 WHERE _percentage_wt_comp_1 = 76
### Context: CREATE TABLE table_name_32 (bp_comp_2__˚c_ VARCHAR, _percentage_wt_comp_1 VARCHAR) ### Question: Tell me the bp comp 2 for % wt comp 1 of 76 ### Answer: SELECT bp_comp_2__˚c_ FROM table_name_32 WHERE _percentage_wt_comp_1 = 76
Tell me the total number of % wt comp 1 foR % wt comp 2 or 27
CREATE TABLE table_name_1 (_percentage_wt_comp_1 VARCHAR, _percentage_wt_comp_2 VARCHAR)
SELECT COUNT(_percentage_wt_comp_1) FROM table_name_1 WHERE _percentage_wt_comp_2 = 27
### Context: CREATE TABLE table_name_1 (_percentage_wt_comp_1 VARCHAR, _percentage_wt_comp_2 VARCHAR) ### Question: Tell me the total number of % wt comp 1 foR % wt comp 2 or 27 ### Answer: SELECT COUNT(_percentage_wt_comp_1) FROM table_name_1 WHERE _percentage_wt_comp_2 = 27
What is the percentage of the popular vote when there were 90 seats available?
CREATE TABLE table_name_53 (_percentage_of_popular_vote VARCHAR, _number_of_seats_available VARCHAR)
SELECT _percentage_of_popular_vote FROM table_name_53 WHERE _number_of_seats_available = 90
### Context: CREATE TABLE table_name_53 (_percentage_of_popular_vote VARCHAR, _number_of_seats_available VARCHAR) ### Question: What is the percentage of the popular vote when there were 90 seats available? ### Answer: SELECT _percentage_of_popular_vote FROM table_name_53 WHERE _number_of_seats_available = 90
Name the gold for silver of 39
CREATE TABLE table_name_56 (gold VARCHAR, silver VARCHAR)
SELECT gold FROM table_name_56 WHERE silver = 39
### Context: CREATE TABLE table_name_56 (gold VARCHAR, silver VARCHAR) ### Question: Name the gold for silver of 39 ### Answer: SELECT gold FROM table_name_56 WHERE silver = 39
What is the compression ratio for the 302-2v Windsor v8 engine?
CREATE TABLE table_name_41 (compression_ratio VARCHAR, engine VARCHAR)
SELECT compression_ratio FROM table_name_41 WHERE engine = "302-2v windsor v8"
### Context: CREATE TABLE table_name_41 (compression_ratio VARCHAR, engine VARCHAR) ### Question: What is the compression ratio for the 302-2v Windsor v8 engine? ### Answer: SELECT compression_ratio FROM table_name_41 WHERE engine = "302-2v windsor v8"
How many games had 41 rushes and were than 197 yards?
CREATE TABLE table_name_21 (games VARCHAR, rushes VARCHAR, yards VARCHAR)
SELECT COUNT(games) FROM table_name_21 WHERE rushes = 41 AND yards < 197
### Context: CREATE TABLE table_name_21 (games VARCHAR, rushes VARCHAR, yards VARCHAR) ### Question: How many games had 41 rushes and were than 197 yards? ### Answer: SELECT COUNT(games) FROM table_name_21 WHERE rushes = 41 AND yards < 197
What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?
CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR)
SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12
### Context: CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR) ### Question: What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games? ### Answer: SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12
What is the pick # for Dimelon Westfield?
CREATE TABLE table_name_93 (pick__number INTEGER, player VARCHAR)
SELECT MIN(pick__number) FROM table_name_93 WHERE player = "dimelon westfield"
### Context: CREATE TABLE table_name_93 (pick__number INTEGER, player VARCHAR) ### Question: What is the pick # for Dimelon Westfield? ### Answer: SELECT MIN(pick__number) FROM table_name_93 WHERE player = "dimelon westfield"
What was the final score of the November 8, 2001 game?
CREATE TABLE table_name_64 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_64 WHERE date = "november 8, 2001"
### Context: CREATE TABLE table_name_64 (result VARCHAR, date VARCHAR) ### Question: What was the final score of the November 8, 2001 game? ### Answer: SELECT result FROM table_name_64 WHERE date = "november 8, 2001"
Tell me the bullet tip color of headstamp id of h1z
CREATE TABLE table_name_54 (bullet_tip_color VARCHAR, headstamp_id VARCHAR)
SELECT bullet_tip_color FROM table_name_54 WHERE headstamp_id = "h1z"
### Context: CREATE TABLE table_name_54 (bullet_tip_color VARCHAR, headstamp_id VARCHAR) ### Question: Tell me the bullet tip color of headstamp id of h1z ### Answer: SELECT bullet_tip_color FROM table_name_54 WHERE headstamp_id = "h1z"
Tell me the total number of gold for bronze more than 0 and total more than 100
CREATE TABLE table_name_2 (gold VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT COUNT(gold) FROM table_name_2 WHERE bronze > 0 AND rank = "total" AND "total" > 100
### Context: CREATE TABLE table_name_2 (gold VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: Tell me the total number of gold for bronze more than 0 and total more than 100 ### Answer: SELECT COUNT(gold) FROM table_name_2 WHERE bronze > 0 AND rank = "total" AND "total" > 100
Tell me the least silver for total less than 6 and rank of 8
CREATE TABLE table_name_17 (silver INTEGER, total VARCHAR, rank VARCHAR)
SELECT MIN(silver) FROM table_name_17 WHERE total < 6 AND rank = "8"
### Context: CREATE TABLE table_name_17 (silver INTEGER, total VARCHAR, rank VARCHAR) ### Question: Tell me the least silver for total less than 6 and rank of 8 ### Answer: SELECT MIN(silver) FROM table_name_17 WHERE total < 6 AND rank = "8"
What is the first leg score in that match where Marseille was the first team?
CREATE TABLE table_name_85 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_85 WHERE team_1 = "marseille"
### Context: CREATE TABLE table_name_85 (team_1 VARCHAR) ### Question: What is the first leg score in that match where Marseille was the first team? ### Answer: SELECT 1 AS st_leg FROM table_name_85 WHERE team_1 = "marseille"
Tell me the discovery/publication for still living
CREATE TABLE table_name_55 (discovery___publication_of_name VARCHAR, fossil_record VARCHAR)
SELECT discovery___publication_of_name FROM table_name_55 WHERE fossil_record = "still living"
### Context: CREATE TABLE table_name_55 (discovery___publication_of_name VARCHAR, fossil_record VARCHAR) ### Question: Tell me the discovery/publication for still living ### Answer: SELECT discovery___publication_of_name FROM table_name_55 WHERE fossil_record = "still living"
Tell me the discovery/publication for red deer cave people
CREATE TABLE table_name_69 (discovery___publication_of_name VARCHAR, species VARCHAR)
SELECT discovery___publication_of_name FROM table_name_69 WHERE species = "red deer cave people"
### Context: CREATE TABLE table_name_69 (discovery___publication_of_name VARCHAR, species VARCHAR) ### Question: Tell me the discovery/publication for red deer cave people ### Answer: SELECT discovery___publication_of_name FROM table_name_69 WHERE species = "red deer cave people"
Tell me the discovery/publicatio of name for h.heidelbergensis
CREATE TABLE table_name_78 (discovery___publication_of_name VARCHAR, species VARCHAR)
SELECT discovery___publication_of_name FROM table_name_78 WHERE species = "h.heidelbergensis"
### Context: CREATE TABLE table_name_78 (discovery___publication_of_name VARCHAR, species VARCHAR) ### Question: Tell me the discovery/publicatio of name for h.heidelbergensis ### Answer: SELECT discovery___publication_of_name FROM table_name_78 WHERE species = "h.heidelbergensis"
Tell me the fossil record for name of 1994/2003
CREATE TABLE table_name_33 (fossil_record VARCHAR, discovery___publication_of_name VARCHAR)
SELECT fossil_record FROM table_name_33 WHERE discovery___publication_of_name = "1994/2003"
### Context: CREATE TABLE table_name_33 (fossil_record VARCHAR, discovery___publication_of_name VARCHAR) ### Question: Tell me the fossil record for name of 1994/2003 ### Answer: SELECT fossil_record FROM table_name_33 WHERE discovery___publication_of_name = "1994/2003"
Tell me lived for name of 1994/2003
CREATE TABLE table_name_99 (lived_when___mya__ VARCHAR, discovery___publication_of_name VARCHAR)
SELECT lived_when___mya__ FROM table_name_99 WHERE discovery___publication_of_name = "1994/2003"
### Context: CREATE TABLE table_name_99 (lived_when___mya__ VARCHAR, discovery___publication_of_name VARCHAR) ### Question: Tell me lived for name of 1994/2003 ### Answer: SELECT lived_when___mya__ FROM table_name_99 WHERE discovery___publication_of_name = "1994/2003"
When was the Monza circuit?
CREATE TABLE table_name_68 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_68 WHERE circuit = "monza"
### Context: CREATE TABLE table_name_68 (date VARCHAR, circuit VARCHAR) ### Question: When was the Monza circuit? ### Answer: SELECT date FROM table_name_68 WHERE circuit = "monza"
What is Metro's win percentage?
CREATE TABLE table_name_4 (win__percentage VARCHAR, conference VARCHAR)
SELECT win__percentage FROM table_name_4 WHERE conference = "metro"
### Context: CREATE TABLE table_name_4 (win__percentage VARCHAR, conference VARCHAR) ### Question: What is Metro's win percentage? ### Answer: SELECT win__percentage FROM table_name_4 WHERE conference = "metro"
How many elite eight teams came from the Atlantic 10?
CREATE TABLE table_name_67 (elite_eight VARCHAR, conference VARCHAR)
SELECT elite_eight FROM table_name_67 WHERE conference = "atlantic 10"
### Context: CREATE TABLE table_name_67 (elite_eight VARCHAR, conference VARCHAR) ### Question: How many elite eight teams came from the Atlantic 10? ### Answer: SELECT elite_eight FROM table_name_67 WHERE conference = "atlantic 10"
Tell me the opponent for attendance of 55,527
CREATE TABLE table_name_24 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_24 WHERE attendance = "55,527"
### Context: CREATE TABLE table_name_24 (opponent VARCHAR, attendance VARCHAR) ### Question: Tell me the opponent for attendance of 55,527 ### Answer: SELECT opponent FROM table_name_24 WHERE attendance = "55,527"
Which version B-58 aircraft model originated in the United States has 2 in service?
CREATE TABLE table_name_57 (aircraft VARCHAR, versions VARCHAR, in_service VARCHAR, origin VARCHAR)
SELECT aircraft FROM table_name_57 WHERE in_service = "2" AND origin = "united states" AND versions = "b-58"
### Context: CREATE TABLE table_name_57 (aircraft VARCHAR, versions VARCHAR, in_service VARCHAR, origin VARCHAR) ### Question: Which version B-58 aircraft model originated in the United States has 2 in service? ### Answer: SELECT aircraft FROM table_name_57 WHERE in_service = "2" AND origin = "united states" AND versions = "b-58"
What aircraft type is the Casa C-212 Aviocar?
CREATE TABLE table_name_45 (type VARCHAR, aircraft VARCHAR)
SELECT type FROM table_name_45 WHERE aircraft = "casa c-212 aviocar"
### Context: CREATE TABLE table_name_45 (type VARCHAR, aircraft VARCHAR) ### Question: What aircraft type is the Casa C-212 Aviocar? ### Answer: SELECT type FROM table_name_45 WHERE aircraft = "casa c-212 aviocar"
How many T-260 EU aircrafts are currently in service?
CREATE TABLE table_name_64 (in_service VARCHAR, versions VARCHAR)
SELECT in_service FROM table_name_64 WHERE versions = "t-260 eu"
### Context: CREATE TABLE table_name_64 (in_service VARCHAR, versions VARCHAR) ### Question: How many T-260 EU aircrafts are currently in service? ### Answer: SELECT in_service FROM table_name_64 WHERE versions = "t-260 eu"
How many C-95 aircrafts originating in Brazil are currently in service?
CREATE TABLE table_name_12 (in_service VARCHAR, origin VARCHAR, versions VARCHAR)
SELECT in_service FROM table_name_12 WHERE origin = "brazil" AND versions = "c-95"
### Context: CREATE TABLE table_name_12 (in_service VARCHAR, origin VARCHAR, versions VARCHAR) ### Question: How many C-95 aircrafts originating in Brazil are currently in service? ### Answer: SELECT in_service FROM table_name_12 WHERE origin = "brazil" AND versions = "c-95"
Tell me the lowest other for albanians more than 8793 and Roma less than 1030
CREATE TABLE table_name_47 (other INTEGER, albanians VARCHAR, roma VARCHAR)
SELECT MIN(other) FROM table_name_47 WHERE albanians > 8793 AND roma < 1030
### Context: CREATE TABLE table_name_47 (other INTEGER, albanians VARCHAR, roma VARCHAR) ### Question: Tell me the lowest other for albanians more than 8793 and Roma less than 1030 ### Answer: SELECT MIN(other) FROM table_name_47 WHERE albanians > 8793 AND roma < 1030
Tell me the highest bosniaks for year more than 2002
CREATE TABLE table_name_8 (bosniaks INTEGER, census_year INTEGER)
SELECT MAX(bosniaks) FROM table_name_8 WHERE census_year > 2002
### Context: CREATE TABLE table_name_8 (bosniaks INTEGER, census_year INTEGER) ### Question: Tell me the highest bosniaks for year more than 2002 ### Answer: SELECT MAX(bosniaks) FROM table_name_8 WHERE census_year > 2002
Name the lowest ERP W with a frequency mhz less than 103.1
CREATE TABLE table_name_21 (erp_w INTEGER, frequency_mhz INTEGER)
SELECT MIN(erp_w) FROM table_name_21 WHERE frequency_mhz < 103.1
### Context: CREATE TABLE table_name_21 (erp_w INTEGER, frequency_mhz INTEGER) ### Question: Name the lowest ERP W with a frequency mhz less than 103.1 ### Answer: SELECT MIN(erp_w) FROM table_name_21 WHERE frequency_mhz < 103.1
Name the city with 103.1 frequency and ERP W less than 80
CREATE TABLE table_name_92 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT city_of_license FROM table_name_92 WHERE frequency_mhz = 103.1 AND erp_w < 80
### Context: CREATE TABLE table_name_92 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) ### Question: Name the city with 103.1 frequency and ERP W less than 80 ### Answer: SELECT city_of_license FROM table_name_92 WHERE frequency_mhz = 103.1 AND erp_w < 80
Tell me the affiliation for pick number less than 59 and position of gk
CREATE TABLE table_name_33 (affiliation VARCHAR, pick__number VARCHAR, position VARCHAR)
SELECT affiliation FROM table_name_33 WHERE pick__number < 59 AND position = "gk"
### Context: CREATE TABLE table_name_33 (affiliation VARCHAR, pick__number VARCHAR, position VARCHAR) ### Question: Tell me the affiliation for pick number less than 59 and position of gk ### Answer: SELECT affiliation FROM table_name_33 WHERE pick__number < 59 AND position = "gk"
What Tournament of canada happened in 1998?
CREATE TABLE table_name_97 (tournament VARCHAR)
SELECT 1998 FROM table_name_97 WHERE tournament = "canada"
### Context: CREATE TABLE table_name_97 (tournament VARCHAR) ### Question: What Tournament of canada happened in 1998? ### Answer: SELECT 1998 FROM table_name_97 WHERE tournament = "canada"
Who had 1990 of 2–2 in 1993?
CREATE TABLE table_name_67 (Id VARCHAR)
SELECT 1993 FROM table_name_67 WHERE 1990 = "2–2"
### Context: CREATE TABLE table_name_67 (Id VARCHAR) ### Question: Who had 1990 of 2–2 in 1993? ### Answer: SELECT 1993 FROM table_name_67 WHERE 1990 = "2–2"
What Tournament of monte carlo had 1996 and a 1987 of nme?
CREATE TABLE table_name_45 (tournament VARCHAR)
SELECT 1996 FROM table_name_45 WHERE 1987 = "nme" AND tournament = "monte carlo"
### Context: CREATE TABLE table_name_45 (tournament VARCHAR) ### Question: What Tournament of monte carlo had 1996 and a 1987 of nme? ### Answer: SELECT 1996 FROM table_name_45 WHERE 1987 = "nme" AND tournament = "monte carlo"
What Tournament of the french open had 2004 that has a 1998 of 2r?
CREATE TABLE table_name_58 (tournament VARCHAR)
SELECT 2004 FROM table_name_58 WHERE 1998 = "2r" AND tournament = "french open"
### Context: CREATE TABLE table_name_58 (tournament VARCHAR) ### Question: What Tournament of the french open had 2004 that has a 1998 of 2r? ### Answer: SELECT 2004 FROM table_name_58 WHERE 1998 = "2r" AND tournament = "french open"
What is the margin at the Nabisco Championship?
CREATE TABLE table_name_18 (margin VARCHAR, championship VARCHAR)
SELECT margin FROM table_name_18 WHERE championship = "nabisco championship"
### Context: CREATE TABLE table_name_18 (margin VARCHAR, championship VARCHAR) ### Question: What is the margin at the Nabisco Championship? ### Answer: SELECT margin FROM table_name_18 WHERE championship = "nabisco championship"
What was the margin in 2001 at the McDonald's LPGA Championship?
CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, championship VARCHAR)
SELECT margin FROM table_name_88 WHERE year = 2001 AND championship = "mcdonald's lpga championship"
### Context: CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, championship VARCHAR) ### Question: What was the margin in 2001 at the McDonald's LPGA Championship? ### Answer: SELECT margin FROM table_name_88 WHERE year = 2001 AND championship = "mcdonald's lpga championship"
Tell me the date of goal 5
CREATE TABLE table_name_5 (date VARCHAR, goal VARCHAR)
SELECT date FROM table_name_5 WHERE goal = 5
### Context: CREATE TABLE table_name_5 (date VARCHAR, goal VARCHAR) ### Question: Tell me the date of goal 5 ### Answer: SELECT date FROM table_name_5 WHERE goal = 5
Tell me the date for goal of 5
CREATE TABLE table_name_17 (date VARCHAR, goal VARCHAR)
SELECT date FROM table_name_17 WHERE goal = 5
### Context: CREATE TABLE table_name_17 (date VARCHAR, goal VARCHAR) ### Question: Tell me the date for goal of 5 ### Answer: SELECT date FROM table_name_17 WHERE goal = 5
What was the result of Sopot (pol)?
CREATE TABLE table_name_33 (result VARCHAR, location VARCHAR)
SELECT result FROM table_name_33 WHERE location = "sopot (pol)"
### Context: CREATE TABLE table_name_33 (result VARCHAR, location VARCHAR) ### Question: What was the result of Sopot (pol)? ### Answer: SELECT result FROM table_name_33 WHERE location = "sopot (pol)"
Which division was the Rampage in when they were in the 2nd round in the Open Cup?
CREATE TABLE table_name_39 (division VARCHAR, open_cup VARCHAR)
SELECT division FROM table_name_39 WHERE open_cup = "2nd round"
### Context: CREATE TABLE table_name_39 (division VARCHAR, open_cup VARCHAR) ### Question: Which division was the Rampage in when they were in the 2nd round in the Open Cup? ### Answer: SELECT division FROM table_name_39 WHERE open_cup = "2nd round"
What was the Rampage's regular season in 1997?
CREATE TABLE table_name_12 (reg_season VARCHAR, year VARCHAR)
SELECT reg_season FROM table_name_12 WHERE year = 1997
### Context: CREATE TABLE table_name_12 (reg_season VARCHAR, year VARCHAR) ### Question: What was the Rampage's regular season in 1997? ### Answer: SELECT reg_season FROM table_name_12 WHERE year = 1997
What was the Rampage's status in the Open Cup in the year that they made it to the 2nd round of the playoffs?
CREATE TABLE table_name_98 (open_cup VARCHAR, playoffs VARCHAR)
SELECT open_cup FROM table_name_98 WHERE playoffs = "2nd round"
### Context: CREATE TABLE table_name_98 (open_cup VARCHAR, playoffs VARCHAR) ### Question: What was the Rampage's status in the Open Cup in the year that they made it to the 2nd round of the playoffs? ### Answer: SELECT open_cup FROM table_name_98 WHERE playoffs = "2nd round"
What was the Rampage's result in the playoffs in the year that their regular season resulted in 4th, central?
CREATE TABLE table_name_38 (playoffs VARCHAR, reg_season VARCHAR)
SELECT playoffs FROM table_name_38 WHERE reg_season = "4th, central"
### Context: CREATE TABLE table_name_38 (playoffs VARCHAR, reg_season VARCHAR) ### Question: What was the Rampage's result in the playoffs in the year that their regular season resulted in 4th, central? ### Answer: SELECT playoffs FROM table_name_38 WHERE reg_season = "4th, central"
Which method resulting in a win against Ed Mahone?
CREATE TABLE table_name_77 (method VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_77 WHERE result = "win" AND opponent = "ed mahone"
### Context: CREATE TABLE table_name_77 (method VARCHAR, result VARCHAR, opponent VARCHAR) ### Question: Which method resulting in a win against Ed Mahone? ### Answer: SELECT method FROM table_name_77 WHERE result = "win" AND opponent = "ed mahone"
When did the technical knockout against Fatu Tuimanono happen?
CREATE TABLE table_name_24 (date VARCHAR, method VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_24 WHERE method = "technical knockout" AND opponent = "fatu tuimanono"
### Context: CREATE TABLE table_name_24 (date VARCHAR, method VARCHAR, opponent VARCHAR) ### Question: When did the technical knockout against Fatu Tuimanono happen? ### Answer: SELECT date FROM table_name_24 WHERE method = "technical knockout" AND opponent = "fatu tuimanono"
When did the opponent knockout Barry Prior in more than 2 rounds?
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)
SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior"
### Context: CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR) ### Question: When did the opponent knockout Barry Prior in more than 2 rounds? ### Answer: SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior"
What resulted after 4 rounds with Ed Mahone?
CREATE TABLE table_name_19 (result VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_19 WHERE round > 4 AND opponent = "ed mahone"
### Context: CREATE TABLE table_name_19 (result VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: What resulted after 4 rounds with Ed Mahone? ### Answer: SELECT result FROM table_name_19 WHERE round > 4 AND opponent = "ed mahone"
Tell me the region for georgia
CREATE TABLE table_name_8 (region VARCHAR, state VARCHAR)
SELECT region FROM table_name_8 WHERE state = "georgia"
### Context: CREATE TABLE table_name_8 (region VARCHAR, state VARCHAR) ### Question: Tell me the region for georgia ### Answer: SELECT region FROM table_name_8 WHERE state = "georgia"
Tell me the host for midwest thomas assembly center
CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR)
SELECT host FROM table_name_85 WHERE region = "midwest" AND venue = "thomas assembly center"
### Context: CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR) ### Question: Tell me the host for midwest thomas assembly center ### Answer: SELECT host FROM table_name_85 WHERE region = "midwest" AND venue = "thomas assembly center"
Tell me the region for frank erwin center
CREATE TABLE table_name_10 (region VARCHAR, venue VARCHAR)
SELECT region FROM table_name_10 WHERE venue = "frank erwin center"
### Context: CREATE TABLE table_name_10 (region VARCHAR, venue VARCHAR) ### Question: Tell me the region for frank erwin center ### Answer: SELECT region FROM table_name_10 WHERE venue = "frank erwin center"
In 1971 at MCG, what was the score of the VFL Reserves?
CREATE TABLE table_name_35 (score VARCHAR, year VARCHAR, competition VARCHAR, venue VARCHAR)
SELECT score FROM table_name_35 WHERE competition = "vfl reserves" AND venue = "mcg" AND year = "1971"
### Context: CREATE TABLE table_name_35 (score VARCHAR, year VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: In 1971 at MCG, what was the score of the VFL Reserves? ### Answer: SELECT score FROM table_name_35 WHERE competition = "vfl reserves" AND venue = "mcg" AND year = "1971"
What was the score when Richmond was the opponent?
CREATE TABLE table_name_45 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_45 WHERE opponent = "richmond"
### Context: CREATE TABLE table_name_45 (score VARCHAR, opponent VARCHAR) ### Question: What was the score when Richmond was the opponent? ### Answer: SELECT score FROM table_name_45 WHERE opponent = "richmond"
Where was the match with a score of 18.6 (114) - 21.14 (140)?
CREATE TABLE table_name_62 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_62 WHERE score = "18.6 (114) - 21.14 (140)"
### Context: CREATE TABLE table_name_62 (venue VARCHAR, score VARCHAR) ### Question: Where was the match with a score of 18.6 (114) - 21.14 (140)? ### Answer: SELECT venue FROM table_name_62 WHERE score = "18.6 (114) - 21.14 (140)"
At the VFL Reserves, who was the opponent when the score was 18.6 (114) - 21.14 (140)?
CREATE TABLE table_name_7 (opponent VARCHAR, competition VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_7 WHERE competition = "vfl reserves" AND score = "18.6 (114) - 21.14 (140)"
### Context: CREATE TABLE table_name_7 (opponent VARCHAR, competition VARCHAR, score VARCHAR) ### Question: At the VFL Reserves, who was the opponent when the score was 18.6 (114) - 21.14 (140)? ### Answer: SELECT opponent FROM table_name_7 WHERE competition = "vfl reserves" AND score = "18.6 (114) - 21.14 (140)"
Where was the match with a score of 4.10 (34) - 8.12 (60)?
CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_51 WHERE score = "4.10 (34) - 8.12 (60)"
### Context: CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR) ### Question: Where was the match with a score of 4.10 (34) - 8.12 (60)? ### Answer: SELECT venue FROM table_name_51 WHERE score = "4.10 (34) - 8.12 (60)"
How much is the total BBC 2 viewing in 1999?
CREATE TABLE table_name_57 (bbc_two_total_viewing VARCHAR, year VARCHAR)
SELECT bbc_two_total_viewing FROM table_name_57 WHERE year = "1999"
### Context: CREATE TABLE table_name_57 (bbc_two_total_viewing VARCHAR, year VARCHAR) ### Question: How much is the total BBC 2 viewing in 1999? ### Answer: SELECT bbc_two_total_viewing FROM table_name_57 WHERE year = "1999"
What was the rank of BBC 2 in 2005?
CREATE TABLE table_name_53 (bbc_two_rank VARCHAR, year VARCHAR)
SELECT bbc_two_rank FROM table_name_53 WHERE year = "2005"
### Context: CREATE TABLE table_name_53 (bbc_two_rank VARCHAR, year VARCHAR) ### Question: What was the rank of BBC 2 in 2005? ### Answer: SELECT bbc_two_rank FROM table_name_53 WHERE year = "2005"
What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000?
CREATE TABLE table_name_2 (bbc_two_rank VARCHAR, bbc_one_rank VARCHAR, bbc_one_total_viewing VARCHAR)
SELECT bbc_two_rank FROM table_name_2 WHERE bbc_one_rank = "1st" AND bbc_one_total_viewing = "9,840,000"
### Context: CREATE TABLE table_name_2 (bbc_two_rank VARCHAR, bbc_one_rank VARCHAR, bbc_one_total_viewing VARCHAR) ### Question: What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000? ### Answer: SELECT bbc_two_rank FROM table_name_2 WHERE bbc_one_rank = "1st" AND bbc_one_total_viewing = "9,840,000"
In what year was BBC 2 13th in rank?
CREATE TABLE table_name_51 (year VARCHAR, bbc_two_rank VARCHAR)
SELECT year FROM table_name_51 WHERE bbc_two_rank = "13th"
### Context: CREATE TABLE table_name_51 (year VARCHAR, bbc_two_rank VARCHAR) ### Question: In what year was BBC 2 13th in rank? ### Answer: SELECT year FROM table_name_51 WHERE bbc_two_rank = "13th"
How many goals occurred for Stein Huysegems when the caps value is more than 8?
CREATE TABLE table_name_13 (goals VARCHAR, caps VARCHAR, player VARCHAR)
SELECT goals FROM table_name_13 WHERE caps > 8 AND player = "stein huysegems"
### Context: CREATE TABLE table_name_13 (goals VARCHAR, caps VARCHAR, player VARCHAR) ### Question: How many goals occurred for Stein Huysegems when the caps value is more than 8? ### Answer: SELECT goals FROM table_name_13 WHERE caps > 8 AND player = "stein huysegems"
What is the largest caps value for Glen Moss?
CREATE TABLE table_name_50 (caps INTEGER, player VARCHAR)
SELECT MAX(caps) FROM table_name_50 WHERE player = "glen moss"
### Context: CREATE TABLE table_name_50 (caps INTEGER, player VARCHAR) ### Question: What is the largest caps value for Glen Moss? ### Answer: SELECT MAX(caps) FROM table_name_50 WHERE player = "glen moss"
What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?
CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR)
SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = "royal philharmonic orchestra" AND record_company = "decca records"
### Context: CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR) ### Question: What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records? ### Answer: SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = "royal philharmonic orchestra" AND record_company = "decca records"
What format was conductor Erich Leinsdorf's album released on?
CREATE TABLE table_name_34 (format VARCHAR, conductor VARCHAR)
SELECT format FROM table_name_34 WHERE conductor = "erich leinsdorf"
### Context: CREATE TABLE table_name_34 (format VARCHAR, conductor VARCHAR) ### Question: What format was conductor Erich Leinsdorf's album released on? ### Answer: SELECT format FROM table_name_34 WHERE conductor = "erich leinsdorf"
What record company released a CD in 1964?
CREATE TABLE table_name_48 (record_company VARCHAR, year_of_recording VARCHAR, format VARCHAR)
SELECT record_company FROM table_name_48 WHERE year_of_recording = 1964 AND format = "cd"
### Context: CREATE TABLE table_name_48 (record_company VARCHAR, year_of_recording VARCHAR, format VARCHAR) ### Question: What record company released a CD in 1964? ### Answer: SELECT record_company FROM table_name_48 WHERE year_of_recording = 1964 AND format = "cd"
What division has finalist playoffs and was 3rd round Open Cup?
CREATE TABLE table_name_73 (division VARCHAR, playoffs VARCHAR, open_cup VARCHAR)
SELECT division FROM table_name_73 WHERE playoffs = "finalist" AND open_cup = "3rd round"
### Context: CREATE TABLE table_name_73 (division VARCHAR, playoffs VARCHAR, open_cup VARCHAR) ### Question: What division has finalist playoffs and was 3rd round Open Cup? ### Answer: SELECT division FROM table_name_73 WHERE playoffs = "finalist" AND open_cup = "3rd round"
What year was the team 8th in the season and made it to the 3rd round in Open Cup?
CREATE TABLE table_name_21 (year VARCHAR, reg_season VARCHAR, open_cup VARCHAR)
SELECT year FROM table_name_21 WHERE reg_season = "8th" AND open_cup = "3rd round"
### Context: CREATE TABLE table_name_21 (year VARCHAR, reg_season VARCHAR, open_cup VARCHAR) ### Question: What year was the team 8th in the season and made it to the 3rd round in Open Cup? ### Answer: SELECT year FROM table_name_21 WHERE reg_season = "8th" AND open_cup = "3rd round"
Tell me the launch date/time for payload of gsat-4
CREATE TABLE table_name_57 (launch_date_time__utc_ VARCHAR, payload VARCHAR)
SELECT launch_date_time__utc_ FROM table_name_57 WHERE payload = "gsat-4"
### Context: CREATE TABLE table_name_57 (launch_date_time__utc_ VARCHAR, payload VARCHAR) ### Question: Tell me the launch date/time for payload of gsat-4 ### Answer: SELECT launch_date_time__utc_ FROM table_name_57 WHERE payload = "gsat-4"
Tell me the launch pad for 25 december 2010 10:34
CREATE TABLE table_name_16 (launch_pad VARCHAR, launch_date_time__utc_ VARCHAR)
SELECT launch_pad FROM table_name_16 WHERE launch_date_time__utc_ = "25 december 2010 10:34"
### Context: CREATE TABLE table_name_16 (launch_pad VARCHAR, launch_date_time__utc_ VARCHAR) ### Question: Tell me the launch pad for 25 december 2010 10:34 ### Answer: SELECT launch_pad FROM table_name_16 WHERE launch_date_time__utc_ = "25 december 2010 10:34"
Who had a rank more than 48, and a last in 2005?
CREATE TABLE table_name_16 (name VARCHAR, rank VARCHAR, last VARCHAR)
SELECT name FROM table_name_16 WHERE rank > 48 AND last = 2005
### Context: CREATE TABLE table_name_16 (name VARCHAR, rank VARCHAR, last VARCHAR) ### Question: Who had a rank more than 48, and a last in 2005? ### Answer: SELECT name FROM table_name_16 WHERE rank > 48 AND last = 2005
Which UEFA confederation member had a rank more than 17 and caps of 114?
CREATE TABLE table_name_32 (name VARCHAR, caps VARCHAR, rank VARCHAR, confederation VARCHAR)
SELECT name FROM table_name_32 WHERE rank > 17 AND confederation = "uefa" AND caps = 114
### Context: CREATE TABLE table_name_32 (name VARCHAR, caps VARCHAR, rank VARCHAR, confederation VARCHAR) ### Question: Which UEFA confederation member had a rank more than 17 and caps of 114? ### Answer: SELECT name FROM table_name_32 WHERE rank > 17 AND confederation = "uefa" AND caps = 114
Tell me the result of july 16, 2000
CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_68 WHERE date = "july 16, 2000"
### Context: CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR) ### Question: Tell me the result of july 16, 2000 ### Answer: SELECT result FROM table_name_68 WHERE date = "july 16, 2000"
What is the maximum cap number where 0 goals were scored with a rank of 15?
CREATE TABLE table_name_5 (caps INTEGER, goals VARCHAR, rank VARCHAR)
SELECT MAX(caps) FROM table_name_5 WHERE goals = 0 AND rank = 15
### Context: CREATE TABLE table_name_5 (caps INTEGER, goals VARCHAR, rank VARCHAR) ### Question: What is the maximum cap number where 0 goals were scored with a rank of 15? ### Answer: SELECT MAX(caps) FROM table_name_5 WHERE goals = 0 AND rank = 15
What were the fewest amount of guns possessed by a frigate that served in 1815?
CREATE TABLE table_name_32 (guns INTEGER, class VARCHAR, year VARCHAR)
SELECT MIN(guns) FROM table_name_32 WHERE class = "frigate" AND year = "1815"
### Context: CREATE TABLE table_name_32 (guns INTEGER, class VARCHAR, year VARCHAR) ### Question: What were the fewest amount of guns possessed by a frigate that served in 1815? ### Answer: SELECT MIN(guns) FROM table_name_32 WHERE class = "frigate" AND year = "1815"
Of the games that sold 321,000 units in the UK, what is their average place?
CREATE TABLE table_name_86 (place INTEGER, units_sold_in_the_uk VARCHAR)
SELECT AVG(place) FROM table_name_86 WHERE units_sold_in_the_uk = "321,000"
### Context: CREATE TABLE table_name_86 (place INTEGER, units_sold_in_the_uk VARCHAR) ### Question: Of the games that sold 321,000 units in the UK, what is their average place? ### Answer: SELECT AVG(place) FROM table_name_86 WHERE units_sold_in_the_uk = "321,000"
How many units were sold in the US of the game that sold 346,000 units in japan?
CREATE TABLE table_name_72 (units_sold_in_the_us VARCHAR, units_sold_in_japan VARCHAR)
SELECT units_sold_in_the_us FROM table_name_72 WHERE units_sold_in_japan = "346,000"
### Context: CREATE TABLE table_name_72 (units_sold_in_the_us VARCHAR, units_sold_in_japan VARCHAR) ### Question: How many units were sold in the US of the game that sold 346,000 units in japan? ### Answer: SELECT units_sold_in_the_us FROM table_name_72 WHERE units_sold_in_japan = "346,000"
Tell me the player from dallas burn
CREATE TABLE table_name_64 (player VARCHAR, mls_team VARCHAR)
SELECT player FROM table_name_64 WHERE mls_team = "dallas burn"
### Context: CREATE TABLE table_name_64 (player VARCHAR, mls_team VARCHAR) ### Question: Tell me the player from dallas burn ### Answer: SELECT player FROM table_name_64 WHERE mls_team = "dallas burn"
Tell me the sum of pick number for kenny arena
CREATE TABLE table_name_40 (pick__number INTEGER, player VARCHAR)
SELECT SUM(pick__number) FROM table_name_40 WHERE player = "kenny arena"
### Context: CREATE TABLE table_name_40 (pick__number INTEGER, player VARCHAR) ### Question: Tell me the sum of pick number for kenny arena ### Answer: SELECT SUM(pick__number) FROM table_name_40 WHERE player = "kenny arena"
What city is the Northeast Louisiana University located in?
CREATE TABLE table_name_7 (city VARCHAR, host VARCHAR)
SELECT city FROM table_name_7 WHERE host = "northeast louisiana university"
### Context: CREATE TABLE table_name_7 (city VARCHAR, host VARCHAR) ### Question: What city is the Northeast Louisiana University located in? ### Answer: SELECT city FROM table_name_7 WHERE host = "northeast louisiana university"
What region is the city of Philadelphia located in?
CREATE TABLE table_name_16 (region VARCHAR, city VARCHAR)
SELECT region FROM table_name_16 WHERE city = "philadelphia"
### Context: CREATE TABLE table_name_16 (region VARCHAR, city VARCHAR) ### Question: What region is the city of Philadelphia located in? ### Answer: SELECT region FROM table_name_16 WHERE city = "philadelphia"
What venue is in Long Beach?
CREATE TABLE table_name_73 (venue VARCHAR, city VARCHAR)
SELECT venue FROM table_name_73 WHERE city = "long beach"
### Context: CREATE TABLE table_name_73 (venue VARCHAR, city VARCHAR) ### Question: What venue is in Long Beach? ### Answer: SELECT venue FROM table_name_73 WHERE city = "long beach"
What state is Knoxville and the mideast region located in?
CREATE TABLE table_name_76 (state VARCHAR, region VARCHAR, city VARCHAR)
SELECT state FROM table_name_76 WHERE region = "mideast" AND city = "knoxville"
### Context: CREATE TABLE table_name_76 (state VARCHAR, region VARCHAR, city VARCHAR) ### Question: What state is Knoxville and the mideast region located in? ### Answer: SELECT state FROM table_name_76 WHERE region = "mideast" AND city = "knoxville"
What is the host in Georgia?
CREATE TABLE table_name_51 (host VARCHAR, state VARCHAR)
SELECT host FROM table_name_51 WHERE state = "georgia"
### Context: CREATE TABLE table_name_51 (host VARCHAR, state VARCHAR) ### Question: What is the host in Georgia? ### Answer: SELECT host FROM table_name_51 WHERE state = "georgia"
What state is the University of Tennessee located in?
CREATE TABLE table_name_91 (state VARCHAR, host VARCHAR)
SELECT state FROM table_name_91 WHERE host = "university of tennessee"
### Context: CREATE TABLE table_name_91 (state VARCHAR, host VARCHAR) ### Question: What state is the University of Tennessee located in? ### Answer: SELECT state FROM table_name_91 WHERE host = "university of tennessee"
Tell me the date that has a week larger than 3 and a result of w 28-27
CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT date FROM table_name_26 WHERE week > 3 AND result = "w 28-27"
### Context: CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR) ### Question: Tell me the date that has a week larger than 3 and a result of w 28-27 ### Answer: SELECT date FROM table_name_26 WHERE week > 3 AND result = "w 28-27"
Tell me the sum of attendane for a result of w 12-3 and week more than 12
CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_64 WHERE result = "w 12-3" AND week > 12
### Context: CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR, week VARCHAR) ### Question: Tell me the sum of attendane for a result of w 12-3 and week more than 12 ### Answer: SELECT SUM(attendance) FROM table_name_64 WHERE result = "w 12-3" AND week > 12
Tell me the total number of attendance for result of l 18-6
CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR)
SELECT COUNT(attendance) FROM table_name_3 WHERE result = "l 18-6"
### Context: CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR) ### Question: Tell me the total number of attendance for result of l 18-6 ### Answer: SELECT COUNT(attendance) FROM table_name_3 WHERE result = "l 18-6"
Tell me the total number of attendance for week of 16
CREATE TABLE table_name_12 (attendance VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_12 WHERE week = 16
### Context: CREATE TABLE table_name_12 (attendance VARCHAR, week VARCHAR) ### Question: Tell me the total number of attendance for week of 16 ### Answer: SELECT COUNT(attendance) FROM table_name_12 WHERE week = 16
How many bronzes were held by those with a total of 4 and less than 3 silvers.
CREATE TABLE table_name_37 (bronze INTEGER, total VARCHAR, silver VARCHAR)
SELECT SUM(bronze) FROM table_name_37 WHERE total = 4 AND silver < 3
### Context: CREATE TABLE table_name_37 (bronze INTEGER, total VARCHAR, silver VARCHAR) ### Question: How many bronzes were held by those with a total of 4 and less than 3 silvers. ### Answer: SELECT SUM(bronze) FROM table_name_37 WHERE total = 4 AND silver < 3
How many rounds did the IFL: Oakland event have?
CREATE TABLE table_name_4 (round INTEGER, event VARCHAR)
SELECT SUM(round) FROM table_name_4 WHERE event = "ifl: oakland"
### Context: CREATE TABLE table_name_4 (round INTEGER, event VARCHAR) ### Question: How many rounds did the IFL: Oakland event have? ### Answer: SELECT SUM(round) FROM table_name_4 WHERE event = "ifl: oakland"
Which opponent has a record of 3-0?
CREATE TABLE table_name_83 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_83 WHERE record = "3-0"
### Context: CREATE TABLE table_name_83 (opponent VARCHAR, record VARCHAR) ### Question: Which opponent has a record of 3-0? ### Answer: SELECT opponent FROM table_name_83 WHERE record = "3-0"
Tell me the constructor for david coulthard
CREATE TABLE table_name_10 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_10 WHERE driver = "david coulthard"
### Context: CREATE TABLE table_name_10 (constructor VARCHAR, driver VARCHAR) ### Question: Tell me the constructor for david coulthard ### Answer: SELECT constructor FROM table_name_10 WHERE driver = "david coulthard"
Tell me the pos for adrian sutil
CREATE TABLE table_name_75 (pos VARCHAR, driver VARCHAR)
SELECT pos FROM table_name_75 WHERE driver = "adrian sutil"
### Context: CREATE TABLE table_name_75 (pos VARCHAR, driver VARCHAR) ### Question: Tell me the pos for adrian sutil ### Answer: SELECT pos FROM table_name_75 WHERE driver = "adrian sutil"
Tell me the part 1 of grid of 1
CREATE TABLE table_name_60 (part_1 VARCHAR, grid VARCHAR)
SELECT part_1 FROM table_name_60 WHERE grid = "1"
### Context: CREATE TABLE table_name_60 (part_1 VARCHAR, grid VARCHAR) ### Question: Tell me the part 1 of grid of 1 ### Answer: SELECT part_1 FROM table_name_60 WHERE grid = "1"
Name the city of license for call sign of k215es
CREATE TABLE table_name_7 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_7 WHERE call_sign = "k215es"
### Context: CREATE TABLE table_name_7 (city_of_license VARCHAR, call_sign VARCHAR) ### Question: Name the city of license for call sign of k215es ### Answer: SELECT city_of_license FROM table_name_7 WHERE call_sign = "k215es"
Name the FCC info for call sign of k208eq
CREATE TABLE table_name_51 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_name_51 WHERE call_sign = "k208eq"
### Context: CREATE TABLE table_name_51 (fcc_info VARCHAR, call_sign VARCHAR) ### Question: Name the FCC info for call sign of k208eq ### Answer: SELECT fcc_info FROM table_name_51 WHERE call_sign = "k208eq"
Tell me the total number of date for carpet
CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR)
SELECT COUNT(date) FROM table_name_94 WHERE surface = "carpet"
### Context: CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR) ### Question: Tell me the total number of date for carpet ### Answer: SELECT COUNT(date) FROM table_name_94 WHERE surface = "carpet"
Tell me the opponent for 6–2, 3–6, 4–6
CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT opponent_in_the_final FROM table_name_29 WHERE score_in_the_final = "6–2, 3–6, 4–6"
### Context: CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: Tell me the opponent for 6–2, 3–6, 4–6 ### Answer: SELECT opponent_in_the_final FROM table_name_29 WHERE score_in_the_final = "6–2, 3–6, 4–6"
What is the nationality of Martin Lewis?
CREATE TABLE table_name_62 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_62 WHERE player = "martin lewis"
### Context: CREATE TABLE table_name_62 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality of Martin Lewis? ### Answer: SELECT nationality FROM table_name_62 WHERE player = "martin lewis"
Tell me the opponent of week 14
CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_59 WHERE week = 14
### Context: CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR) ### Question: Tell me the opponent of week 14 ### Answer: SELECT opponent FROM table_name_59 WHERE week = 14