question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Tell me the average Laps for grid larger than 22
CREATE TABLE table_name_39 (laps INTEGER, grid INTEGER)
SELECT AVG(laps) FROM table_name_39 WHERE grid > 22
### Context: CREATE TABLE table_name_39 (laps INTEGER, grid INTEGER) ### Question: Tell me the average Laps for grid larger than 22 ### Answer: SELECT AVG(laps) FROM table_name_39 WHERE grid > 22
Tell me the constructor for grid of 17
CREATE TABLE table_name_9 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_9 WHERE grid = 17
### Context: CREATE TABLE table_name_9 (constructor VARCHAR, grid VARCHAR) ### Question: Tell me the constructor for grid of 17 ### Answer: SELECT constructor FROM table_name_9 WHERE grid = 17
What years had a manager who lost more than 1 and drawn more than 11?
CREATE TABLE table_name_26 (ukraine_career VARCHAR, lost VARCHAR, drawn VARCHAR)
SELECT ukraine_career FROM table_name_26 WHERE lost > 1 AND drawn > 11
### Context: CREATE TABLE table_name_26 (ukraine_career VARCHAR, lost VARCHAR, drawn VARCHAR) ### Question: What years had a manager who lost more than 1 and drawn more than 11? ### Answer: SELECT ukraine_career FROM table_name_26 WHERE lost > 1 AND drawn > 11
what is the total win % of manager viktor prokopenko, when he lost fewer than 2?
CREATE TABLE table_name_43 (win__percentage VARCHAR, manager VARCHAR, lost VARCHAR)
SELECT COUNT(win__percentage) FROM table_name_43 WHERE manager = "viktor prokopenko" AND lost < 2
### Context: CREATE TABLE table_name_43 (win__percentage VARCHAR, manager VARCHAR, lost VARCHAR) ### Question: what is the total win % of manager viktor prokopenko, when he lost fewer than 2? ### Answer: SELECT COUNT(win__percentage) FROM table_name_43 WHERE manager = "viktor prokopenko" AND lost < 2
When 4 clubs are involved, what is the average number of fixtures?
CREATE TABLE table_name_3 (fixtures INTEGER, clubs_involved VARCHAR)
SELECT AVG(fixtures) FROM table_name_3 WHERE clubs_involved = 4
### Context: CREATE TABLE table_name_3 (fixtures INTEGER, clubs_involved VARCHAR) ### Question: When 4 clubs are involved, what is the average number of fixtures? ### Answer: SELECT AVG(fixtures) FROM table_name_3 WHERE clubs_involved = 4
In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved?
CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR)
SELECT SUM(fixtures) FROM table_name_67 WHERE round = "sixth round" AND clubs_involved > 15
### Context: CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR) ### Question: In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved? ### Answer: SELECT SUM(fixtures) FROM table_name_67 WHERE round = "sixth round" AND clubs_involved > 15
Tell me the league for year of 1915/16
CREATE TABLE table_name_3 (league VARCHAR, year VARCHAR)
SELECT league FROM table_name_3 WHERE year = "1915/16"
### Context: CREATE TABLE table_name_3 (league VARCHAR, year VARCHAR) ### Question: Tell me the league for year of 1915/16 ### Answer: SELECT league FROM table_name_3 WHERE year = "1915/16"
What is the make of the car that drove 54 laps?
CREATE TABLE table_name_26 (constructor VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_26 WHERE laps = 54
### Context: CREATE TABLE table_name_26 (constructor VARCHAR, laps VARCHAR) ### Question: What is the make of the car that drove 54 laps? ### Answer: SELECT constructor FROM table_name_26 WHERE laps = 54
Who has a 59 cap?
CREATE TABLE table_name_9 (name VARCHAR, caps VARCHAR)
SELECT name FROM table_name_9 WHERE caps = 59
### Context: CREATE TABLE table_name_9 (name VARCHAR, caps VARCHAR) ### Question: Who has a 59 cap? ### Answer: SELECT name FROM table_name_9 WHERE caps = 59
Tell me the sum of frequency for ERP W less than 1
CREATE TABLE table_name_43 (frequency_mhz INTEGER, erp_w INTEGER)
SELECT SUM(frequency_mhz) FROM table_name_43 WHERE erp_w < 1
### Context: CREATE TABLE table_name_43 (frequency_mhz INTEGER, erp_w INTEGER) ### Question: Tell me the sum of frequency for ERP W less than 1 ### Answer: SELECT SUM(frequency_mhz) FROM table_name_43 WHERE erp_w < 1
Tell me the lowest ties played with a debut of 1936
CREATE TABLE table_name_15 (ties_played INTEGER, debut VARCHAR)
SELECT MIN(ties_played) FROM table_name_15 WHERE debut = 1936
### Context: CREATE TABLE table_name_15 (ties_played INTEGER, debut VARCHAR) ### Question: Tell me the lowest ties played with a debut of 1936 ### Answer: SELECT MIN(ties_played) FROM table_name_15 WHERE debut = 1936
Where did the Paris Marathon occur?
CREATE TABLE table_name_47 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_47 WHERE competition = "paris marathon"
### Context: CREATE TABLE table_name_47 (venue VARCHAR, competition VARCHAR) ### Question: Where did the Paris Marathon occur? ### Answer: SELECT venue FROM table_name_47 WHERE competition = "paris marathon"
Tell me the capacity for city park stadium
CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR)
SELECT capacity FROM table_name_15 WHERE stadium = "city park stadium"
### Context: CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR) ### Question: Tell me the capacity for city park stadium ### Answer: SELECT capacity FROM table_name_15 WHERE stadium = "city park stadium"
Tell me the tournament for opponents of andrei pavel rogier wassen
CREATE TABLE table_name_53 (tournament VARCHAR, opponents_in_the_final VARCHAR)
SELECT tournament FROM table_name_53 WHERE opponents_in_the_final = "andrei pavel rogier wassen"
### Context: CREATE TABLE table_name_53 (tournament VARCHAR, opponents_in_the_final VARCHAR) ### Question: Tell me the tournament for opponents of andrei pavel rogier wassen ### Answer: SELECT tournament FROM table_name_53 WHERE opponents_in_the_final = "andrei pavel rogier wassen"
Tell me the tournament for score in the final of 1–6, 3–6
CREATE TABLE table_name_20 (tournament VARCHAR, score_in_the_final VARCHAR)
SELECT tournament FROM table_name_20 WHERE score_in_the_final = "1–6, 3–6"
### Context: CREATE TABLE table_name_20 (tournament VARCHAR, score_in_the_final VARCHAR) ### Question: Tell me the tournament for score in the final of 1–6, 3–6 ### Answer: SELECT tournament FROM table_name_20 WHERE score_in_the_final = "1–6, 3–6"
Tell me the opponents for score in the final of 1–6, 2–6
CREATE TABLE table_name_68 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT opponents_in_the_final FROM table_name_68 WHERE score_in_the_final = "1–6, 2–6"
### Context: CREATE TABLE table_name_68 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: Tell me the opponents for score in the final of 1–6, 2–6 ### Answer: SELECT opponents_in_the_final FROM table_name_68 WHERE score_in_the_final = "1–6, 2–6"
Tell me the surface for 16 april 2007
CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_72 WHERE date = "16 april 2007"
### Context: CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR) ### Question: Tell me the surface for 16 april 2007 ### Answer: SELECT surface FROM table_name_72 WHERE date = "16 april 2007"
I want the average pages for ISBN of 978-0-9766580-5-4
CREATE TABLE table_name_77 (pages INTEGER, isbn VARCHAR)
SELECT AVG(pages) FROM table_name_77 WHERE isbn = "978-0-9766580-5-4"
### Context: CREATE TABLE table_name_77 (pages INTEGER, isbn VARCHAR) ### Question: I want the average pages for ISBN of 978-0-9766580-5-4 ### Answer: SELECT AVG(pages) FROM table_name_77 WHERE isbn = "978-0-9766580-5-4"
Tell me the sum of year for 244 pages
CREATE TABLE table_name_84 (year INTEGER, pages VARCHAR)
SELECT SUM(year) FROM table_name_84 WHERE pages = 244
### Context: CREATE TABLE table_name_84 (year INTEGER, pages VARCHAR) ### Question: Tell me the sum of year for 244 pages ### Answer: SELECT SUM(year) FROM table_name_84 WHERE pages = 244
Tell me the title for pages of 96
CREATE TABLE table_name_99 (title VARCHAR, pages VARCHAR)
SELECT title FROM table_name_99 WHERE pages = 96
### Context: CREATE TABLE table_name_99 (title VARCHAR, pages VARCHAR) ### Question: Tell me the title for pages of 96 ### Answer: SELECT title FROM table_name_99 WHERE pages = 96
What was the date of birth of a republican member of the United States House of Representatives who held the term of 1863-1865?
CREATE TABLE table_name_80 (date_of_birth VARCHAR, party VARCHAR, house_term VARCHAR)
SELECT date_of_birth FROM table_name_80 WHERE party = "republican" AND house_term = "1863-1865"
### Context: CREATE TABLE table_name_80 (date_of_birth VARCHAR, party VARCHAR, house_term VARCHAR) ### Question: What was the date of birth of a republican member of the United States House of Representatives who held the term of 1863-1865? ### Answer: SELECT date_of_birth FROM table_name_80 WHERE party = "republican" AND house_term = "1863-1865"
What was the age of the member of the United States House of Representatives that began their term on May 7, 1886?
CREATE TABLE table_name_66 (age__years VARCHAR, _days_ VARCHAR, begin_date VARCHAR)
SELECT age__years, _days_ FROM table_name_66 WHERE begin_date = "may 7, 1886"
### Context: CREATE TABLE table_name_66 (age__years VARCHAR, _days_ VARCHAR, begin_date VARCHAR) ### Question: What was the age of the member of the United States House of Representatives that began their term on May 7, 1886? ### Answer: SELECT age__years, _days_ FROM table_name_66 WHERE begin_date = "may 7, 1886"
What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902?
CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR)
SELECT date_of_birth FROM table_name_66 WHERE begin_date = "april 24, 1902"
### Context: CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR) ### Question: What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902? ### Answer: SELECT date_of_birth FROM table_name_66 WHERE begin_date = "april 24, 1902"
Which member of the United States House of Representatives began their term on January 4, 1997?
CREATE TABLE table_name_72 (representative VARCHAR, begin_date VARCHAR)
SELECT representative FROM table_name_72 WHERE begin_date = "january 4, 1997"
### Context: CREATE TABLE table_name_72 (representative VARCHAR, begin_date VARCHAR) ### Question: Which member of the United States House of Representatives began their term on January 4, 1997? ### Answer: SELECT representative FROM table_name_72 WHERE begin_date = "january 4, 1997"
Which state did Samuel Thatcher of the Federalist party represent?
CREATE TABLE table_name_27 (state_served VARCHAR, party VARCHAR, representative VARCHAR)
SELECT state_served FROM table_name_27 WHERE party = "federalist" AND representative = "samuel thatcher"
### Context: CREATE TABLE table_name_27 (state_served VARCHAR, party VARCHAR, representative VARCHAR) ### Question: Which state did Samuel Thatcher of the Federalist party represent? ### Answer: SELECT state_served FROM table_name_27 WHERE party = "federalist" AND representative = "samuel thatcher"
What position does Hedo Türkoğlu play?
CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_93 WHERE player = "hedo türkoğlu"
### Context: CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR) ### Question: What position does Hedo Türkoğlu play? ### Answer: SELECT position FROM table_name_93 WHERE player = "hedo türkoğlu"
How long has Sebastian Telfair played for Toronto?
CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR)
SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair"
### Context: CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR) ### Question: How long has Sebastian Telfair played for Toronto? ### Answer: SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair"
Tell me the title for japan august 23, 2012
CREATE TABLE table_name_30 (title VARCHAR, japan VARCHAR)
SELECT title FROM table_name_30 WHERE japan = "august 23, 2012"
### Context: CREATE TABLE table_name_30 (title VARCHAR, japan VARCHAR) ### Question: Tell me the title for japan august 23, 2012 ### Answer: SELECT title FROM table_name_30 WHERE japan = "august 23, 2012"
Tell me the title for japan august 23, 2012
CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR)
SELECT title FROM table_name_57 WHERE japan = "august 23, 2012"
### Context: CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR) ### Question: Tell me the title for japan august 23, 2012 ### Answer: SELECT title FROM table_name_57 WHERE japan = "august 23, 2012"
Tell me the Australia march 17, 2005
CREATE TABLE table_name_84 (australia VARCHAR, japan VARCHAR)
SELECT australia FROM table_name_84 WHERE japan = "march 17, 2005"
### Context: CREATE TABLE table_name_84 (australia VARCHAR, japan VARCHAR) ### Question: Tell me the Australia march 17, 2005 ### Answer: SELECT australia FROM table_name_84 WHERE japan = "march 17, 2005"
Tell me the Europe for z.h.p. unlosing ranger vs darkdeath evilman
CREATE TABLE table_name_79 (europe VARCHAR, title VARCHAR)
SELECT europe FROM table_name_79 WHERE title = "z.h.p. unlosing ranger vs darkdeath evilman"
### Context: CREATE TABLE table_name_79 (europe VARCHAR, title VARCHAR) ### Question: Tell me the Europe for z.h.p. unlosing ranger vs darkdeath evilman ### Answer: SELECT europe FROM table_name_79 WHERE title = "z.h.p. unlosing ranger vs darkdeath evilman"
Name the total losses for 4 place and ties less than 0
CREATE TABLE table_name_35 (losses VARCHAR, place VARCHAR, ties VARCHAR)
SELECT COUNT(losses) FROM table_name_35 WHERE place = 4 AND ties < 0
### Context: CREATE TABLE table_name_35 (losses VARCHAR, place VARCHAR, ties VARCHAR) ### Question: Name the total losses for 4 place and ties less than 0 ### Answer: SELECT COUNT(losses) FROM table_name_35 WHERE place = 4 AND ties < 0
Name the average place for ties less than 1 and losess more than 3 with points of 6 qc
CREATE TABLE table_name_70 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)
SELECT AVG(place) FROM table_name_70 WHERE ties < 1 AND points = "6 qc" AND losses > 3
### Context: CREATE TABLE table_name_70 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR) ### Question: Name the average place for ties less than 1 and losess more than 3 with points of 6 qc ### Answer: SELECT AVG(place) FROM table_name_70 WHERE ties < 1 AND points = "6 qc" AND losses > 3
Name the most wins for losses more than 2 and points of two with place larger than 7
CREATE TABLE table_name_4 (wins INTEGER, place VARCHAR, losses VARCHAR, points VARCHAR)
SELECT MAX(wins) FROM table_name_4 WHERE losses > "2" AND points = "2" AND place > 7
### Context: CREATE TABLE table_name_4 (wins INTEGER, place VARCHAR, losses VARCHAR, points VARCHAR) ### Question: Name the most wins for losses more than 2 and points of two with place larger than 7 ### Answer: SELECT MAX(wins) FROM table_name_4 WHERE losses > "2" AND points = "2" AND place > 7
Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2
CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)
SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = "7 qc" AND losses > 2
### Context: CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR) ### Question: Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2 ### Answer: SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = "7 qc" AND losses > 2
Tell me the number range for 4vip
CREATE TABLE table_name_36 (no_range VARCHAR, type VARCHAR)
SELECT no_range FROM table_name_36 WHERE type = "4vip"
### Context: CREATE TABLE table_name_36 (no_range VARCHAR, type VARCHAR) ### Question: Tell me the number range for 4vip ### Answer: SELECT no_range FROM table_name_36 WHERE type = "4vip"
Name the heat rank for senegal
CREATE TABLE table_name_22 (heat_rank VARCHAR, country VARCHAR)
SELECT heat_rank FROM table_name_22 WHERE country = "senegal"
### Context: CREATE TABLE table_name_22 (heat_rank VARCHAR, country VARCHAR) ### Question: Name the heat rank for senegal ### Answer: SELECT heat_rank FROM table_name_22 WHERE country = "senegal"
What is the value for 2010 when the 2012 value is Q2?
CREATE TABLE table_name_95 (Id VARCHAR)
SELECT 2010 FROM table_name_95 WHERE 2012 = "q2"
### Context: CREATE TABLE table_name_95 (Id VARCHAR) ### Question: What is the value for 2010 when the 2012 value is Q2? ### Answer: SELECT 2010 FROM table_name_95 WHERE 2012 = "q2"
What is the value for 2010 when the value for 2006 is A and the value for 2009 is 1R?
CREATE TABLE table_name_59 (Id VARCHAR)
SELECT 2010 FROM table_name_59 WHERE 2006 = "a" AND 2009 = "1r"
### Context: CREATE TABLE table_name_59 (Id VARCHAR) ### Question: What is the value for 2010 when the value for 2006 is A and the value for 2009 is 1R? ### Answer: SELECT 2010 FROM table_name_59 WHERE 2006 = "a" AND 2009 = "1r"
What is the value for 2012 when the value for 2009 is 1R and the vale for 2007 is 2R?
CREATE TABLE table_name_51 (Id VARCHAR)
SELECT 2012 FROM table_name_51 WHERE 2009 = "1r" AND 2007 = "2r"
### Context: CREATE TABLE table_name_51 (Id VARCHAR) ### Question: What is the value for 2012 when the value for 2009 is 1R and the vale for 2007 is 2R? ### Answer: SELECT 2012 FROM table_name_51 WHERE 2009 = "1r" AND 2007 = "2r"
What is the value for 2008 for the US Open Tournament?
CREATE TABLE table_name_84 (tournament VARCHAR)
SELECT 2008 FROM table_name_84 WHERE tournament = "us open"
### Context: CREATE TABLE table_name_84 (tournament VARCHAR) ### Question: What is the value for 2008 for the US Open Tournament? ### Answer: SELECT 2008 FROM table_name_84 WHERE tournament = "us open"
What is the value for 2009 when the value for 2011 is 138?
CREATE TABLE table_name_87 (Id VARCHAR)
SELECT 2009 FROM table_name_87 WHERE 2011 = "138"
### Context: CREATE TABLE table_name_87 (Id VARCHAR) ### Question: What is the value for 2009 when the value for 2011 is 138? ### Answer: SELECT 2009 FROM table_name_87 WHERE 2011 = "138"
Tell me the highest series # for september 22, 1976
CREATE TABLE table_name_53 (series__number INTEGER, original_air_date VARCHAR)
SELECT MAX(series__number) FROM table_name_53 WHERE original_air_date = "september 22, 1976"
### Context: CREATE TABLE table_name_53 (series__number INTEGER, original_air_date VARCHAR) ### Question: Tell me the highest series # for september 22, 1976 ### Answer: SELECT MAX(series__number) FROM table_name_53 WHERE original_air_date = "september 22, 1976"
What is the screen size and pixel value when the dimensions are 115.5×83.7×102.5?
CREATE TABLE table_name_7 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR)
SELECT screen_size, pixels FROM table_name_7 WHERE dimensions_w×h×d__mm_ = "115.5×83.7×102.5"
### Context: CREATE TABLE table_name_7 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR) ### Question: What is the screen size and pixel value when the dimensions are 115.5×83.7×102.5? ### Answer: SELECT screen_size, pixels FROM table_name_7 WHERE dimensions_w×h×d__mm_ = "115.5×83.7×102.5"
What is the screen size and pixel amount of model p5000 when the dimensions are 98×64.5×41?
CREATE TABLE table_name_28 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR, model VARCHAR)
SELECT screen_size, pixels FROM table_name_28 WHERE dimensions_w×h×d__mm_ = "98×64.5×41" AND model = "p5000"
### Context: CREATE TABLE table_name_28 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR, model VARCHAR) ### Question: What is the screen size and pixel amount of model p5000 when the dimensions are 98×64.5×41? ### Answer: SELECT screen_size, pixels FROM table_name_28 WHERE dimensions_w×h×d__mm_ = "98×64.5×41" AND model = "p5000"
Tell me the championship game for big eight
CREATE TABLE table_name_29 (championship_game VARCHAR, conference VARCHAR)
SELECT championship_game FROM table_name_29 WHERE conference = "big eight"
### Context: CREATE TABLE table_name_29 (championship_game VARCHAR, conference VARCHAR) ### Question: Tell me the championship game for big eight ### Answer: SELECT championship_game FROM table_name_29 WHERE conference = "big eight"
Name the lowest total for rank of 13 with bronze less than 1
CREATE TABLE table_name_20 (total INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT MIN(total) FROM table_name_20 WHERE rank = 13 AND bronze < 1
### Context: CREATE TABLE table_name_20 (total INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: Name the lowest total for rank of 13 with bronze less than 1 ### Answer: SELECT MIN(total) FROM table_name_20 WHERE rank = 13 AND bronze < 1
Tell me the sum of original week for september 16, 1982
CREATE TABLE table_name_51 (original_week INTEGER, date VARCHAR)
SELECT SUM(original_week) FROM table_name_51 WHERE date = "september 16, 1982"
### Context: CREATE TABLE table_name_51 (original_week INTEGER, date VARCHAR) ### Question: Tell me the sum of original week for september 16, 1982 ### Answer: SELECT SUM(original_week) FROM table_name_51 WHERE date = "september 16, 1982"
Tell me the average original week for soldier field
CREATE TABLE table_name_18 (original_week INTEGER, venue VARCHAR)
SELECT AVG(original_week) FROM table_name_18 WHERE venue = "soldier field"
### Context: CREATE TABLE table_name_18 (original_week INTEGER, venue VARCHAR) ### Question: Tell me the average original week for soldier field ### Answer: SELECT AVG(original_week) FROM table_name_18 WHERE venue = "soldier field"
Tell me the date for original week less than 16 and result of l 23–22
CREATE TABLE table_name_81 (date VARCHAR, original_week VARCHAR, result VARCHAR)
SELECT date FROM table_name_81 WHERE original_week < 16 AND result = "l 23–22"
### Context: CREATE TABLE table_name_81 (date VARCHAR, original_week VARCHAR, result VARCHAR) ### Question: Tell me the date for original week less than 16 and result of l 23–22 ### Answer: SELECT date FROM table_name_81 WHERE original_week < 16 AND result = "l 23–22"
Tell me the call sign for frequency of 0 97.3 fm
CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)
SELECT call_sign FROM table_name_67 WHERE frequency = "0 97.3 fm"
### Context: CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR) ### Question: Tell me the call sign for frequency of 0 97.3 fm ### Answer: SELECT call_sign FROM table_name_67 WHERE frequency = "0 97.3 fm"
Tell me the owner for classical
CREATE TABLE table_name_81 (owner VARCHAR, format VARCHAR)
SELECT owner FROM table_name_81 WHERE format = "classical"
### Context: CREATE TABLE table_name_81 (owner VARCHAR, format VARCHAR) ### Question: Tell me the owner for classical ### Answer: SELECT owner FROM table_name_81 WHERE format = "classical"
Tell me the city of license for 0 106.9 fm
CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency VARCHAR)
SELECT city_of_license FROM table_name_1 WHERE frequency = "0 106.9 fm"
### Context: CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency VARCHAR) ### Question: Tell me the city of license for 0 106.9 fm ### Answer: SELECT city_of_license FROM table_name_1 WHERE frequency = "0 106.9 fm"
What year(s) did Hakeem Olajuwon play Center for Toronto?
CREATE TABLE table_name_33 (years_in_toronto VARCHAR, player VARCHAR)
SELECT years_in_toronto FROM table_name_33 WHERE player = "hakeem olajuwon"
### Context: CREATE TABLE table_name_33 (years_in_toronto VARCHAR, player VARCHAR) ### Question: What year(s) did Hakeem Olajuwon play Center for Toronto? ### Answer: SELECT years_in_toronto FROM table_name_33 WHERE player = "hakeem olajuwon"
What position did Jimmy Oliver of the United States play?
CREATE TABLE table_name_75 (position VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT position FROM table_name_75 WHERE nationality = "united states" AND player = "jimmy oliver"
### Context: CREATE TABLE table_name_75 (position VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: What position did Jimmy Oliver of the United States play? ### Answer: SELECT position FROM table_name_75 WHERE nationality = "united states" AND player = "jimmy oliver"
Tell me the total number of crest length for year construction larger than 1957 for mattmark
CREATE TABLE table_name_87 (crest_length__meters_ VARCHAR, year_of_construction VARCHAR, name VARCHAR)
SELECT COUNT(crest_length__meters_) FROM table_name_87 WHERE year_of_construction > 1957 AND name = "mattmark"
### Context: CREATE TABLE table_name_87 (crest_length__meters_ VARCHAR, year_of_construction VARCHAR, name VARCHAR) ### Question: Tell me the total number of crest length for year construction larger than 1957 for mattmark ### Answer: SELECT COUNT(crest_length__meters_) FROM table_name_87 WHERE year_of_construction > 1957 AND name = "mattmark"
Tell me the % of wt 2nd for bp 3rd comp of 98.4
CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__˚c_ VARCHAR)
SELECT _percentage_wt_2nd FROM table_name_77 WHERE bp_3rd_comp__˚c_ = "98.4"
### Context: CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__˚c_ VARCHAR) ### Question: Tell me the % of wt 2nd for bp 3rd comp of 98.4 ### Answer: SELECT _percentage_wt_2nd FROM table_name_77 WHERE bp_3rd_comp__˚c_ = "98.4"
Tell me the 3rd component for bp azeo of 62.1
CREATE TABLE table_name_49 (bp_azeo__˚c_ VARCHAR)
SELECT 3 AS rd_component FROM table_name_49 WHERE bp_azeo__˚c_ = "62.1"
### Context: CREATE TABLE table_name_49 (bp_azeo__˚c_ VARCHAR) ### Question: Tell me the 3rd component for bp azeo of 62.1 ### Answer: SELECT 3 AS rd_component FROM table_name_49 WHERE bp_azeo__˚c_ = "62.1"
Tell me the name with sør-trøndelag
CREATE TABLE table_name_64 (name VARCHAR, county VARCHAR)
SELECT name FROM table_name_64 WHERE county = "sør-trøndelag"
### Context: CREATE TABLE table_name_64 (name VARCHAR, county VARCHAR) ### Question: Tell me the name with sør-trøndelag ### Answer: SELECT name FROM table_name_64 WHERE county = "sør-trøndelag"
Tell me the elevation for oslo
CREATE TABLE table_name_20 (elevation VARCHAR, county VARCHAR)
SELECT elevation FROM table_name_20 WHERE county = "oslo"
### Context: CREATE TABLE table_name_20 (elevation VARCHAR, county VARCHAR) ### Question: Tell me the elevation for oslo ### Answer: SELECT elevation FROM table_name_20 WHERE county = "oslo"
What was the result of the match against Pat Lawlor?
CREATE TABLE table_name_46 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_46 WHERE opponent = "pat lawlor"
### Context: CREATE TABLE table_name_46 (result VARCHAR, opponent VARCHAR) ### Question: What was the result of the match against Pat Lawlor? ### Answer: SELECT result FROM table_name_46 WHERE opponent = "pat lawlor"
Tell me the sum of cars per set for operator of london midland
CREATE TABLE table_name_3 (cars_per_set INTEGER, operator VARCHAR)
SELECT SUM(cars_per_set) FROM table_name_3 WHERE operator = "london midland"
### Context: CREATE TABLE table_name_3 (cars_per_set INTEGER, operator VARCHAR) ### Question: Tell me the sum of cars per set for operator of london midland ### Answer: SELECT SUM(cars_per_set) FROM table_name_3 WHERE operator = "london midland"
Tell me the title of japan january 31, 2008
CREATE TABLE table_name_74 (title VARCHAR, japan VARCHAR)
SELECT title FROM table_name_74 WHERE japan = "january 31, 2008"
### Context: CREATE TABLE table_name_74 (title VARCHAR, japan VARCHAR) ### Question: Tell me the title of japan january 31, 2008 ### Answer: SELECT title FROM table_name_74 WHERE japan = "january 31, 2008"
Tell me japan for jigsaw land: japan graffiti
CREATE TABLE table_name_14 (japan VARCHAR, title VARCHAR)
SELECT japan FROM table_name_14 WHERE title = "jigsaw land: japan graffiti"
### Context: CREATE TABLE table_name_14 (japan VARCHAR, title VARCHAR) ### Question: Tell me japan for jigsaw land: japan graffiti ### Answer: SELECT japan FROM table_name_14 WHERE title = "jigsaw land: japan graffiti"
Tell me north america for january 23, 2013
CREATE TABLE table_name_83 (north_america VARCHAR, japan VARCHAR)
SELECT north_america FROM table_name_83 WHERE japan = "january 23, 2013"
### Context: CREATE TABLE table_name_83 (north_america VARCHAR, japan VARCHAR) ### Question: Tell me north america for january 23, 2013 ### Answer: SELECT north_america FROM table_name_83 WHERE japan = "january 23, 2013"
Tell me the north america for september 18, 2009
CREATE TABLE table_name_64 (north_america VARCHAR, europe VARCHAR)
SELECT north_america FROM table_name_64 WHERE europe = "september 18, 2009"
### Context: CREATE TABLE table_name_64 (north_america VARCHAR, europe VARCHAR) ### Question: Tell me the north america for september 18, 2009 ### Answer: SELECT north_america FROM table_name_64 WHERE europe = "september 18, 2009"
Tell me europe for japan of january 28, 2010
CREATE TABLE table_name_72 (europe VARCHAR, japan VARCHAR)
SELECT europe FROM table_name_72 WHERE japan = "january 28, 2010"
### Context: CREATE TABLE table_name_72 (europe VARCHAR, japan VARCHAR) ### Question: Tell me europe for japan of january 28, 2010 ### Answer: SELECT europe FROM table_name_72 WHERE japan = "january 28, 2010"
Tell me the north america for phantom brave
CREATE TABLE table_name_74 (north_america VARCHAR, title VARCHAR)
SELECT north_america FROM table_name_74 WHERE title = "phantom brave"
### Context: CREATE TABLE table_name_74 (north_america VARCHAR, title VARCHAR) ### Question: Tell me the north america for phantom brave ### Answer: SELECT north_america FROM table_name_74 WHERE title = "phantom brave"
What is the average played value in Belgrade with attendance greater than 26,222?
CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR)
SELECT AVG(played) FROM table_name_83 WHERE city = "belgrade" AND average_attendance > 26 OFFSET 222
### Context: CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR) ### Question: What is the average played value in Belgrade with attendance greater than 26,222? ### Answer: SELECT AVG(played) FROM table_name_83 WHERE city = "belgrade" AND average_attendance > 26 OFFSET 222
Tell me the role of festival theatre
CREATE TABLE table_name_35 (role VARCHAR, theatre VARCHAR)
SELECT role FROM table_name_35 WHERE theatre = "festival theatre"
### Context: CREATE TABLE table_name_35 (role VARCHAR, theatre VARCHAR) ### Question: Tell me the role of festival theatre ### Answer: SELECT role FROM table_name_35 WHERE theatre = "festival theatre"
Tell me the lowest year for shubert theatre
CREATE TABLE table_name_72 (year INTEGER, theatre VARCHAR)
SELECT MIN(year) FROM table_name_72 WHERE theatre = "shubert theatre"
### Context: CREATE TABLE table_name_72 (year INTEGER, theatre VARCHAR) ### Question: Tell me the lowest year for shubert theatre ### Answer: SELECT MIN(year) FROM table_name_72 WHERE theatre = "shubert theatre"
Tell me the total number of years for lady cecily waynflete and opera house, kennedy center
CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR)
SELECT COUNT(year) FROM table_name_51 WHERE role = "lady cecily waynflete" AND theatre = "opera house, kennedy center"
### Context: CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR) ### Question: Tell me the total number of years for lady cecily waynflete and opera house, kennedy center ### Answer: SELECT COUNT(year) FROM table_name_51 WHERE role = "lady cecily waynflete" AND theatre = "opera house, kennedy center"
Tell me the role for tea and sympathy
CREATE TABLE table_name_83 (role VARCHAR, play VARCHAR)
SELECT role FROM table_name_83 WHERE play = "tea and sympathy"
### Context: CREATE TABLE table_name_83 (role VARCHAR, play VARCHAR) ### Question: Tell me the role for tea and sympathy ### Answer: SELECT role FROM table_name_83 WHERE play = "tea and sympathy"
When was the first beatification in Korea that was canonised before 1984?
CREATE TABLE table_name_12 (beatified INTEGER, place VARCHAR, canonised VARCHAR)
SELECT MIN(beatified) FROM table_name_12 WHERE place = "korea" AND canonised < 1984
### Context: CREATE TABLE table_name_12 (beatified INTEGER, place VARCHAR, canonised VARCHAR) ### Question: When was the first beatification in Korea that was canonised before 1984? ### Answer: SELECT MIN(beatified) FROM table_name_12 WHERE place = "korea" AND canonised < 1984
When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?
CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)
SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984
### Context: CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR) ### Question: When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred? ### Answer: SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984
When was the person(s) who were canonised before 1988 beatified?
CREATE TABLE table_name_17 (beatified VARCHAR, canonised INTEGER)
SELECT beatified FROM table_name_17 WHERE canonised < 1988
### Context: CREATE TABLE table_name_17 (beatified VARCHAR, canonised INTEGER) ### Question: When was the person(s) who were canonised before 1988 beatified? ### Answer: SELECT beatified FROM table_name_17 WHERE canonised < 1988
When was John Hoan Trinh Doan / St. John Hoan, who was beatified in 1909 and canonised after 1988, martyred?
CREATE TABLE table_name_64 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)
SELECT MAX(martyred) FROM table_name_64 WHERE beatified = 1909 AND name = "john hoan trinh doan / st. john hoan" AND canonised > 1988
### Context: CREATE TABLE table_name_64 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR) ### Question: When was John Hoan Trinh Doan / St. John Hoan, who was beatified in 1909 and canonised after 1988, martyred? ### Answer: SELECT MAX(martyred) FROM table_name_64 WHERE beatified = 1909 AND name = "john hoan trinh doan / st. john hoan" AND canonised > 1988
What is the sum of year with the local host Sai?
CREATE TABLE table_name_37 (year INTEGER, local_host_s_ VARCHAR)
SELECT SUM(year) FROM table_name_37 WHERE local_host_s_ = "sai"
### Context: CREATE TABLE table_name_37 (year INTEGER, local_host_s_ VARCHAR) ### Question: What is the sum of year with the local host Sai? ### Answer: SELECT SUM(year) FROM table_name_37 WHERE local_host_s_ = "sai"
Who are the local hosts for the United States in years earlier than 2007?
CREATE TABLE table_name_86 (local_host_s_ VARCHAR, country VARCHAR, year VARCHAR)
SELECT local_host_s_ FROM table_name_86 WHERE country = "united states" AND year < 2007
### Context: CREATE TABLE table_name_86 (local_host_s_ VARCHAR, country VARCHAR, year VARCHAR) ### Question: Who are the local hosts for the United States in years earlier than 2007? ### Answer: SELECT local_host_s_ FROM table_name_86 WHERE country = "united states" AND year < 2007
Which city has a conference of LCC2 and a year earlier than 2009?
CREATE TABLE table_name_70 (city VARCHAR, year VARCHAR, conference VARCHAR)
SELECT city FROM table_name_70 WHERE year < 2009 AND conference = "lcc2"
### Context: CREATE TABLE table_name_70 (city VARCHAR, year VARCHAR, conference VARCHAR) ### Question: Which city has a conference of LCC2 and a year earlier than 2009? ### Answer: SELECT city FROM table_name_70 WHERE year < 2009 AND conference = "lcc2"
Tell me the class with rank of 89th
CREATE TABLE table_name_12 (class VARCHAR, rank VARCHAR)
SELECT class FROM table_name_12 WHERE rank = "89th"
### Context: CREATE TABLE table_name_12 (class VARCHAR, rank VARCHAR) ### Question: Tell me the class with rank of 89th ### Answer: SELECT class FROM table_name_12 WHERE rank = "89th"
Tell me the most year for 3 points
CREATE TABLE table_name_30 (year INTEGER, points VARCHAR)
SELECT MAX(year) FROM table_name_30 WHERE points = 3
### Context: CREATE TABLE table_name_30 (year INTEGER, points VARCHAR) ### Question: Tell me the most year for 3 points ### Answer: SELECT MAX(year) FROM table_name_30 WHERE points = 3
Which lane is Goksu Bicer in?
CREATE TABLE table_name_37 (lane VARCHAR, swimmer VARCHAR)
SELECT lane FROM table_name_37 WHERE swimmer = "goksu bicer"
### Context: CREATE TABLE table_name_37 (lane VARCHAR, swimmer VARCHAR) ### Question: Which lane is Goksu Bicer in? ### Answer: SELECT lane FROM table_name_37 WHERE swimmer = "goksu bicer"
Which Driver that has a Grid less than 9 and a Time/Retired of 2:06:26.358?
CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_59 WHERE grid < 9 AND time_retired = "2:06:26.358"
### Context: CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR) ### Question: Which Driver that has a Grid less than 9 and a Time/Retired of 2:06:26.358? ### Answer: SELECT driver FROM table_name_59 WHERE grid < 9 AND time_retired = "2:06:26.358"
Which driver drove a Ferrari in the 2007 European Grand Prix with a grid less than 3?
CREATE TABLE table_name_78 (driver VARCHAR, constructor VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_78 WHERE constructor = "ferrari" AND grid < 3
### Context: CREATE TABLE table_name_78 (driver VARCHAR, constructor VARCHAR, grid VARCHAR) ### Question: Which driver drove a Ferrari in the 2007 European Grand Prix with a grid less than 3? ### Answer: SELECT driver FROM table_name_78 WHERE constructor = "ferrari" AND grid < 3
Name the location of ufc 98
CREATE TABLE table_name_51 (location VARCHAR, event VARCHAR)
SELECT location FROM table_name_51 WHERE event = "ufc 98"
### Context: CREATE TABLE table_name_51 (location VARCHAR, event VARCHAR) ### Question: Name the location of ufc 98 ### Answer: SELECT location FROM table_name_51 WHERE event = "ufc 98"
What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3?
CREATE TABLE table_name_25 (wins INTEGER, tournament VARCHAR, top_25 VARCHAR)
SELECT MIN(wins) FROM table_name_25 WHERE tournament = "totals" AND top_25 > 3
### Context: CREATE TABLE table_name_25 (wins INTEGER, tournament VARCHAR, top_25 VARCHAR) ### Question: What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3? ### Answer: SELECT MIN(wins) FROM table_name_25 WHERE tournament = "totals" AND top_25 > 3
What is the sum of Top-5 values with events values less than 2?
CREATE TABLE table_name_35 (top_5 INTEGER, events INTEGER)
SELECT SUM(top_5) FROM table_name_35 WHERE events < 2
### Context: CREATE TABLE table_name_35 (top_5 INTEGER, events INTEGER) ### Question: What is the sum of Top-5 values with events values less than 2? ### Answer: SELECT SUM(top_5) FROM table_name_35 WHERE events < 2
What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1?
CREATE TABLE table_name_51 (wins INTEGER, cuts_made VARCHAR, top_5 VARCHAR)
SELECT MIN(wins) FROM table_name_51 WHERE cuts_made > 4 AND top_5 < 1
### Context: CREATE TABLE table_name_51 (wins INTEGER, cuts_made VARCHAR, top_5 VARCHAR) ### Question: What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1? ### Answer: SELECT MIN(wins) FROM table_name_51 WHERE cuts_made > 4 AND top_5 < 1
Tell me the competition for 2nd position with year more than 2005
CREATE TABLE table_name_23 (competition VARCHAR, position VARCHAR, year VARCHAR)
SELECT competition FROM table_name_23 WHERE position = "2nd" AND year > 2005
### Context: CREATE TABLE table_name_23 (competition VARCHAR, position VARCHAR, year VARCHAR) ### Question: Tell me the competition for 2nd position with year more than 2005 ### Answer: SELECT competition FROM table_name_23 WHERE position = "2nd" AND year > 2005
Name the sum of year for 2nd position for junior race
CREATE TABLE table_name_40 (year INTEGER, position VARCHAR, event VARCHAR)
SELECT SUM(year) FROM table_name_40 WHERE position = "2nd" AND event = "junior race"
### Context: CREATE TABLE table_name_40 (year INTEGER, position VARCHAR, event VARCHAR) ### Question: Name the sum of year for 2nd position for junior race ### Answer: SELECT SUM(year) FROM table_name_40 WHERE position = "2nd" AND event = "junior race"
Name the venue for 2nd position of year before 2008
CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, position VARCHAR)
SELECT venue FROM table_name_83 WHERE year < 2008 AND position = "2nd"
### Context: CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, position VARCHAR) ### Question: Name the venue for 2nd position of year before 2008 ### Answer: SELECT venue FROM table_name_83 WHERE year < 2008 AND position = "2nd"
Which circuit did Raymond Mays win?
CREATE TABLE table_name_17 (circuit VARCHAR, winning_driver VARCHAR)
SELECT circuit FROM table_name_17 WHERE winning_driver = "raymond mays"
### Context: CREATE TABLE table_name_17 (circuit VARCHAR, winning_driver VARCHAR) ### Question: Which circuit did Raymond Mays win? ### Answer: SELECT circuit FROM table_name_17 WHERE winning_driver = "raymond mays"
Which Circuit did Johnny Wakefield win?
CREATE TABLE table_name_3 (circuit VARCHAR, winning_driver VARCHAR)
SELECT circuit FROM table_name_3 WHERE winning_driver = "johnny wakefield"
### Context: CREATE TABLE table_name_3 (circuit VARCHAR, winning_driver VARCHAR) ### Question: Which Circuit did Johnny Wakefield win? ### Answer: SELECT circuit FROM table_name_3 WHERE winning_driver = "johnny wakefield"
Tell me the lowest bronze for panama and total larger than 8
CREATE TABLE table_name_84 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT MIN(bronze) FROM table_name_84 WHERE nation = "panama" AND total > 8
### Context: CREATE TABLE table_name_84 (bronze INTEGER, nation VARCHAR, total VARCHAR) ### Question: Tell me the lowest bronze for panama and total larger than 8 ### Answer: SELECT MIN(bronze) FROM table_name_84 WHERE nation = "panama" AND total > 8
Tell me the average total for guatemala and bronze less than 2
CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT AVG(total) FROM table_name_32 WHERE nation = "guatemala" AND bronze < 2
### Context: CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: Tell me the average total for guatemala and bronze less than 2 ### Answer: SELECT AVG(total) FROM table_name_32 WHERE nation = "guatemala" AND bronze < 2
Tell me the number of bronze for silver of 0 and total less than 1
CREATE TABLE table_name_54 (bronze VARCHAR, silver VARCHAR, total VARCHAR)
SELECT COUNT(bronze) FROM table_name_54 WHERE silver = 0 AND total < 1
### Context: CREATE TABLE table_name_54 (bronze VARCHAR, silver VARCHAR, total VARCHAR) ### Question: Tell me the number of bronze for silver of 0 and total less than 1 ### Answer: SELECT COUNT(bronze) FROM table_name_54 WHERE silver = 0 AND total < 1
Tell me the sum of total for rank of 1
CREATE TABLE table_name_35 (total INTEGER, rank VARCHAR)
SELECT SUM(total) FROM table_name_35 WHERE rank = 1
### Context: CREATE TABLE table_name_35 (total INTEGER, rank VARCHAR) ### Question: Tell me the sum of total for rank of 1 ### Answer: SELECT SUM(total) FROM table_name_35 WHERE rank = 1
Tell me the total number for costa rica and rank more than 8
CREATE TABLE table_name_82 (total VARCHAR, nation VARCHAR, rank VARCHAR)
SELECT COUNT(total) FROM table_name_82 WHERE nation = "costa rica" AND rank > 8
### Context: CREATE TABLE table_name_82 (total VARCHAR, nation VARCHAR, rank VARCHAR) ### Question: Tell me the total number for costa rica and rank more than 8 ### Answer: SELECT COUNT(total) FROM table_name_82 WHERE nation = "costa rica" AND rank > 8
What years did Tymerlan Huseynov, whose average is larger than 0.361, play?
CREATE TABLE table_name_94 (career VARCHAR, average VARCHAR, player VARCHAR)
SELECT career FROM table_name_94 WHERE average > 0.361 AND player = "tymerlan huseynov"
### Context: CREATE TABLE table_name_94 (career VARCHAR, average VARCHAR, player VARCHAR) ### Question: What years did Tymerlan Huseynov, whose average is larger than 0.361, play? ### Answer: SELECT career FROM table_name_94 WHERE average > 0.361 AND player = "tymerlan huseynov"