question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What car number had 24 points?
CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR)
SELECT car_no FROM table_name_13 WHERE points = "24"
### Context: CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR) ### Question: What car number had 24 points? ### Answer: SELECT car_no FROM table_name_13 WHERE points = "24"
How many points when the Grid was 1?
CREATE TABLE table_name_75 (points VARCHAR, grid VARCHAR)
SELECT points FROM table_name_75 WHERE grid = "1"
### Context: CREATE TABLE table_name_75 (points VARCHAR, grid VARCHAR) ### Question: How many points when the Grid was 1? ### Answer: SELECT points FROM table_name_75 WHERE grid = "1"
What is the average game number that was on october 19?
CREATE TABLE table_name_4 (game INTEGER, october VARCHAR)
SELECT AVG(game) FROM table_name_4 WHERE october = 19
### Context: CREATE TABLE table_name_4 (game INTEGER, october VARCHAR) ### Question: What is the average game number that was on october 19? ### Answer: SELECT AVG(game) FROM table_name_4 WHERE october = 19
What is the sum of October, when Opponent is "Pittsburgh Penguins"?
CREATE TABLE table_name_19 (october INTEGER, opponent VARCHAR)
SELECT SUM(october) FROM table_name_19 WHERE opponent = "pittsburgh penguins"
### Context: CREATE TABLE table_name_19 (october INTEGER, opponent VARCHAR) ### Question: What is the sum of October, when Opponent is "Pittsburgh Penguins"? ### Answer: SELECT SUM(october) FROM table_name_19 WHERE opponent = "pittsburgh penguins"
What is the sum of Game, when Record is "2-1-1", and when October is less than 21?
CREATE TABLE table_name_58 (game INTEGER, record VARCHAR, october VARCHAR)
SELECT SUM(game) FROM table_name_58 WHERE record = "2-1-1" AND october < 21
### Context: CREATE TABLE table_name_58 (game INTEGER, record VARCHAR, october VARCHAR) ### Question: What is the sum of Game, when Record is "2-1-1", and when October is less than 21? ### Answer: SELECT SUM(game) FROM table_name_58 WHERE record = "2-1-1" AND october < 21
What is Opponent, when October is less than 31, and when Game is greater than 7?
CREATE TABLE table_name_12 (opponent VARCHAR, october VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_12 WHERE october < 31 AND game > 7
### Context: CREATE TABLE table_name_12 (opponent VARCHAR, october VARCHAR, game VARCHAR) ### Question: What is Opponent, when October is less than 31, and when Game is greater than 7? ### Answer: SELECT opponent FROM table_name_12 WHERE october < 31 AND game > 7
What is the tie number for the home team Orient?
CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_35 WHERE home_team = "orient"
### Context: CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR) ### Question: What is the tie number for the home team Orient? ### Answer: SELECT tie_no FROM table_name_35 WHERE home_team = "orient"
What is the score for the away team Chelsea?
CREATE TABLE table_name_35 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_35 WHERE away_team = "chelsea"
### Context: CREATE TABLE table_name_35 (score VARCHAR, away_team VARCHAR) ### Question: What is the score for the away team Chelsea? ### Answer: SELECT score FROM table_name_35 WHERE away_team = "chelsea"
What is the away team for the tie no. 29?
CREATE TABLE table_name_81 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_81 WHERE tie_no = "29"
### Context: CREATE TABLE table_name_81 (away_team VARCHAR, tie_no VARCHAR) ### Question: What is the away team for the tie no. 29? ### Answer: SELECT away_team FROM table_name_81 WHERE tie_no = "29"
What is the coronie with a 0.7% nickerie?
CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)
SELECT coronie FROM table_name_92 WHERE nickerie = "0.7%"
### Context: CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR) ### Question: What is the coronie with a 0.7% nickerie? ### Answer: SELECT coronie FROM table_name_92 WHERE nickerie = "0.7%"
What is the marowijne with an 18.8% saramacca?
CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR)
SELECT marowijne FROM table_name_2 WHERE saramacca = "18.8%"
### Context: CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR) ### Question: What is the marowijne with an 18.8% saramacca? ### Answer: SELECT marowijne FROM table_name_2 WHERE saramacca = "18.8%"
What is the para with a 0.1% sipaliwini?
CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR)
SELECT para FROM table_name_70 WHERE sipaliwini = "0.1%"
### Context: CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR) ### Question: What is the para with a 0.1% sipaliwini? ### Answer: SELECT para FROM table_name_70 WHERE sipaliwini = "0.1%"
What religion has a para of 56.5%?
CREATE TABLE table_name_65 (religion VARCHAR, para VARCHAR)
SELECT religion FROM table_name_65 WHERE para = "56.5%"
### Context: CREATE TABLE table_name_65 (religion VARCHAR, para VARCHAR) ### Question: What religion has a para of 56.5%? ### Answer: SELECT religion FROM table_name_65 WHERE para = "56.5%"
What is the suriname with a 16.8% brokopondo?
CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR)
SELECT suriname FROM table_name_62 WHERE brokopondo = "16.8%"
### Context: CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR) ### Question: What is the suriname with a 16.8% brokopondo? ### Answer: SELECT suriname FROM table_name_62 WHERE brokopondo = "16.8%"
What's the rank average when the gold medals are less than 0?
CREATE TABLE table_name_41 (rank INTEGER, gold INTEGER)
SELECT AVG(rank) FROM table_name_41 WHERE gold < 0
### Context: CREATE TABLE table_name_41 (rank INTEGER, gold INTEGER) ### Question: What's the rank average when the gold medals are less than 0? ### Answer: SELECT AVG(rank) FROM table_name_41 WHERE gold < 0
What is the total rank of Hungary (HUN) when the bronze medals were less than 0?
CREATE TABLE table_name_84 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(rank) FROM table_name_84 WHERE nation = "hungary (hun)" AND bronze < 0
### Context: CREATE TABLE table_name_84 (rank INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the total rank of Hungary (HUN) when the bronze medals were less than 0? ### Answer: SELECT SUM(rank) FROM table_name_84 WHERE nation = "hungary (hun)" AND bronze < 0
What is the sum of the total number of medals when silver is less than 0?
CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)
SELECT COUNT(total) FROM table_name_54 WHERE silver < 0
### Context: CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER) ### Question: What is the sum of the total number of medals when silver is less than 0? ### Answer: SELECT COUNT(total) FROM table_name_54 WHERE silver < 0
What is Born-Died, when Term Start is 4 December 1941?
CREATE TABLE table_name_25 (born_died VARCHAR, term_start VARCHAR)
SELECT born_died FROM table_name_25 WHERE term_start = "4 december 1941"
### Context: CREATE TABLE table_name_25 (born_died VARCHAR, term_start VARCHAR) ### Question: What is Born-Died, when Term Start is 4 December 1941? ### Answer: SELECT born_died FROM table_name_25 WHERE term_start = "4 december 1941"
What is Term Start, when Name is Prime Ministers 1939 - 1943?
CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR)
SELECT term_start FROM table_name_38 WHERE name = "prime ministers 1939 - 1943"
### Context: CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR) ### Question: What is Term Start, when Name is Prime Ministers 1939 - 1943? ### Answer: SELECT term_start FROM table_name_38 WHERE name = "prime ministers 1939 - 1943"
What is Born-Died, when Name is Maliq Bushati?
CREATE TABLE table_name_27 (born_died VARCHAR, name VARCHAR)
SELECT born_died FROM table_name_27 WHERE name = "maliq bushati"
### Context: CREATE TABLE table_name_27 (born_died VARCHAR, name VARCHAR) ### Question: What is Born-Died, when Name is Maliq Bushati? ### Answer: SELECT born_died FROM table_name_27 WHERE name = "maliq bushati"
What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939?
CREATE TABLE table_name_78 (term_end VARCHAR, political_party VARCHAR, term_start VARCHAR)
SELECT term_end FROM table_name_78 WHERE political_party = "albanian fascist party" AND term_start = "12 april 1939"
### Context: CREATE TABLE table_name_78 (term_end VARCHAR, political_party VARCHAR, term_start VARCHAR) ### Question: What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939? ### Answer: SELECT term_end FROM table_name_78 WHERE political_party = "albanian fascist party" AND term_start = "12 april 1939"
What is Term Start, when Born-Died is Prime Ministers 1939 - 1943?
CREATE TABLE table_name_53 (term_start VARCHAR, born_died VARCHAR)
SELECT term_start FROM table_name_53 WHERE born_died = "prime ministers 1939 - 1943"
### Context: CREATE TABLE table_name_53 (term_start VARCHAR, born_died VARCHAR) ### Question: What is Term Start, when Born-Died is Prime Ministers 1939 - 1943? ### Answer: SELECT term_start FROM table_name_53 WHERE born_died = "prime ministers 1939 - 1943"
What is Born-Died, when Term End is 19 January 1943?
CREATE TABLE table_name_60 (born_died VARCHAR, term_end VARCHAR)
SELECT born_died FROM table_name_60 WHERE term_end = "19 january 1943"
### Context: CREATE TABLE table_name_60 (born_died VARCHAR, term_end VARCHAR) ### Question: What is Born-Died, when Term End is 19 January 1943? ### Answer: SELECT born_died FROM table_name_60 WHERE term_end = "19 january 1943"
What is the Score of the game with a Record of 5–4–3?
CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_2 WHERE record = "5–4–3"
### Context: CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR) ### Question: What is the Score of the game with a Record of 5–4–3? ### Answer: SELECT score FROM table_name_2 WHERE record = "5–4–3"
What is the Score on January 23?
CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_8 WHERE date = "january 23"
### Context: CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR) ### Question: What is the Score on January 23? ### Answer: SELECT score FROM table_name_8 WHERE date = "january 23"
What is the Visitor of the Montreal Canadiens Home game with a Record of 6–4–4?
CREATE TABLE table_name_78 (visitor VARCHAR, home VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_78 WHERE home = "montreal canadiens" AND record = "6–4–4"
### Context: CREATE TABLE table_name_78 (visitor VARCHAR, home VARCHAR, record VARCHAR) ### Question: What is the Visitor of the Montreal Canadiens Home game with a Record of 6–4–4? ### Answer: SELECT visitor FROM table_name_78 WHERE home = "montreal canadiens" AND record = "6–4–4"
What is the Date of the game with a Record of 12–7–6?
CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_20 WHERE record = "12–7–6"
### Context: CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR) ### Question: What is the Date of the game with a Record of 12–7–6? ### Answer: SELECT date FROM table_name_20 WHERE record = "12–7–6"
What is the Record of the Montreal Canadiens Home game on March 23?
CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR, date VARCHAR)
SELECT record FROM table_name_38 WHERE home = "montreal canadiens" AND date = "march 23"
### Context: CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR, date VARCHAR) ### Question: What is the Record of the Montreal Canadiens Home game on March 23? ### Answer: SELECT record FROM table_name_38 WHERE home = "montreal canadiens" AND date = "march 23"
What tournament location has 1 stroke as the margin of victory, with 1,200,000 as the purse ($)?
CREATE TABLE table_name_81 (tournament_location VARCHAR, margin_of_victory VARCHAR, purse___$__ VARCHAR)
SELECT tournament_location FROM table_name_81 WHERE margin_of_victory = "1 stroke" AND purse___$__ = "1,200,000"
### Context: CREATE TABLE table_name_81 (tournament_location VARCHAR, margin_of_victory VARCHAR, purse___$__ VARCHAR) ### Question: What tournament location has 1 stroke as the margin of victory, with 1,200,000 as the purse ($)? ### Answer: SELECT tournament_location FROM table_name_81 WHERE margin_of_victory = "1 stroke" AND purse___$__ = "1,200,000"
What tournament location has south korea as the country?
CREATE TABLE table_name_43 (tournament_location VARCHAR, country VARCHAR)
SELECT tournament_location FROM table_name_43 WHERE country = "south korea"
### Context: CREATE TABLE table_name_43 (tournament_location VARCHAR, country VARCHAR) ### Question: What tournament location has south korea as the country? ### Answer: SELECT tournament_location FROM table_name_43 WHERE country = "south korea"
What is the land area of Switzerland with a population density fewer than 188 kmΒ²?
CREATE TABLE table_name_98 (land_area__kmΒ²_ INTEGER, country VARCHAR, population_density__pop_per_kmΒ²_ VARCHAR)
SELECT AVG(land_area__kmΒ²_) FROM table_name_98 WHERE country = "switzerland" AND population_density__pop_per_kmΒ²_ < 188
### Context: CREATE TABLE table_name_98 (land_area__kmΒ²_ INTEGER, country VARCHAR, population_density__pop_per_kmΒ²_ VARCHAR) ### Question: What is the land area of Switzerland with a population density fewer than 188 kmΒ²? ### Answer: SELECT AVG(land_area__kmΒ²_) FROM table_name_98 WHERE country = "switzerland" AND population_density__pop_per_kmΒ²_ < 188
What lost has 86 points?
CREATE TABLE table_name_67 (lost VARCHAR, points VARCHAR)
SELECT lost FROM table_name_67 WHERE points = "86"
### Context: CREATE TABLE table_name_67 (lost VARCHAR, points VARCHAR) ### Question: What lost has 86 points? ### Answer: SELECT lost FROM table_name_67 WHERE points = "86"
With 37 tries against, what is the try bonus?
CREATE TABLE table_name_82 (try_bonus VARCHAR, tries_against VARCHAR)
SELECT try_bonus FROM table_name_82 WHERE tries_against = "37"
### Context: CREATE TABLE table_name_82 (try_bonus VARCHAR, tries_against VARCHAR) ### Question: With 37 tries against, what is the try bonus? ### Answer: SELECT try_bonus FROM table_name_82 WHERE tries_against = "37"
How many points against when 41 is the tries for?
CREATE TABLE table_name_59 (points_against VARCHAR, tries_for VARCHAR)
SELECT points_against FROM table_name_59 WHERE tries_for = "41"
### Context: CREATE TABLE table_name_59 (points_against VARCHAR, tries_for VARCHAR) ### Question: How many points against when 41 is the tries for? ### Answer: SELECT points_against FROM table_name_59 WHERE tries_for = "41"
With a lost of lost what was the losing bonus?
CREATE TABLE table_name_52 (losing_bonus VARCHAR)
SELECT losing_bonus FROM table_name_52 WHERE "lost" = "lost"
### Context: CREATE TABLE table_name_52 (losing_bonus VARCHAR) ### Question: With a lost of lost what was the losing bonus? ### Answer: SELECT losing_bonus FROM table_name_52 WHERE "lost" = "lost"
What points has points for as points for?
CREATE TABLE table_name_25 (points VARCHAR, points_for VARCHAR)
SELECT points FROM table_name_25 WHERE points_for = "points for"
### Context: CREATE TABLE table_name_25 (points VARCHAR, points_for VARCHAR) ### Question: What points has points for as points for? ### Answer: SELECT points FROM table_name_25 WHERE points_for = "points for"
What is the points when the club is Barry RFC with a 5 as the try bonus?
CREATE TABLE table_name_27 (points VARCHAR, try_bonus VARCHAR, club VARCHAR)
SELECT points FROM table_name_27 WHERE try_bonus = "5" AND club = "barry rfc"
### Context: CREATE TABLE table_name_27 (points VARCHAR, try_bonus VARCHAR, club VARCHAR) ### Question: What is the points when the club is Barry RFC with a 5 as the try bonus? ### Answer: SELECT points FROM table_name_27 WHERE try_bonus = "5" AND club = "barry rfc"
What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61?
CREATE TABLE table_name_57 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT SUM(gold) FROM table_name_57 WHERE silver > 6 AND rank = "1" AND bronze < 61
### Context: CREATE TABLE table_name_57 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) ### Question: What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61? ### Answer: SELECT SUM(gold) FROM table_name_57 WHERE silver > 6 AND rank = "1" AND bronze < 61
What is the lowest Silver, when Bronze is 1, and when Total is less than 3?
CREATE TABLE table_name_23 (silver INTEGER, bronze VARCHAR, total VARCHAR)
SELECT MIN(silver) FROM table_name_23 WHERE bronze = 1 AND total < 3
### Context: CREATE TABLE table_name_23 (silver INTEGER, bronze VARCHAR, total VARCHAR) ### Question: What is the lowest Silver, when Bronze is 1, and when Total is less than 3? ### Answer: SELECT MIN(silver) FROM table_name_23 WHERE bronze = 1 AND total < 3
What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?
CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_95 WHERE silver < 107 AND bronze > 42 AND rank = "3"
### Context: CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR) ### Question: What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3? ### Answer: SELECT AVG(gold) FROM table_name_95 WHERE silver < 107 AND bronze > 42 AND rank = "3"
Which manufacturer has more than 28 laps and less than 9 grids with jeremy mcwilliams?
CREATE TABLE table_name_53 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT manufacturer FROM table_name_53 WHERE laps < 28 AND grid < 9 AND rider = "jeremy mcwilliams"
### Context: CREATE TABLE table_name_53 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Which manufacturer has more than 28 laps and less than 9 grids with jeremy mcwilliams? ### Answer: SELECT manufacturer FROM table_name_53 WHERE laps < 28 AND grid < 9 AND rider = "jeremy mcwilliams"
What is the grid average with a +1 lap time and more than 27 laps?
CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_52 WHERE time_retired = "+1 lap" AND laps > 27
### Context: CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the grid average with a +1 lap time and more than 27 laps? ### Answer: SELECT AVG(grid) FROM table_name_52 WHERE time_retired = "+1 lap" AND laps > 27
Which lap has more than 17 grids with tetsuya harada?
CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, rider VARCHAR)
SELECT laps FROM table_name_77 WHERE grid > 17 AND rider = "tetsuya harada"
### Context: CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, rider VARCHAR) ### Question: Which lap has more than 17 grids with tetsuya harada? ### Answer: SELECT laps FROM table_name_77 WHERE grid > 17 AND rider = "tetsuya harada"
Prior to 1978, what is the Danish of the Film directed by Bent Christensen?
CREATE TABLE table_name_16 (danish_title VARCHAR, year VARCHAR, director VARCHAR)
SELECT danish_title FROM table_name_16 WHERE year < 1978 AND director = "bent christensen"
### Context: CREATE TABLE table_name_16 (danish_title VARCHAR, year VARCHAR, director VARCHAR) ### Question: Prior to 1978, what is the Danish of the Film directed by Bent Christensen? ### Answer: SELECT danish_title FROM table_name_16 WHERE year < 1978 AND director = "bent christensen"
Who is the Director of the Olsen Gang Sees Red?
CREATE TABLE table_name_11 (director VARCHAR, english_title VARCHAR)
SELECT director FROM table_name_11 WHERE english_title = "the olsen gang sees red"
### Context: CREATE TABLE table_name_11 (director VARCHAR, english_title VARCHAR) ### Question: Who is the Director of the Olsen Gang Sees Red? ### Answer: SELECT director FROM table_name_11 WHERE english_title = "the olsen gang sees red"
What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?
CREATE TABLE table_name_40 (year INTEGER, director VARCHAR, english_title VARCHAR)
SELECT SUM(year) FROM table_name_40 WHERE director = "erik clausen" AND english_title = "the dark side of the moon"
### Context: CREATE TABLE table_name_40 (year INTEGER, director VARCHAR, english_title VARCHAR) ### Question: What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen? ### Answer: SELECT SUM(year) FROM table_name_40 WHERE director = "erik clausen" AND english_title = "the dark side of the moon"
What is the Year of submission of the Film The Art of Crying?
CREATE TABLE table_name_70 (year INTEGER, english_title VARCHAR)
SELECT MIN(year) FROM table_name_70 WHERE english_title = "the art of crying"
### Context: CREATE TABLE table_name_70 (year INTEGER, english_title VARCHAR) ### Question: What is the Year of submission of the Film The Art of Crying? ### Answer: SELECT MIN(year) FROM table_name_70 WHERE english_title = "the art of crying"
Which Home Town had the weight of 201?
CREATE TABLE table_name_67 (home_town VARCHAR, weight VARCHAR)
SELECT home_town FROM table_name_67 WHERE weight = 201
### Context: CREATE TABLE table_name_67 (home_town VARCHAR, weight VARCHAR) ### Question: Which Home Town had the weight of 201? ### Answer: SELECT home_town FROM table_name_67 WHERE weight = 201
What Position did the sophomore Darnell Jackson play?
CREATE TABLE table_name_48 (position VARCHAR, year VARCHAR, name VARCHAR)
SELECT position FROM table_name_48 WHERE year = "sophomore" AND name = "darnell jackson"
### Context: CREATE TABLE table_name_48 (position VARCHAR, year VARCHAR, name VARCHAR) ### Question: What Position did the sophomore Darnell Jackson play? ### Answer: SELECT position FROM table_name_48 WHERE year = "sophomore" AND name = "darnell jackson"
what kind of 2007 has a 1999 of β€”, and a Model of seat mii?
CREATE TABLE table_name_16 (model VARCHAR)
SELECT 2007 FROM table_name_16 WHERE 1999 = "β€”" AND model = "seat mii"
### Context: CREATE TABLE table_name_16 (model VARCHAR) ### Question: what kind of 2007 has a 1999 of β€”, and a Model of seat mii? ### Answer: SELECT 2007 FROM table_name_16 WHERE 1999 = "β€”" AND model = "seat mii"
Which 2005 has a 2006 of 126,511?
CREATE TABLE table_name_39 (Id VARCHAR)
SELECT 2005 FROM table_name_39 WHERE 2006 = "126,511"
### Context: CREATE TABLE table_name_39 (Id VARCHAR) ### Question: Which 2005 has a 2006 of 126,511? ### Answer: SELECT 2005 FROM table_name_39 WHERE 2006 = "126,511"
Name the 2004 which has a 2003 of 36,026?
CREATE TABLE table_name_19 (Id VARCHAR)
SELECT 2004 FROM table_name_19 WHERE 2003 = "36,026"
### Context: CREATE TABLE table_name_19 (Id VARCHAR) ### Question: Name the 2004 which has a 2003 of 36,026? ### Answer: SELECT 2004 FROM table_name_19 WHERE 2003 = "36,026"
Name the 2007 which has a 2011 of 191,183? Question 4
CREATE TABLE table_name_14 (Id VARCHAR)
SELECT 2007 FROM table_name_14 WHERE 2011 = "191,183"
### Context: CREATE TABLE table_name_14 (Id VARCHAR) ### Question: Name the 2007 which has a 2011 of 191,183? Question 4 ### Answer: SELECT 2007 FROM table_name_14 WHERE 2011 = "191,183"
Name the 2011 which has a 2002 of β€”, and a Model of seat marbella?
CREATE TABLE table_name_93 (model VARCHAR)
SELECT 2011 FROM table_name_93 WHERE 2002 = "β€”" AND model = "seat marbella"
### Context: CREATE TABLE table_name_93 (model VARCHAR) ### Question: Name the 2011 which has a 2002 of β€”, and a Model of seat marbella? ### Answer: SELECT 2011 FROM table_name_93 WHERE 2002 = "β€”" AND model = "seat marbella"
Name the 2003 which has a 2000 of β€”, and a 2007 of β€”, and a 2010 of β€”?
CREATE TABLE table_name_33 (Id VARCHAR)
SELECT 2003 FROM table_name_33 WHERE 2000 = "β€”" AND 2007 = "β€”" AND 2010 = "β€”"
### Context: CREATE TABLE table_name_33 (Id VARCHAR) ### Question: Name the 2003 which has a 2000 of β€”, and a 2007 of β€”, and a 2010 of β€”? ### Answer: SELECT 2003 FROM table_name_33 WHERE 2000 = "β€”" AND 2007 = "β€”" AND 2010 = "β€”"
Who is affiliated with the Dukes?
CREATE TABLE table_name_63 (affiliation VARCHAR, nickname VARCHAR)
SELECT affiliation FROM table_name_63 WHERE nickname = "dukes"
### Context: CREATE TABLE table_name_63 (affiliation VARCHAR, nickname VARCHAR) ### Question: Who is affiliated with the Dukes? ### Answer: SELECT affiliation FROM table_name_63 WHERE nickname = "dukes"
What school is in Radford, Va?
CREATE TABLE table_name_74 (school VARCHAR, location VARCHAR)
SELECT school FROM table_name_74 WHERE location = "radford, va"
### Context: CREATE TABLE table_name_74 (school VARCHAR, location VARCHAR) ### Question: What school is in Radford, Va? ### Answer: SELECT school FROM table_name_74 WHERE location = "radford, va"
What school has a public nickname, founded after 1838 in Harrisonburg, Va?
CREATE TABLE table_name_38 (nickname VARCHAR, location VARCHAR, affiliation VARCHAR, founded VARCHAR)
SELECT nickname FROM table_name_38 WHERE affiliation = "public" AND founded > 1838 AND location = "harrisonburg, va"
### Context: CREATE TABLE table_name_38 (nickname VARCHAR, location VARCHAR, affiliation VARCHAR, founded VARCHAR) ### Question: What school has a public nickname, founded after 1838 in Harrisonburg, Va? ### Answer: SELECT nickname FROM table_name_38 WHERE affiliation = "public" AND founded > 1838 AND location = "harrisonburg, va"
Lowest pick for mike flater?
CREATE TABLE table_name_21 (pick INTEGER, name VARCHAR)
SELECT MIN(pick) FROM table_name_21 WHERE name = "mike flater"
### Context: CREATE TABLE table_name_21 (pick INTEGER, name VARCHAR) ### Question: Lowest pick for mike flater? ### Answer: SELECT MIN(pick) FROM table_name_21 WHERE name = "mike flater"
Who was the home team on January 2 with 23 points?
CREATE TABLE table_name_57 (home VARCHAR, points VARCHAR, date VARCHAR)
SELECT home FROM table_name_57 WHERE points = 23 AND date = "january 2"
### Context: CREATE TABLE table_name_57 (home VARCHAR, points VARCHAR, date VARCHAR) ### Question: Who was the home team on January 2 with 23 points? ### Answer: SELECT home FROM table_name_57 WHERE points = 23 AND date = "january 2"
What is the record when St. Louis is the visitor?
CREATE TABLE table_name_56 (record VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_56 WHERE visitor = "st. louis"
### Context: CREATE TABLE table_name_56 (record VARCHAR, visitor VARCHAR) ### Question: What is the record when St. Louis is the visitor? ### Answer: SELECT record FROM table_name_56 WHERE visitor = "st. louis"
What was the score for the game on November 1?
CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_25 WHERE date = "november 1"
### Context: CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR) ### Question: What was the score for the game on November 1? ### Answer: SELECT score FROM table_name_25 WHERE date = "november 1"
What were the location and attendance for the game against New Jersey?
CREATE TABLE table_name_33 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_name_33 WHERE team = "new jersey"
### Context: CREATE TABLE table_name_33 (location_attendance VARCHAR, team VARCHAR) ### Question: What were the location and attendance for the game against New Jersey? ### Answer: SELECT location_attendance FROM table_name_33 WHERE team = "new jersey"
Where were the 2009 and 2011 Grand Slam Tournaments?
CREATE TABLE table_name_86 (Id VARCHAR)
SELECT 2011 FROM table_name_86 WHERE 2009 = "grand slam tournaments"
### Context: CREATE TABLE table_name_86 (Id VARCHAR) ### Question: Where were the 2009 and 2011 Grand Slam Tournaments? ### Answer: SELECT 2011 FROM table_name_86 WHERE 2009 = "grand slam tournaments"
What is Second Vice President, when Third Vice President is "Gen. Juan Alonso", and when Inaugurated is "15 March 1940"?
CREATE TABLE table_name_74 (second_vice_president VARCHAR, third_vice_president VARCHAR, inaugurated VARCHAR)
SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = "gen. juan alonso" AND inaugurated = "15 march 1940"
### Context: CREATE TABLE table_name_74 (second_vice_president VARCHAR, third_vice_president VARCHAR, inaugurated VARCHAR) ### Question: What is Second Vice President, when Third Vice President is "Gen. Juan Alonso", and when Inaugurated is "15 March 1940"? ### Answer: SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = "gen. juan alonso" AND inaugurated = "15 march 1940"
What is Left Office, when Inaugurate is "15 March 1930"?
CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR)
SELECT left_office FROM table_name_1 WHERE inaugurated = "15 march 1930"
### Context: CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR) ### Question: What is Left Office, when Inaugurate is "15 March 1930"? ### Answer: SELECT left_office FROM table_name_1 WHERE inaugurated = "15 march 1930"
What is Second Vice President, when Inaugurated is "26 March 1928"?
CREATE TABLE table_name_85 (second_vice_president VARCHAR, inaugurated VARCHAR)
SELECT second_vice_president FROM table_name_85 WHERE inaugurated = "26 march 1928"
### Context: CREATE TABLE table_name_85 (second_vice_president VARCHAR, inaugurated VARCHAR) ### Question: What is Second Vice President, when Inaugurated is "26 March 1928"? ### Answer: SELECT second_vice_president FROM table_name_85 WHERE inaugurated = "26 march 1928"
What is Second Vice President, when Inaugurated is "15 March 1935"?
CREATE TABLE table_name_49 (second_vice_president VARCHAR, inaugurated VARCHAR)
SELECT second_vice_president FROM table_name_49 WHERE inaugurated = "15 march 1935"
### Context: CREATE TABLE table_name_49 (second_vice_president VARCHAR, inaugurated VARCHAR) ### Question: What is Second Vice President, when Inaugurated is "15 March 1935"? ### Answer: SELECT second_vice_president FROM table_name_49 WHERE inaugurated = "15 march 1935"
What is Third Vice President, when Inaugurated is "15 March 1934"?
CREATE TABLE table_name_38 (third_vice_president VARCHAR, inaugurated VARCHAR)
SELECT third_vice_president FROM table_name_38 WHERE inaugurated = "15 march 1934"
### Context: CREATE TABLE table_name_38 (third_vice_president VARCHAR, inaugurated VARCHAR) ### Question: What is Third Vice President, when Inaugurated is "15 March 1934"? ### Answer: SELECT third_vice_president FROM table_name_38 WHERE inaugurated = "15 march 1934"
What is Third Vice President, when Second Vice President is "Baudelio Palma"?
CREATE TABLE table_name_16 (third_vice_president VARCHAR, second_vice_president VARCHAR)
SELECT third_vice_president FROM table_name_16 WHERE second_vice_president = "baudelio palma"
### Context: CREATE TABLE table_name_16 (third_vice_president VARCHAR, second_vice_president VARCHAR) ### Question: What is Third Vice President, when Second Vice President is "Baudelio Palma"? ### Answer: SELECT third_vice_president FROM table_name_16 WHERE second_vice_president = "baudelio palma"
What was the score of the game from July 18?
CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_30 WHERE date = "july 18"
### Context: CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game from July 18? ### Answer: SELECT score FROM table_name_30 WHERE date = "july 18"
What was the Attendance on Week 9?
CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)
SELECT MAX(attendance) FROM table_name_25 WHERE week = 9
### Context: CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR) ### Question: What was the Attendance on Week 9? ### Answer: SELECT MAX(attendance) FROM table_name_25 WHERE week = 9
What is the Opponent of the game with a Result of w 13–0?
CREATE TABLE table_name_49 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_49 WHERE result = "w 13–0"
### Context: CREATE TABLE table_name_49 (opponent VARCHAR, result VARCHAR) ### Question: What is the Opponent of the game with a Result of w 13–0? ### Answer: SELECT opponent FROM table_name_49 WHERE result = "w 13–0"
What was the score in January that was less than 4?
CREATE TABLE table_name_92 (score VARCHAR, january INTEGER)
SELECT score FROM table_name_92 WHERE january < 4
### Context: CREATE TABLE table_name_92 (score VARCHAR, january INTEGER) ### Question: What was the score in January that was less than 4? ### Answer: SELECT score FROM table_name_92 WHERE january < 4
Which date was the event that Yani won in a playoff over Yueh-Chyn Huang?
CREATE TABLE table_name_55 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_55 WHERE margin_of_victory = "playoff" AND runner_s__up = "yueh-chyn huang"
### Context: CREATE TABLE table_name_55 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: Which date was the event that Yani won in a playoff over Yueh-Chyn Huang? ### Answer: SELECT date FROM table_name_55 WHERE margin_of_victory = "playoff" AND runner_s__up = "yueh-chyn huang"
What is the latitude of the point with a longitude of 147.1w?
CREATE TABLE table_name_7 (latitude VARCHAR, longitude VARCHAR)
SELECT latitude FROM table_name_7 WHERE longitude = "147.1w"
### Context: CREATE TABLE table_name_7 (latitude VARCHAR, longitude VARCHAR) ### Question: What is the latitude of the point with a longitude of 147.1w? ### Answer: SELECT latitude FROM table_name_7 WHERE longitude = "147.1w"
What is ISBN UK, when Author is "Dave Martin", and when ISBN US is "N/A"?
CREATE TABLE table_name_38 (isbn_uk VARCHAR, author VARCHAR, isbn_us VARCHAR)
SELECT isbn_uk FROM table_name_38 WHERE author = "dave martin" AND isbn_us = "n/a"
### Context: CREATE TABLE table_name_38 (isbn_uk VARCHAR, author VARCHAR, isbn_us VARCHAR) ### Question: What is ISBN UK, when Author is "Dave Martin", and when ISBN US is "N/A"? ### Answer: SELECT isbn_uk FROM table_name_38 WHERE author = "dave martin" AND isbn_us = "n/a"
What is ISBN US, when Title is "Crisis In Space"?
CREATE TABLE table_name_72 (isbn_us VARCHAR, title VARCHAR)
SELECT isbn_us FROM table_name_72 WHERE title = "crisis in space"
### Context: CREATE TABLE table_name_72 (isbn_us VARCHAR, title VARCHAR) ### Question: What is ISBN US, when Title is "Crisis In Space"? ### Answer: SELECT isbn_us FROM table_name_72 WHERE title = "crisis in space"
What is Author, when TV Companions Featured is "Peri Brown", and when Title is "Race Against Time"?
CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR)
SELECT author FROM table_name_1 WHERE tv_companions_featured = "peri brown" AND title = "race against time"
### Context: CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR) ### Question: What is Author, when TV Companions Featured is "Peri Brown", and when Title is "Race Against Time"? ### Answer: SELECT author FROM table_name_1 WHERE tv_companions_featured = "peri brown" AND title = "race against time"
What is Title, when TV Companions Featured is "K-9"?
CREATE TABLE table_name_35 (title VARCHAR, tv_companions_featured VARCHAR)
SELECT title FROM table_name_35 WHERE tv_companions_featured = "k-9"
### Context: CREATE TABLE table_name_35 (title VARCHAR, tv_companions_featured VARCHAR) ### Question: What is Title, when TV Companions Featured is "K-9"? ### Answer: SELECT title FROM table_name_35 WHERE tv_companions_featured = "k-9"
What is ISBN US, when Title is "Mission To Venus"?
CREATE TABLE table_name_55 (isbn_us VARCHAR, title VARCHAR)
SELECT isbn_us FROM table_name_55 WHERE title = "mission to venus"
### Context: CREATE TABLE table_name_55 (isbn_us VARCHAR, title VARCHAR) ### Question: What is ISBN US, when Title is "Mission To Venus"? ### Answer: SELECT isbn_us FROM table_name_55 WHERE title = "mission to venus"
What is TV Companions Featured, when Author is "William Emms"?
CREATE TABLE table_name_95 (tv_companions_featured VARCHAR, author VARCHAR)
SELECT tv_companions_featured FROM table_name_95 WHERE author = "william emms"
### Context: CREATE TABLE table_name_95 (tv_companions_featured VARCHAR, author VARCHAR) ### Question: What is TV Companions Featured, when Author is "William Emms"? ### Answer: SELECT tv_companions_featured FROM table_name_95 WHERE author = "william emms"
Which Date has a Result of 2–2, and a Venue of H?
CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR, venue VARCHAR)
SELECT date FROM table_name_3 WHERE result = "2–2" AND venue = "h"
### Context: CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR, venue VARCHAR) ### Question: Which Date has a Result of 2–2, and a Venue of H? ### Answer: SELECT date FROM table_name_3 WHERE result = "2–2" AND venue = "h"
Which player had a to par score larger than 7 and a total score of 298?
CREATE TABLE table_name_5 (player VARCHAR, to_par VARCHAR, total VARCHAR)
SELECT player FROM table_name_5 WHERE to_par > 7 AND total = 298
### Context: CREATE TABLE table_name_5 (player VARCHAR, to_par VARCHAR, total VARCHAR) ### Question: Which player had a to par score larger than 7 and a total score of 298? ### Answer: SELECT player FROM table_name_5 WHERE to_par > 7 AND total = 298
In which location did he win the Superbrawl 16 event?
CREATE TABLE table_name_57 (location VARCHAR, res VARCHAR, event VARCHAR)
SELECT location FROM table_name_57 WHERE res = "win" AND event = "superbrawl 16"
### Context: CREATE TABLE table_name_57 (location VARCHAR, res VARCHAR, event VARCHAR) ### Question: In which location did he win the Superbrawl 16 event? ### Answer: SELECT location FROM table_name_57 WHERE res = "win" AND event = "superbrawl 16"
What was his record when the method was technical submission (forearm choke)?
CREATE TABLE table_name_57 (record VARCHAR, method VARCHAR)
SELECT record FROM table_name_57 WHERE method = "technical submission (forearm choke)"
### Context: CREATE TABLE table_name_57 (record VARCHAR, method VARCHAR) ### Question: What was his record when the method was technical submission (forearm choke)? ### Answer: SELECT record FROM table_name_57 WHERE method = "technical submission (forearm choke)"
Who was the opponent in round 2 of the UFC 49 event?
CREATE TABLE table_name_1 (opponent VARCHAR, round VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_1 WHERE round = "2" AND event = "ufc 49"
### Context: CREATE TABLE table_name_1 (opponent VARCHAR, round VARCHAR, event VARCHAR) ### Question: Who was the opponent in round 2 of the UFC 49 event? ### Answer: SELECT opponent FROM table_name_1 WHERE round = "2" AND event = "ufc 49"
What was the round when he fought Joe Stevenson?
CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_26 WHERE opponent = "joe stevenson"
### Context: CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR) ### Question: What was the round when he fought Joe Stevenson? ### Answer: SELECT round FROM table_name_26 WHERE opponent = "joe stevenson"
On which date was the score 94-74 w?
CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_70 WHERE score = "94-74 w"
### Context: CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR) ### Question: On which date was the score 94-74 w? ### Answer: SELECT date FROM table_name_70 WHERE score = "94-74 w"
When they played at Chicago Bulls, what was the Location/Attendance?
CREATE TABLE table_name_47 (location_attendance VARCHAR, opponent VARCHAR)
SELECT location_attendance FROM table_name_47 WHERE opponent = "at chicago bulls"
### Context: CREATE TABLE table_name_47 (location_attendance VARCHAR, opponent VARCHAR) ### Question: When they played at Chicago Bulls, what was the Location/Attendance? ### Answer: SELECT location_attendance FROM table_name_47 WHERE opponent = "at chicago bulls"
Who was the opponent in Game 44?
CREATE TABLE table_name_98 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_98 WHERE game = "44"
### Context: CREATE TABLE table_name_98 (opponent VARCHAR, game VARCHAR) ### Question: Who was the opponent in Game 44? ### Answer: SELECT opponent FROM table_name_98 WHERE game = "44"
Who was the opponent when they played at Delta Center with a record of 27-13?
CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_7 WHERE location_attendance = "delta center" AND record = "27-13"
### Context: CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR) ### Question: Who was the opponent when they played at Delta Center with a record of 27-13? ### Answer: SELECT opponent FROM table_name_7 WHERE location_attendance = "delta center" AND record = "27-13"
What was the date for Game 41?
CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_33 WHERE game = "41"
### Context: CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR) ### Question: What was the date for Game 41? ### Answer: SELECT date FROM table_name_33 WHERE game = "41"
Which Opposing Team has an Against of 3, and a Date of 11 february 1950?
CREATE TABLE table_name_97 (opposing_team VARCHAR, against VARCHAR, date VARCHAR)
SELECT opposing_team FROM table_name_97 WHERE against = 3 AND date = "11 february 1950"
### Context: CREATE TABLE table_name_97 (opposing_team VARCHAR, against VARCHAR, date VARCHAR) ### Question: Which Opposing Team has an Against of 3, and a Date of 11 february 1950? ### Answer: SELECT opposing_team FROM table_name_97 WHERE against = 3 AND date = "11 february 1950"
Which Venue has an Opposing Team of manchester united, and a Round of 5th round replay?
CREATE TABLE table_name_79 (venue VARCHAR, opposing_team VARCHAR, round VARCHAR)
SELECT venue FROM table_name_79 WHERE opposing_team = "manchester united" AND round = "5th round replay"
### Context: CREATE TABLE table_name_79 (venue VARCHAR, opposing_team VARCHAR, round VARCHAR) ### Question: Which Venue has an Opposing Team of manchester united, and a Round of 5th round replay? ### Answer: SELECT venue FROM table_name_79 WHERE opposing_team = "manchester united" AND round = "5th round replay"
Which Against has a Date of 28 january 1950?
CREATE TABLE table_name_49 (against INTEGER, date VARCHAR)
SELECT AVG(against) FROM table_name_49 WHERE date = "28 january 1950"
### Context: CREATE TABLE table_name_49 (against INTEGER, date VARCHAR) ### Question: Which Against has a Date of 28 january 1950? ### Answer: SELECT AVG(against) FROM table_name_49 WHERE date = "28 january 1950"
What is the total number of years wehre anna thompson had a 3rd place result at edinburgh, scotland?
CREATE TABLE table_name_28 (year VARCHAR, result VARCHAR, venue VARCHAR)
SELECT COUNT(year) FROM table_name_28 WHERE result = "3rd" AND venue = "edinburgh, scotland"
### Context: CREATE TABLE table_name_28 (year VARCHAR, result VARCHAR, venue VARCHAR) ### Question: What is the total number of years wehre anna thompson had a 3rd place result at edinburgh, scotland? ### Answer: SELECT COUNT(year) FROM table_name_28 WHERE result = "3rd" AND venue = "edinburgh, scotland"
What year did anna thompson have a 7th place result?
CREATE TABLE table_name_85 (year VARCHAR, result VARCHAR)
SELECT year FROM table_name_85 WHERE result = "7th"
### Context: CREATE TABLE table_name_85 (year VARCHAR, result VARCHAR) ### Question: What year did anna thompson have a 7th place result? ### Answer: SELECT year FROM table_name_85 WHERE result = "7th"
What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne, france with
CREATE TABLE table_name_22 (year INTEGER, result VARCHAR, extra VARCHAR, tournament VARCHAR, venue VARCHAR)
SELECT AVG(year) FROM table_name_22 WHERE tournament = "world cross country championships" AND venue = "st etienne, france" AND extra = "team competition" AND result = "8th"
### Context: CREATE TABLE table_name_22 (year INTEGER, result VARCHAR, extra VARCHAR, tournament VARCHAR, venue VARCHAR) ### Question: What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne, france with ### Answer: SELECT AVG(year) FROM table_name_22 WHERE tournament = "world cross country championships" AND venue = "st etienne, france" AND extra = "team competition" AND result = "8th"
What is the total matches in 2002 where points won is larger than 1.5 and the points % is smaller than 50?
CREATE TABLE table_name_4 (total_matches INTEGER, points__percentage VARCHAR, points_won VARCHAR, year VARCHAR)
SELECT MAX(total_matches) FROM table_name_4 WHERE points_won > 1.5 AND year = "2002" AND points__percentage < 50
### Context: CREATE TABLE table_name_4 (total_matches INTEGER, points__percentage VARCHAR, points_won VARCHAR, year VARCHAR) ### Question: What is the total matches in 2002 where points won is larger than 1.5 and the points % is smaller than 50? ### Answer: SELECT MAX(total_matches) FROM table_name_4 WHERE points_won > 1.5 AND year = "2002" AND points__percentage < 50