question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many wins where there total for Series named formula 3 euro series as well as having more than 2 Podiums?
CREATE TABLE table_name_43 (wins VARCHAR, series VARCHAR, podiums VARCHAR)
SELECT COUNT(wins) FROM table_name_43 WHERE series = "formula 3 euro series" AND podiums > 2
### Context: CREATE TABLE table_name_43 (wins VARCHAR, series VARCHAR, podiums VARCHAR) ### Question: How many wins where there total for Series named formula 3 euro series as well as having more than 2 Podiums? ### Answer: SELECT COUNT(wins) FROM table_name_43 WHERE series = "formula 3 euro series" AND podiums > 2
What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?
CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)
SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"
### Context: CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR) ### Question: What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy? ### Answer: SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"
What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?
CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR)
SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0
### Context: CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR) ### Question: What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0? ### Answer: SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0
Name the week for december 4, 2009
CREATE TABLE table_name_80 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_80 WHERE date = "december 4, 2009"
### Context: CREATE TABLE table_name_80 (week VARCHAR, date VARCHAR) ### Question: Name the week for december 4, 2009 ### Answer: SELECT week FROM table_name_80 WHERE date = "december 4, 2009"
Name the opponent with record of 6-2
CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_19 WHERE record = "6-2"
### Context: CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR) ### Question: Name the opponent with record of 6-2 ### Answer: SELECT opponent FROM table_name_19 WHERE record = "6-2"
Name the opponent with result of w 35-21
CREATE TABLE table_name_82 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_82 WHERE result = "w 35-21"
### Context: CREATE TABLE table_name_82 (opponent VARCHAR, result VARCHAR) ### Question: Name the opponent with result of w 35-21 ### Answer: SELECT opponent FROM table_name_82 WHERE result = "w 35-21"
Name the date with resultof w 35-7
CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_22 WHERE result = "w 35-7"
### Context: CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR) ### Question: Name the date with resultof w 35-7 ### Answer: SELECT date FROM table_name_22 WHERE result = "w 35-7"
Name the date with record of 3-1
CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_33 WHERE record = "3-1"
### Context: CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR) ### Question: Name the date with record of 3-1 ### Answer: SELECT date FROM table_name_33 WHERE record = "3-1"
Name the week for date of bye
CREATE TABLE table_name_29 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_29 WHERE date = "bye"
### Context: CREATE TABLE table_name_29 (week VARCHAR, date VARCHAR) ### Question: Name the week for date of bye ### Answer: SELECT week FROM table_name_29 WHERE date = "bye"
What is the friendly game for Germany of France?
CREATE TABLE table_name_58 (friendly VARCHAR, germany VARCHAR)
SELECT friendly FROM table_name_58 WHERE germany = "france"
### Context: CREATE TABLE table_name_58 (friendly VARCHAR, germany VARCHAR) ### Question: What is the friendly game for Germany of France? ### Answer: SELECT friendly FROM table_name_58 WHERE germany = "france"
What company is numbered larger than 5 and priced at $389M?
CREATE TABLE table_name_84 (company VARCHAR, number VARCHAR, price VARCHAR)
SELECT company FROM table_name_84 WHERE number > 5 AND price = "$389m"
### Context: CREATE TABLE table_name_84 (company VARCHAR, number VARCHAR, price VARCHAR) ### Question: What company is numbered larger than 5 and priced at $389M? ### Answer: SELECT company FROM table_name_84 WHERE number > 5 AND price = "$389m"
Which category was william ivey long a nominee and nominated in?
CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR)
SELECT category FROM table_name_55 WHERE result = "nominated" AND nominee = "william ivey long"
### Context: CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR) ### Question: Which category was william ivey long a nominee and nominated in? ### Answer: SELECT category FROM table_name_55 WHERE result = "nominated" AND nominee = "william ivey long"
What is the half-life discovered in 2003?
CREATE TABLE table_name_22 (half_life VARCHAR, discovery_year VARCHAR)
SELECT half_life FROM table_name_22 WHERE discovery_year = "2003"
### Context: CREATE TABLE table_name_22 (half_life VARCHAR, discovery_year VARCHAR) ### Question: What is the half-life discovered in 2003? ### Answer: SELECT half_life FROM table_name_22 WHERE discovery_year = "2003"
What is the decay mode of the 265m hs isotope discovered in 1984?
CREATE TABLE table_name_28 (decay_mode VARCHAR, discovery_year VARCHAR, isotope VARCHAR)
SELECT decay_mode FROM table_name_28 WHERE discovery_year = "1984" AND isotope = "265m hs"
### Context: CREATE TABLE table_name_28 (decay_mode VARCHAR, discovery_year VARCHAR, isotope VARCHAR) ### Question: What is the decay mode of the 265m hs isotope discovered in 1984? ### Answer: SELECT decay_mode FROM table_name_28 WHERE discovery_year = "1984" AND isotope = "265m hs"
What is the Frequency MHz of Trinidad, Colorado?
CREATE TABLE table_name_6 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT frequency_mhz FROM table_name_6 WHERE city_of_license = "trinidad, colorado"
### Context: CREATE TABLE table_name_6 (frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: What is the Frequency MHz of Trinidad, Colorado? ### Answer: SELECT frequency_mhz FROM table_name_6 WHERE city_of_license = "trinidad, colorado"
What city of license has an ERP W smaller than 500, Class A, and Frequency MHz larger than 89.7?
CREATE TABLE table_name_76 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR)
SELECT city_of_license FROM table_name_76 WHERE erp_w < 500 AND class = "a" AND frequency_mhz > 89.7
### Context: CREATE TABLE table_name_76 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR) ### Question: What city of license has an ERP W smaller than 500, Class A, and Frequency MHz larger than 89.7? ### Answer: SELECT city_of_license FROM table_name_76 WHERE erp_w < 500 AND class = "a" AND frequency_mhz > 89.7
What is the smallest capacity for Fandok?
CREATE TABLE table_name_84 (capacity INTEGER, team VARCHAR)
SELECT MIN(capacity) FROM table_name_84 WHERE team = "fandok"
### Context: CREATE TABLE table_name_84 (capacity INTEGER, team VARCHAR) ### Question: What is the smallest capacity for Fandok? ### Answer: SELECT MIN(capacity) FROM table_name_84 WHERE team = "fandok"
What is the highest pick number of a defensive back with less than 136 overall points?
CREATE TABLE table_name_99 (pick__number INTEGER, overall VARCHAR, position VARCHAR)
SELECT MAX(pick__number) FROM table_name_99 WHERE overall < 136 AND position = "defensive back"
### Context: CREATE TABLE table_name_99 (pick__number INTEGER, overall VARCHAR, position VARCHAR) ### Question: What is the highest pick number of a defensive back with less than 136 overall points? ### Answer: SELECT MAX(pick__number) FROM table_name_99 WHERE overall < 136 AND position = "defensive back"
What is the lowest pick number of John Scully?
CREATE TABLE table_name_45 (pick__number INTEGER, name VARCHAR)
SELECT MIN(pick__number) FROM table_name_45 WHERE name = "john scully"
### Context: CREATE TABLE table_name_45 (pick__number INTEGER, name VARCHAR) ### Question: What is the lowest pick number of John Scully? ### Answer: SELECT MIN(pick__number) FROM table_name_45 WHERE name = "john scully"
What is the total points with less than 5 games?
CREATE TABLE table_name_28 (points VARCHAR, games INTEGER)
SELECT COUNT(points) FROM table_name_28 WHERE games < 5
### Context: CREATE TABLE table_name_28 (points VARCHAR, games INTEGER) ### Question: What is the total points with less than 5 games? ### Answer: SELECT COUNT(points) FROM table_name_28 WHERE games < 5
What was the outcome for the India Open?
CREATE TABLE table_name_34 (outcome VARCHAR, venue VARCHAR)
SELECT outcome FROM table_name_34 WHERE venue = "india open"
### Context: CREATE TABLE table_name_34 (outcome VARCHAR, venue VARCHAR) ### Question: What was the outcome for the India Open? ### Answer: SELECT outcome FROM table_name_34 WHERE venue = "india open"
What was the Outcome at the 1985 India Open?
CREATE TABLE table_name_16 (outcome VARCHAR, year VARCHAR, venue VARCHAR)
SELECT outcome FROM table_name_16 WHERE year = "1985" AND venue = "india open"
### Context: CREATE TABLE table_name_16 (outcome VARCHAR, year VARCHAR, venue VARCHAR) ### Question: What was the Outcome at the 1985 India Open? ### Answer: SELECT outcome FROM table_name_16 WHERE year = "1985" AND venue = "india open"
What was the outcome in 1982 with Kang Haeng-Suk as partner?
CREATE TABLE table_name_88 (outcome VARCHAR, partner VARCHAR, year VARCHAR)
SELECT outcome FROM table_name_88 WHERE partner = "kang haeng-suk" AND year = "1982"
### Context: CREATE TABLE table_name_88 (outcome VARCHAR, partner VARCHAR, year VARCHAR) ### Question: What was the outcome in 1982 with Kang Haeng-Suk as partner? ### Answer: SELECT outcome FROM table_name_88 WHERE partner = "kang haeng-suk" AND year = "1982"
Which Party has a First elected smaller than 1878, and a District of south carolina 3?
CREATE TABLE table_name_4 (party VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT party FROM table_name_4 WHERE first_elected < 1878 AND district = "south carolina 3"
### Context: CREATE TABLE table_name_4 (party VARCHAR, first_elected VARCHAR, district VARCHAR) ### Question: Which Party has a First elected smaller than 1878, and a District of south carolina 3? ### Answer: SELECT party FROM table_name_4 WHERE first_elected < 1878 AND district = "south carolina 3"
Which Result has a First elected of 1876, and a District of south carolina 3?
CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT result FROM table_name_6 WHERE first_elected = 1876 AND district = "south carolina 3"
### Context: CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, district VARCHAR) ### Question: Which Result has a First elected of 1876, and a District of south carolina 3? ### Answer: SELECT result FROM table_name_6 WHERE first_elected = 1876 AND district = "south carolina 3"
Which Result has a First elected larger than 1876, and an Incumbent of john s. richardson?
CREATE TABLE table_name_98 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_98 WHERE first_elected > 1876 AND incumbent = "john s. richardson"
### Context: CREATE TABLE table_name_98 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: Which Result has a First elected larger than 1876, and an Incumbent of john s. richardson? ### Answer: SELECT result FROM table_name_98 WHERE first_elected > 1876 AND incumbent = "john s. richardson"
Who is the incumbent that is a republican and first elected before 1864?
CREATE TABLE table_name_73 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_name_73 WHERE party = "republican" AND first_elected < 1864
### Context: CREATE TABLE table_name_73 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) ### Question: Who is the incumbent that is a republican and first elected before 1864? ### Answer: SELECT incumbent FROM table_name_73 WHERE party = "republican" AND first_elected < 1864
What district is the democratic Francis C. Le Blond from?
CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_69 WHERE party = "democratic" AND incumbent = "francis c. le blond"
### Context: CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR) ### Question: What district is the democratic Francis C. Le Blond from? ### Answer: SELECT district FROM table_name_69 WHERE party = "democratic" AND incumbent = "francis c. le blond"
In the Ohio 4 district, that is the first elected date that has a result of re-elected?
CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR)
SELECT SUM(first_elected) FROM table_name_66 WHERE result = "re-elected" AND district = "ohio 4"
### Context: CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR) ### Question: In the Ohio 4 district, that is the first elected date that has a result of re-elected? ### Answer: SELECT SUM(first_elected) FROM table_name_66 WHERE result = "re-elected" AND district = "ohio 4"
What is the party in Ohio 6 District?
CREATE TABLE table_name_68 (party VARCHAR, district VARCHAR)
SELECT party FROM table_name_68 WHERE district = "ohio 6"
### Context: CREATE TABLE table_name_68 (party VARCHAR, district VARCHAR) ### Question: What is the party in Ohio 6 District? ### Answer: SELECT party FROM table_name_68 WHERE district = "ohio 6"
Which To par has a Year of 1994?
CREATE TABLE table_name_24 (to_par VARCHAR, year VARCHAR)
SELECT to_par FROM table_name_24 WHERE year = 1994
### Context: CREATE TABLE table_name_24 (to_par VARCHAR, year VARCHAR) ### Question: Which To par has a Year of 1994? ### Answer: SELECT to_par FROM table_name_24 WHERE year = 1994
Which Country has a Margin of victory of 2 strokes?
CREATE TABLE table_name_91 (country VARCHAR, margin_of_victory VARCHAR)
SELECT country FROM table_name_91 WHERE margin_of_victory = "2 strokes"
### Context: CREATE TABLE table_name_91 (country VARCHAR, margin_of_victory VARCHAR) ### Question: Which Country has a Margin of victory of 2 strokes? ### Answer: SELECT country FROM table_name_91 WHERE margin_of_victory = "2 strokes"
Which Year is the lowest one that has a To par of –1?
CREATE TABLE table_name_93 (year INTEGER, to_par VARCHAR)
SELECT MIN(year) FROM table_name_93 WHERE to_par = "–1"
### Context: CREATE TABLE table_name_93 (year INTEGER, to_par VARCHAR) ### Question: Which Year is the lowest one that has a To par of –1? ### Answer: SELECT MIN(year) FROM table_name_93 WHERE to_par = "–1"
Which Margin of victory has a Year larger than 1994, and a To par of –14, and a Score of 69-67-69-69=274?
CREATE TABLE table_name_25 (margin_of_victory VARCHAR, year VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT margin_of_victory FROM table_name_25 WHERE year > 1994 AND to_par = "–14" AND score = 69 - 67 - 69 - 69 = 274
### Context: CREATE TABLE table_name_25 (margin_of_victory VARCHAR, year VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: Which Margin of victory has a Year larger than 1994, and a To par of –14, and a Score of 69-67-69-69=274? ### Answer: SELECT margin_of_victory FROM table_name_25 WHERE year > 1994 AND to_par = "–14" AND score = 69 - 67 - 69 - 69 = 274
What was the record after the game at the Astrodome?
CREATE TABLE table_name_37 (record VARCHAR, location VARCHAR)
SELECT record FROM table_name_37 WHERE location = "astrodome"
### Context: CREATE TABLE table_name_37 (record VARCHAR, location VARCHAR) ### Question: What was the record after the game at the Astrodome? ### Answer: SELECT record FROM table_name_37 WHERE location = "astrodome"
What was the record after the game against the Houston Oilers?
CREATE TABLE table_name_98 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_98 WHERE opponent = "houston oilers"
### Context: CREATE TABLE table_name_98 (record VARCHAR, opponent VARCHAR) ### Question: What was the record after the game against the Houston Oilers? ### Answer: SELECT record FROM table_name_98 WHERE opponent = "houston oilers"
What is the average total score of Belarus, which had an E score less than 8.2?
CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, e_score VARCHAR)
SELECT AVG(total) FROM table_name_71 WHERE nation = "belarus" AND e_score < 8.2
### Context: CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, e_score VARCHAR) ### Question: What is the average total score of Belarus, which had an E score less than 8.2? ### Answer: SELECT AVG(total) FROM table_name_71 WHERE nation = "belarus" AND e_score < 8.2
What is the total of the team with a T score greater than 8 and an E score less than 8.4?
CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR)
SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4
### Context: CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR) ### Question: What is the total of the team with a T score greater than 8 and an E score less than 8.4? ### Answer: SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4
What is the T score of the team with an E score of 6.625?
CREATE TABLE table_name_52 (t_score VARCHAR, e_score VARCHAR)
SELECT t_score FROM table_name_52 WHERE e_score = 6.625
### Context: CREATE TABLE table_name_52 (t_score VARCHAR, e_score VARCHAR) ### Question: What is the T score of the team with an E score of 6.625? ### Answer: SELECT t_score FROM table_name_52 WHERE e_score = 6.625
What is the total of Poland, which has an E score greater than 7.725?
CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR)
SELECT COUNT(total) FROM table_name_97 WHERE nation = "poland" AND e_score > 7.725
### Context: CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR) ### Question: What is the total of Poland, which has an E score greater than 7.725? ### Answer: SELECT COUNT(total) FROM table_name_97 WHERE nation = "poland" AND e_score > 7.725
What is the total of the team with a T score less than 6.8?
CREATE TABLE table_name_88 (total INTEGER, t_score INTEGER)
SELECT SUM(total) FROM table_name_88 WHERE t_score < 6.8
### Context: CREATE TABLE table_name_88 (total INTEGER, t_score INTEGER) ### Question: What is the total of the team with a T score less than 6.8? ### Answer: SELECT SUM(total) FROM table_name_88 WHERE t_score < 6.8
What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue?
CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR)
SELECT date FROM table_name_56 WHERE competition = "2012 afc challenge cup" AND venue = "dasarath rangasala stadium, kathmandu"
### Context: CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue? ### Answer: SELECT date FROM table_name_56 WHERE competition = "2012 afc challenge cup" AND venue = "dasarath rangasala stadium, kathmandu"
What opposition do 31.1% of Social Democrats have?
CREATE TABLE table_name_70 (opposition VARCHAR, social_democrats__a_ VARCHAR)
SELECT opposition FROM table_name_70 WHERE social_democrats__a_ = "31.1%"
### Context: CREATE TABLE table_name_70 (opposition VARCHAR, social_democrats__a_ VARCHAR) ### Question: What opposition do 31.1% of Social Democrats have? ### Answer: SELECT opposition FROM table_name_70 WHERE social_democrats__a_ = "31.1%"
Which Position has a Round larger than 14, and a School/Club Team of north texas?
CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_22 WHERE round > 14 AND school_club_team = "north texas"
### Context: CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, school_club_team VARCHAR) ### Question: Which Position has a Round larger than 14, and a School/Club Team of north texas? ### Answer: SELECT position FROM table_name_22 WHERE round > 14 AND school_club_team = "north texas"
Which Round has a Player of anthony christnovich?
CREATE TABLE table_name_72 (round VARCHAR, player VARCHAR)
SELECT round FROM table_name_72 WHERE player = "anthony christnovich"
### Context: CREATE TABLE table_name_72 (round VARCHAR, player VARCHAR) ### Question: Which Round has a Player of anthony christnovich? ### Answer: SELECT round FROM table_name_72 WHERE player = "anthony christnovich"
Which Round is the lowest one that has a School/Club Team of virginia?
CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR)
SELECT MIN(round) FROM table_name_20 WHERE school_club_team = "virginia"
### Context: CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR) ### Question: Which Round is the lowest one that has a School/Club Team of virginia? ### Answer: SELECT MIN(round) FROM table_name_20 WHERE school_club_team = "virginia"
What is the name of the leading scorer on 2006-11-22?
CREATE TABLE table_name_5 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_5 WHERE date = "2006-11-22"
### Context: CREATE TABLE table_name_5 (leading_scorer VARCHAR, date VARCHAR) ### Question: What is the name of the leading scorer on 2006-11-22? ### Answer: SELECT leading_scorer FROM table_name_5 WHERE date = "2006-11-22"
What is the name of the leading scorer when the record was 9–6?
CREATE TABLE table_name_18 (leading_scorer VARCHAR, record VARCHAR)
SELECT leading_scorer FROM table_name_18 WHERE record = "9–6"
### Context: CREATE TABLE table_name_18 (leading_scorer VARCHAR, record VARCHAR) ### Question: What is the name of the leading scorer when the record was 9–6? ### Answer: SELECT leading_scorer FROM table_name_18 WHERE record = "9–6"
What is the number of people in Attendance when Visitor was the warriors on 2006-11-04?
CREATE TABLE table_name_40 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_40 WHERE visitor = "warriors" AND date = "2006-11-04"
### Context: CREATE TABLE table_name_40 (attendance VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What is the number of people in Attendance when Visitor was the warriors on 2006-11-04? ### Answer: SELECT attendance FROM table_name_40 WHERE visitor = "warriors" AND date = "2006-11-04"
What is the name of the visitor on 2006-11-04?
CREATE TABLE table_name_46 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_46 WHERE date = "2006-11-04"
### Context: CREATE TABLE table_name_46 (visitor VARCHAR, date VARCHAR) ### Question: What is the name of the visitor on 2006-11-04? ### Answer: SELECT visitor FROM table_name_46 WHERE date = "2006-11-04"
What is the name of the Leading scorer when the Score was 89–102?
CREATE TABLE table_name_59 (leading_scorer VARCHAR, score VARCHAR)
SELECT leading_scorer FROM table_name_59 WHERE score = "89–102"
### Context: CREATE TABLE table_name_59 (leading_scorer VARCHAR, score VARCHAR) ### Question: What is the name of the Leading scorer when the Score was 89–102? ### Answer: SELECT leading_scorer FROM table_name_59 WHERE score = "89–102"
How many people live in Norton?
CREATE TABLE table_name_1 (population INTEGER, town VARCHAR)
SELECT SUM(population) FROM table_name_1 WHERE town = "norton"
### Context: CREATE TABLE table_name_1 (population INTEGER, town VARCHAR) ### Question: How many people live in Norton? ### Answer: SELECT SUM(population) FROM table_name_1 WHERE town = "norton"
Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish?
CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR)
SELECT year FROM table_name_59 WHERE borough = "harrogate" AND rank < 6 AND definition = "civil parish"
### Context: CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR) ### Question: Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish? ### Answer: SELECT year FROM table_name_59 WHERE borough = "harrogate" AND rank < 6 AND definition = "civil parish"
Which Definition has a Rank smaller than 12, and a Town of tadcaster?
CREATE TABLE table_name_63 (definition VARCHAR, rank VARCHAR, town VARCHAR)
SELECT definition FROM table_name_63 WHERE rank < 12 AND town = "tadcaster"
### Context: CREATE TABLE table_name_63 (definition VARCHAR, rank VARCHAR, town VARCHAR) ### Question: Which Definition has a Rank smaller than 12, and a Town of tadcaster? ### Answer: SELECT definition FROM table_name_63 WHERE rank < 12 AND town = "tadcaster"
Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178?
CREATE TABLE table_name_16 (rank INTEGER, borough VARCHAR, population VARCHAR)
SELECT MIN(rank) FROM table_name_16 WHERE borough = "richmondshire" AND population > 8 OFFSET 178
### Context: CREATE TABLE table_name_16 (rank INTEGER, borough VARCHAR, population VARCHAR) ### Question: Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178? ### Answer: SELECT MIN(rank) FROM table_name_16 WHERE borough = "richmondshire" AND population > 8 OFFSET 178
How many bronze medals did Bulgaria receive?
CREATE TABLE table_name_1 (bronze VARCHAR, nation VARCHAR)
SELECT bronze FROM table_name_1 WHERE nation = "bulgaria"
### Context: CREATE TABLE table_name_1 (bronze VARCHAR, nation VARCHAR) ### Question: How many bronze medals did Bulgaria receive? ### Answer: SELECT bronze FROM table_name_1 WHERE nation = "bulgaria"
What was Phil Mickelson's score to par?
CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_28 WHERE player = "phil mickelson"
### Context: CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR) ### Question: What was Phil Mickelson's score to par? ### Answer: SELECT to_par FROM table_name_28 WHERE player = "phil mickelson"
What name has an overall less than 268, and 1 as the round?
CREATE TABLE table_name_98 (name VARCHAR, overall VARCHAR, round VARCHAR)
SELECT name FROM table_name_98 WHERE overall < 268 AND round = 1
### Context: CREATE TABLE table_name_98 (name VARCHAR, overall VARCHAR, round VARCHAR) ### Question: What name has an overall less than 268, and 1 as the round? ### Answer: SELECT name FROM table_name_98 WHERE overall < 268 AND round = 1
How many pick #'s have james britt as the name, with a round greater than 2?
CREATE TABLE table_name_91 (pick__number VARCHAR, name VARCHAR, round VARCHAR)
SELECT COUNT(pick__number) FROM table_name_91 WHERE name = "james britt" AND round > 2
### Context: CREATE TABLE table_name_91 (pick__number VARCHAR, name VARCHAR, round VARCHAR) ### Question: How many pick #'s have james britt as the name, with a round greater than 2? ### Answer: SELECT COUNT(pick__number) FROM table_name_91 WHERE name = "james britt" AND round > 2
what is the score on november 15
CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_66 WHERE date = "november 15"
### Context: CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR) ### Question: what is the score on november 15 ### Answer: SELECT score FROM table_name_66 WHERE date = "november 15"
Which Wins is the highest one that has a Country of united states, and a Player of andy bean, and a Rank smaller than 4?
CREATE TABLE table_name_66 (wins INTEGER, rank VARCHAR, country VARCHAR, player VARCHAR)
SELECT MAX(wins) FROM table_name_66 WHERE country = "united states" AND player = "andy bean" AND rank < 4
### Context: CREATE TABLE table_name_66 (wins INTEGER, rank VARCHAR, country VARCHAR, player VARCHAR) ### Question: Which Wins is the highest one that has a Country of united states, and a Player of andy bean, and a Rank smaller than 4? ### Answer: SELECT MAX(wins) FROM table_name_66 WHERE country = "united states" AND player = "andy bean" AND rank < 4
Which Country has a Rank of 5?
CREATE TABLE table_name_23 (country VARCHAR, rank VARCHAR)
SELECT country FROM table_name_23 WHERE rank = 5
### Context: CREATE TABLE table_name_23 (country VARCHAR, rank VARCHAR) ### Question: Which Country has a Rank of 5? ### Answer: SELECT country FROM table_name_23 WHERE rank = 5
Which Earnings ($) is the lowest one that has a Rank smaller than 1?
CREATE TABLE table_name_12 (earnings___ INTEGER, rank INTEGER)
SELECT MIN(earnings___) AS $__ FROM table_name_12 WHERE rank < 1
### Context: CREATE TABLE table_name_12 (earnings___ INTEGER, rank INTEGER) ### Question: Which Earnings ($) is the lowest one that has a Rank smaller than 1? ### Answer: SELECT MIN(earnings___) AS $__ FROM table_name_12 WHERE rank < 1
What is the score of the game on September 13 when the Expos were the opponent?
CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE opponent = "expos" AND date = "september 13"
### Context: CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: What is the score of the game on September 13 when the Expos were the opponent? ### Answer: SELECT score FROM table_name_49 WHERE opponent = "expos" AND date = "september 13"
Who was the opponent on the September 3 game?
CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_38 WHERE date = "september 3"
### Context: CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on the September 3 game? ### Answer: SELECT opponent FROM table_name_38 WHERE date = "september 3"
What is the save of the game on September 15?
CREATE TABLE table_name_92 (save VARCHAR, date VARCHAR)
SELECT save FROM table_name_92 WHERE date = "september 15"
### Context: CREATE TABLE table_name_92 (save VARCHAR, date VARCHAR) ### Question: What is the save of the game on September 15? ### Answer: SELECT save FROM table_name_92 WHERE date = "september 15"
Which Game site has a Week larger than 14?
CREATE TABLE table_name_44 (game_site VARCHAR, week INTEGER)
SELECT game_site FROM table_name_44 WHERE week > 14
### Context: CREATE TABLE table_name_44 (game_site VARCHAR, week INTEGER) ### Question: Which Game site has a Week larger than 14? ### Answer: SELECT game_site FROM table_name_44 WHERE week > 14
Which Date has a Game site of jeppesen stadium?
CREATE TABLE table_name_27 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_27 WHERE game_site = "jeppesen stadium"
### Context: CREATE TABLE table_name_27 (date VARCHAR, game_site VARCHAR) ### Question: Which Date has a Game site of jeppesen stadium? ### Answer: SELECT date FROM table_name_27 WHERE game_site = "jeppesen stadium"
Which Game site has 27,189 Attendances ?
CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_name_99 WHERE attendance = "27,189"
### Context: CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR) ### Question: Which Game site has 27,189 Attendances ? ### Answer: SELECT game_site FROM table_name_99 WHERE attendance = "27,189"
When is it has 15,557 Attendances?
CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_35 WHERE attendance = "15,557"
### Context: CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR) ### Question: When is it has 15,557 Attendances? ### Answer: SELECT date FROM table_name_35 WHERE attendance = "15,557"
With an Overall less than 171, what is the Round pick of Lance Moon?
CREATE TABLE table_name_36 (round INTEGER, name VARCHAR, overall VARCHAR)
SELECT MIN(round) FROM table_name_36 WHERE name = "lance moon" AND overall < 171
### Context: CREATE TABLE table_name_36 (round INTEGER, name VARCHAR, overall VARCHAR) ### Question: With an Overall less than 171, what is the Round pick of Lance Moon? ### Answer: SELECT MIN(round) FROM table_name_36 WHERE name = "lance moon" AND overall < 171
What is the Name of draft Pick #10?
CREATE TABLE table_name_19 (name VARCHAR, pick__number VARCHAR)
SELECT name FROM table_name_19 WHERE pick__number = 10
### Context: CREATE TABLE table_name_19 (name VARCHAR, pick__number VARCHAR) ### Question: What is the Name of draft Pick #10? ### Answer: SELECT name FROM table_name_19 WHERE pick__number = 10
How many Rounds have a Defensive End Pick?
CREATE TABLE table_name_16 (round VARCHAR, position VARCHAR)
SELECT COUNT(round) FROM table_name_16 WHERE position = "defensive end"
### Context: CREATE TABLE table_name_16 (round VARCHAR, position VARCHAR) ### Question: How many Rounds have a Defensive End Pick? ### Answer: SELECT COUNT(round) FROM table_name_16 WHERE position = "defensive end"
What was the time when Shinya Aoki was the opponent?
CREATE TABLE table_name_57 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_57 WHERE opponent = "shinya aoki"
### Context: CREATE TABLE table_name_57 (time VARCHAR, opponent VARCHAR) ### Question: What was the time when Shinya Aoki was the opponent? ### Answer: SELECT time FROM table_name_57 WHERE opponent = "shinya aoki"
Which method was used in round 1 with a record of 1-0?
CREATE TABLE table_name_89 (method VARCHAR, round VARCHAR, record VARCHAR)
SELECT method FROM table_name_89 WHERE round = 1 AND record = "1-0"
### Context: CREATE TABLE table_name_89 (method VARCHAR, round VARCHAR, record VARCHAR) ### Question: Which method was used in round 1 with a record of 1-0? ### Answer: SELECT method FROM table_name_89 WHERE round = 1 AND record = "1-0"
Which rank has a team of Suzuki with under 16 points?
CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR)
SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 16
### Context: CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR) ### Question: Which rank has a team of Suzuki with under 16 points? ### Answer: SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 16
Which class has a rank of 5th?
CREATE TABLE table_name_79 (class VARCHAR, rank VARCHAR)
SELECT class FROM table_name_79 WHERE rank = "5th"
### Context: CREATE TABLE table_name_79 (class VARCHAR, rank VARCHAR) ### Question: Which class has a rank of 5th? ### Answer: SELECT class FROM table_name_79 WHERE rank = "5th"
Which team has a class of 500cc and rank of 16th?
CREATE TABLE table_name_88 (team VARCHAR, class VARCHAR, rank VARCHAR)
SELECT team FROM table_name_88 WHERE class = "500cc" AND rank = "16th"
### Context: CREATE TABLE table_name_88 (team VARCHAR, class VARCHAR, rank VARCHAR) ### Question: Which team has a class of 500cc and rank of 16th? ### Answer: SELECT team FROM table_name_88 WHERE class = "500cc" AND rank = "16th"
Which team has 16 points and ranks 14th?
CREATE TABLE table_name_90 (team VARCHAR, points VARCHAR, rank VARCHAR)
SELECT team FROM table_name_90 WHERE points = 16 AND rank = "14th"
### Context: CREATE TABLE table_name_90 (team VARCHAR, points VARCHAR, rank VARCHAR) ### Question: Which team has 16 points and ranks 14th? ### Answer: SELECT team FROM table_name_90 WHERE points = 16 AND rank = "14th"
What is the dance that has priscilla presley is the worst dancer(s), and the worst score of 21?
CREATE TABLE table_name_68 (dance VARCHAR, worst_dancer_s_ VARCHAR, worst_score VARCHAR)
SELECT dance FROM table_name_68 WHERE worst_dancer_s_ = "priscilla presley" AND worst_score = "21"
### Context: CREATE TABLE table_name_68 (dance VARCHAR, worst_dancer_s_ VARCHAR, worst_score VARCHAR) ### Question: What is the dance that has priscilla presley is the worst dancer(s), and the worst score of 21? ### Answer: SELECT dance FROM table_name_68 WHERE worst_dancer_s_ = "priscilla presley" AND worst_score = "21"
What is the best score of the dance freestyle?
CREATE TABLE table_name_30 (best_score VARCHAR, dance VARCHAR)
SELECT best_score FROM table_name_30 WHERE dance = "freestyle"
### Context: CREATE TABLE table_name_30 (best_score VARCHAR, dance VARCHAR) ### Question: What is the best score of the dance freestyle? ### Answer: SELECT best_score FROM table_name_30 WHERE dance = "freestyle"
Which dance has the worst dancer(s) as marissa jaret winokur?
CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR)
SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = "marissa jaret winokur"
### Context: CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR) ### Question: Which dance has the worst dancer(s) as marissa jaret winokur? ### Answer: SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = "marissa jaret winokur"
Which Points have an Opponent of vancouver canucks?
CREATE TABLE table_name_91 (points INTEGER, opponent VARCHAR)
SELECT AVG(points) FROM table_name_91 WHERE opponent = "vancouver canucks"
### Context: CREATE TABLE table_name_91 (points INTEGER, opponent VARCHAR) ### Question: Which Points have an Opponent of vancouver canucks? ### Answer: SELECT AVG(points) FROM table_name_91 WHERE opponent = "vancouver canucks"
How many Points have a Score of 3–0?
CREATE TABLE table_name_80 (points VARCHAR, score VARCHAR)
SELECT COUNT(points) FROM table_name_80 WHERE score = "3–0"
### Context: CREATE TABLE table_name_80 (points VARCHAR, score VARCHAR) ### Question: How many Points have a Score of 3–0? ### Answer: SELECT COUNT(points) FROM table_name_80 WHERE score = "3–0"
Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals?
CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR, points VARCHAR, october VARCHAR)
SELECT SUM(game) FROM table_name_5 WHERE points < 10 AND october > 12 AND opponent = "@ washington capitals"
### Context: CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR, points VARCHAR, october VARCHAR) ### Question: Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals? ### Answer: SELECT SUM(game) FROM table_name_5 WHERE points < 10 AND october > 12 AND opponent = "@ washington capitals"
Which Record has Points larger than 0, and a Score of 7–3?
CREATE TABLE table_name_96 (record VARCHAR, points VARCHAR, score VARCHAR)
SELECT record FROM table_name_96 WHERE points > 0 AND score = "7–3"
### Context: CREATE TABLE table_name_96 (record VARCHAR, points VARCHAR, score VARCHAR) ### Question: Which Record has Points larger than 0, and a Score of 7–3? ### Answer: SELECT record FROM table_name_96 WHERE points > 0 AND score = "7–3"
On what date was the game more than 5?
CREATE TABLE table_name_23 (date VARCHAR, game INTEGER)
SELECT date FROM table_name_23 WHERE game > 5
### Context: CREATE TABLE table_name_23 (date VARCHAR, game INTEGER) ### Question: On what date was the game more than 5? ### Answer: SELECT date FROM table_name_23 WHERE game > 5
Which series was on May 16?
CREATE TABLE table_name_4 (series VARCHAR, date VARCHAR)
SELECT series FROM table_name_4 WHERE date = "may 16"
### Context: CREATE TABLE table_name_4 (series VARCHAR, date VARCHAR) ### Question: Which series was on May 16? ### Answer: SELECT series FROM table_name_4 WHERE date = "may 16"
Name the date for oregon jurisdiction
CREATE TABLE table_name_92 (date VARCHAR, jurisdiction VARCHAR)
SELECT date FROM table_name_92 WHERE jurisdiction = "oregon"
### Context: CREATE TABLE table_name_92 (date VARCHAR, jurisdiction VARCHAR) ### Question: Name the date for oregon jurisdiction ### Answer: SELECT date FROM table_name_92 WHERE jurisdiction = "oregon"
Name the john b. anderson for ronald reagan of 43% and phil crane of 0%
CREATE TABLE table_name_21 (john_b_anderson VARCHAR, phil_crane VARCHAR, ronald_reagan VARCHAR)
SELECT john_b_anderson FROM table_name_21 WHERE phil_crane = "0%" AND ronald_reagan = "43%"
### Context: CREATE TABLE table_name_21 (john_b_anderson VARCHAR, phil_crane VARCHAR, ronald_reagan VARCHAR) ### Question: Name the john b. anderson for ronald reagan of 43% and phil crane of 0% ### Answer: SELECT john_b_anderson FROM table_name_21 WHERE phil_crane = "0%" AND ronald_reagan = "43%"
Name the howard bake when bush had 66%
CREATE TABLE table_name_64 (howard_baker VARCHAR, george_h_w_bush VARCHAR)
SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = "66%"
### Context: CREATE TABLE table_name_64 (howard_baker VARCHAR, george_h_w_bush VARCHAR) ### Question: Name the howard bake when bush had 66% ### Answer: SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = "66%"
Name the george bush for ronald reagan of 43%
CREATE TABLE table_name_59 (george_h_w_bush VARCHAR, ronald_reagan VARCHAR)
SELECT george_h_w_bush FROM table_name_59 WHERE ronald_reagan = "43%"
### Context: CREATE TABLE table_name_59 (george_h_w_bush VARCHAR, ronald_reagan VARCHAR) ### Question: Name the george bush for ronald reagan of 43% ### Answer: SELECT george_h_w_bush FROM table_name_59 WHERE ronald_reagan = "43%"
Name the howard baker for ronald reagan of 72%
CREATE TABLE table_name_46 (howard_baker VARCHAR, ronald_reagan VARCHAR)
SELECT howard_baker FROM table_name_46 WHERE ronald_reagan = "72%"
### Context: CREATE TABLE table_name_46 (howard_baker VARCHAR, ronald_reagan VARCHAR) ### Question: Name the howard baker for ronald reagan of 72% ### Answer: SELECT howard_baker FROM table_name_46 WHERE ronald_reagan = "72%"
What is the sum of goals for the 2004/05 Season?
CREATE TABLE table_name_48 (goals INTEGER, season VARCHAR)
SELECT SUM(goals) FROM table_name_48 WHERE season = "2004/05"
### Context: CREATE TABLE table_name_48 (goals INTEGER, season VARCHAR) ### Question: What is the sum of goals for the 2004/05 Season? ### Answer: SELECT SUM(goals) FROM table_name_48 WHERE season = "2004/05"
What is the lowest caps for the Club of SBV Excelsior?
CREATE TABLE table_name_86 (caps INTEGER, club VARCHAR)
SELECT MIN(caps) FROM table_name_86 WHERE club = "sbv excelsior"
### Context: CREATE TABLE table_name_86 (caps INTEGER, club VARCHAR) ### Question: What is the lowest caps for the Club of SBV Excelsior? ### Answer: SELECT MIN(caps) FROM table_name_86 WHERE club = "sbv excelsior"
Which season has Caps lower than 36 for the Club of NAC Breda?
CREATE TABLE table_name_35 (season VARCHAR, caps VARCHAR, club VARCHAR)
SELECT season FROM table_name_35 WHERE caps < 36 AND club = "nac breda"
### Context: CREATE TABLE table_name_35 (season VARCHAR, caps VARCHAR, club VARCHAR) ### Question: Which season has Caps lower than 36 for the Club of NAC Breda? ### Answer: SELECT season FROM table_name_35 WHERE caps < 36 AND club = "nac breda"
Which Opponents in the final have a Partner of daniella dominikovic?
CREATE TABLE table_name_91 (opponents_in_the_final VARCHAR, partner VARCHAR)
SELECT opponents_in_the_final FROM table_name_91 WHERE partner = "daniella dominikovic"
### Context: CREATE TABLE table_name_91 (opponents_in_the_final VARCHAR, partner VARCHAR) ### Question: Which Opponents in the final have a Partner of daniella dominikovic? ### Answer: SELECT opponents_in_the_final FROM table_name_91 WHERE partner = "daniella dominikovic"
Which Date has a Partner of daniella dominikovic?
CREATE TABLE table_name_33 (date VARCHAR, partner VARCHAR)
SELECT date FROM table_name_33 WHERE partner = "daniella dominikovic"
### Context: CREATE TABLE table_name_33 (date VARCHAR, partner VARCHAR) ### Question: Which Date has a Partner of daniella dominikovic? ### Answer: SELECT date FROM table_name_33 WHERE partner = "daniella dominikovic"
Which Surface has a Partner of pemra özgen?
CREATE TABLE table_name_89 (surface VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_89 WHERE partner = "pemra özgen"
### Context: CREATE TABLE table_name_89 (surface VARCHAR, partner VARCHAR) ### Question: Which Surface has a Partner of pemra özgen? ### Answer: SELECT surface FROM table_name_89 WHERE partner = "pemra özgen"
Which Date has Opponents in the final of valeria casillo lilly raffa?
CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_59 WHERE opponents_in_the_final = "valeria casillo lilly raffa"
### Context: CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which Date has Opponents in the final of valeria casillo lilly raffa? ### Answer: SELECT date FROM table_name_59 WHERE opponents_in_the_final = "valeria casillo lilly raffa"