question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
How many base pairs are there in the tohamai strain?
|
CREATE TABLE table_name_90 (base_pairs VARCHAR, strain VARCHAR)
|
SELECT base_pairs FROM table_name_90 WHERE strain = "tohamai"
|
### Context: CREATE TABLE table_name_90 (base_pairs VARCHAR, strain VARCHAR) ### Question: How many base pairs are there in the tohamai strain? ### Answer: SELECT base_pairs FROM table_name_90 WHERE strain = "tohamai"
|
What was the home team score at junction oval?
|
CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR)
|
SELECT home_team AS score FROM table_name_86 WHERE venue = "junction oval"
|
### Context: CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team score at junction oval? ### Answer: SELECT home_team AS score FROM table_name_86 WHERE venue = "junction oval"
|
What was the away team score at western oval?
|
CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team AS score FROM table_name_46 WHERE venue = "western oval"
|
### Context: CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team score at western oval? ### Answer: SELECT away_team AS score FROM table_name_46 WHERE venue = "western oval"
|
what is the lowest crowd at kardinia park
|
CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)
|
SELECT MIN(crowd) FROM table_name_50 WHERE venue = "kardinia park"
|
### Context: CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR) ### Question: what is the lowest crowd at kardinia park ### Answer: SELECT MIN(crowd) FROM table_name_50 WHERE venue = "kardinia park"
|
What was the score for the tournament in Budapest?
|
CREATE TABLE table_name_14 (score VARCHAR, tournament VARCHAR)
|
SELECT score FROM table_name_14 WHERE tournament = "budapest"
|
### Context: CREATE TABLE table_name_14 (score VARCHAR, tournament VARCHAR) ### Question: What was the score for the tournament in Budapest? ### Answer: SELECT score FROM table_name_14 WHERE tournament = "budapest"
|
Which tournament did Patrick Rafter win?
|
CREATE TABLE table_name_96 (tournament VARCHAR, winner VARCHAR)
|
SELECT tournament FROM table_name_96 WHERE winner = "patrick rafter"
|
### Context: CREATE TABLE table_name_96 (tournament VARCHAR, winner VARCHAR) ### Question: Which tournament did Patrick Rafter win? ### Answer: SELECT tournament FROM table_name_96 WHERE winner = "patrick rafter"
|
Which winner won by a score of 6–7(4), 7–6(3), [11–9]?
|
CREATE TABLE table_name_60 (winner VARCHAR, score VARCHAR)
|
SELECT winner FROM table_name_60 WHERE score = "6–7(4), 7–6(3), [11–9]"
|
### Context: CREATE TABLE table_name_60 (winner VARCHAR, score VARCHAR) ### Question: Which winner won by a score of 6–7(4), 7–6(3), [11–9]? ### Answer: SELECT winner FROM table_name_60 WHERE score = "6–7(4), 7–6(3), [11–9]"
|
what was the score when goran ivanišević was runner up and the tournament was in algarve?
|
CREATE TABLE table_name_53 (score VARCHAR, runner_up VARCHAR, tournament VARCHAR)
|
SELECT score FROM table_name_53 WHERE runner_up = "goran ivanišević" AND tournament = "algarve"
|
### Context: CREATE TABLE table_name_53 (score VARCHAR, runner_up VARCHAR, tournament VARCHAR) ### Question: what was the score when goran ivanišević was runner up and the tournament was in algarve? ### Answer: SELECT score FROM table_name_53 WHERE runner_up = "goran ivanišević" AND tournament = "algarve"
|
What was the score when Stefan Edberg won?
|
CREATE TABLE table_name_64 (score VARCHAR, winner VARCHAR)
|
SELECT score FROM table_name_64 WHERE winner = "stefan edberg"
|
### Context: CREATE TABLE table_name_64 (score VARCHAR, winner VARCHAR) ### Question: What was the score when Stefan Edberg won? ### Answer: SELECT score FROM table_name_64 WHERE winner = "stefan edberg"
|
Which Date has an Away team of south melbourne?
|
CREATE TABLE table_name_42 (date VARCHAR, away_team VARCHAR)
|
SELECT date FROM table_name_42 WHERE away_team = "south melbourne"
|
### Context: CREATE TABLE table_name_42 (date VARCHAR, away_team VARCHAR) ### Question: Which Date has an Away team of south melbourne? ### Answer: SELECT date FROM table_name_42 WHERE away_team = "south melbourne"
|
What is the Away team score for mcg?
|
CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team AS score FROM table_name_26 WHERE venue = "mcg"
|
### Context: CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR) ### Question: What is the Away team score for mcg? ### Answer: SELECT away_team AS score FROM table_name_26 WHERE venue = "mcg"
|
What is the total Crowd with a Home team of collingwood?
|
CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)
|
SELECT SUM(crowd) FROM table_name_98 WHERE home_team = "collingwood"
|
### Context: CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR) ### Question: What is the total Crowd with a Home team of collingwood? ### Answer: SELECT SUM(crowd) FROM table_name_98 WHERE home_team = "collingwood"
|
When mcg is the Venue what's the Away team?
|
CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team FROM table_name_99 WHERE venue = "mcg"
|
### Context: CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR) ### Question: When mcg is the Venue what's the Away team? ### Answer: SELECT away_team FROM table_name_99 WHERE venue = "mcg"
|
When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd?
|
CREATE TABLE table_name_1 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)
|
SELECT crowd FROM table_name_1 WHERE date = "19 july 1980" AND away_team = "footscray"
|
### Context: CREATE TABLE table_name_1 (crowd VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd? ### Answer: SELECT crowd FROM table_name_1 WHERE date = "19 july 1980" AND away_team = "footscray"
|
When the Home team of collingwood played, what was the opposing Away team score?
|
CREATE TABLE table_name_49 (away_team VARCHAR, home_team VARCHAR)
|
SELECT away_team AS score FROM table_name_49 WHERE home_team = "collingwood"
|
### Context: CREATE TABLE table_name_49 (away_team VARCHAR, home_team VARCHAR) ### Question: When the Home team of collingwood played, what was the opposing Away team score? ### Answer: SELECT away_team AS score FROM table_name_49 WHERE home_team = "collingwood"
|
When the Crowd is larger than 23,327, what Home team is playing?
|
CREATE TABLE table_name_65 (home_team VARCHAR, crowd INTEGER)
|
SELECT home_team FROM table_name_65 WHERE crowd > 23 OFFSET 327
|
### Context: CREATE TABLE table_name_65 (home_team VARCHAR, crowd INTEGER) ### Question: When the Crowd is larger than 23,327, what Home team is playing? ### Answer: SELECT home_team FROM table_name_65 WHERE crowd > 23 OFFSET 327
|
When vfl park is the venue what's the Away team playing?
|
CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team FROM table_name_81 WHERE venue = "vfl park"
|
### Context: CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR) ### Question: When vfl park is the venue what's the Away team playing? ### Answer: SELECT away_team FROM table_name_81 WHERE venue = "vfl park"
|
If collingwood was the Home team, what Date did they play?
|
CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)
|
SELECT date FROM table_name_71 WHERE home_team = "collingwood"
|
### Context: CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR) ### Question: If collingwood was the Home team, what Date did they play? ### Answer: SELECT date FROM table_name_71 WHERE home_team = "collingwood"
|
Which club has a capacity of 25138?
|
CREATE TABLE table_name_4 (club VARCHAR, capacity VARCHAR)
|
SELECT club FROM table_name_4 WHERE capacity = "25138"
|
### Context: CREATE TABLE table_name_4 (club VARCHAR, capacity VARCHAR) ### Question: Which club has a capacity of 25138? ### Answer: SELECT club FROM table_name_4 WHERE capacity = "25138"
|
What Rank in Respective Divisions has a capacity of 4100?
|
CREATE TABLE table_name_60 (Rank VARCHAR, capacity VARCHAR)
|
SELECT Rank IN Respective AS divisions FROM table_name_60 WHERE capacity = "4100"
|
### Context: CREATE TABLE table_name_60 (Rank VARCHAR, capacity VARCHAR) ### Question: What Rank in Respective Divisions has a capacity of 4100? ### Answer: SELECT Rank IN Respective AS divisions FROM table_name_60 WHERE capacity = "4100"
|
What stadium has a club of west ham united?
|
CREATE TABLE table_name_76 (stadium VARCHAR, club VARCHAR)
|
SELECT stadium FROM table_name_76 WHERE club = "west ham united"
|
### Context: CREATE TABLE table_name_76 (stadium VARCHAR, club VARCHAR) ### Question: What stadium has a club of west ham united? ### Answer: SELECT stadium FROM table_name_76 WHERE club = "west ham united"
|
What was the result of week 16?
|
CREATE TABLE table_name_73 (result VARCHAR, week VARCHAR)
|
SELECT result FROM table_name_73 WHERE week = 16
|
### Context: CREATE TABLE table_name_73 (result VARCHAR, week VARCHAR) ### Question: What was the result of week 16? ### Answer: SELECT result FROM table_name_73 WHERE week = 16
|
What is the date of the game with a score of 4-3?
|
CREATE TABLE table_name_41 (date VARCHAR, score VARCHAR)
|
SELECT date FROM table_name_41 WHERE score = "4-3"
|
### Context: CREATE TABLE table_name_41 (date VARCHAR, score VARCHAR) ### Question: What is the date of the game with a score of 4-3? ### Answer: SELECT date FROM table_name_41 WHERE score = "4-3"
|
What is the score of the game on 8 Sep 1990?
|
CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_92 WHERE date = "8 sep 1990"
|
### Context: CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR) ### Question: What is the score of the game on 8 Sep 1990? ### Answer: SELECT score FROM table_name_92 WHERE date = "8 sep 1990"
|
Who is the opposition on the division 1 game at Stamford Bridge?
|
CREATE TABLE table_name_64 (opposition VARCHAR, competition VARCHAR, venue VARCHAR)
|
SELECT opposition FROM table_name_64 WHERE competition = "division 1" AND venue = "stamford bridge"
|
### Context: CREATE TABLE table_name_64 (opposition VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: Who is the opposition on the division 1 game at Stamford Bridge? ### Answer: SELECT opposition FROM table_name_64 WHERE competition = "division 1" AND venue = "stamford bridge"
|
Which rank has a total less than 9, less than 2 bronze, and from France?
|
CREATE TABLE table_name_26 (rank VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)
|
SELECT rank FROM table_name_26 WHERE total < 9 AND bronze < 2 AND nation = "france"
|
### Context: CREATE TABLE table_name_26 (rank VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: Which rank has a total less than 9, less than 2 bronze, and from France? ### Answer: SELECT rank FROM table_name_26 WHERE total < 9 AND bronze < 2 AND nation = "france"
|
Which rank has more than 1 silver, more than 1 gold, and more than 4 bronze?
|
CREATE TABLE table_name_25 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR)
|
SELECT rank FROM table_name_25 WHERE silver > 1 AND gold > 1 AND bronze > 4
|
### Context: CREATE TABLE table_name_25 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR) ### Question: Which rank has more than 1 silver, more than 1 gold, and more than 4 bronze? ### Answer: SELECT rank FROM table_name_25 WHERE silver > 1 AND gold > 1 AND bronze > 4
|
How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0?
|
CREATE TABLE table_name_71 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR)
|
SELECT MAX(silver) FROM table_name_71 WHERE total < 3 AND bronze = 1 AND gold > 0
|
### Context: CREATE TABLE table_name_71 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0? ### Answer: SELECT MAX(silver) FROM table_name_71 WHERE total < 3 AND bronze = 1 AND gold > 0
|
How many gold have a National of New Zealand with a total less than 2?
|
CREATE TABLE table_name_15 (gold INTEGER, nation VARCHAR, total VARCHAR)
|
SELECT SUM(gold) FROM table_name_15 WHERE nation = "new zealand" AND total < 2
|
### Context: CREATE TABLE table_name_15 (gold INTEGER, nation VARCHAR, total VARCHAR) ### Question: How many gold have a National of New Zealand with a total less than 2? ### Answer: SELECT SUM(gold) FROM table_name_15 WHERE nation = "new zealand" AND total < 2
|
Who won in 2003?
|
CREATE TABLE table_name_19 (winner VARCHAR, year VARCHAR)
|
SELECT winner FROM table_name_19 WHERE year = 2003
|
### Context: CREATE TABLE table_name_19 (winner VARCHAR, year VARCHAR) ### Question: Who won in 2003? ### Answer: SELECT winner FROM table_name_19 WHERE year = 2003
|
What is the average year for scatman winning?
|
CREATE TABLE table_name_58 (year INTEGER, winner VARCHAR)
|
SELECT AVG(year) FROM table_name_58 WHERE winner = "scatman"
|
### Context: CREATE TABLE table_name_58 (year INTEGER, winner VARCHAR) ### Question: What is the average year for scatman winning? ### Answer: SELECT AVG(year) FROM table_name_58 WHERE winner = "scatman"
|
Who trained the horse with time of 1:09.40?
|
CREATE TABLE table_name_24 (trainer VARCHAR, time VARCHAR)
|
SELECT trainer FROM table_name_24 WHERE time = "1:09.40"
|
### Context: CREATE TABLE table_name_24 (trainer VARCHAR, time VARCHAR) ### Question: Who trained the horse with time of 1:09.40? ### Answer: SELECT trainer FROM table_name_24 WHERE time = "1:09.40"
|
Where was the mediterranean games held?
|
CREATE TABLE table_name_83 (venue VARCHAR, tournament VARCHAR)
|
SELECT venue FROM table_name_83 WHERE tournament = "mediterranean games"
|
### Context: CREATE TABLE table_name_83 (venue VARCHAR, tournament VARCHAR) ### Question: Where was the mediterranean games held? ### Answer: SELECT venue FROM table_name_83 WHERE tournament = "mediterranean games"
|
When was the last time a venue was held in turin, italy?
|
CREATE TABLE table_name_75 (year INTEGER, venue VARCHAR)
|
SELECT MAX(year) FROM table_name_75 WHERE venue = "turin, italy"
|
### Context: CREATE TABLE table_name_75 (year INTEGER, venue VARCHAR) ### Question: When was the last time a venue was held in turin, italy? ### Answer: SELECT MAX(year) FROM table_name_75 WHERE venue = "turin, italy"
|
Where was the universiade held in 1959?
|
CREATE TABLE table_name_3 (venue VARCHAR, tournament VARCHAR, year VARCHAR)
|
SELECT venue FROM table_name_3 WHERE tournament = "universiade" AND year = 1959
|
### Context: CREATE TABLE table_name_3 (venue VARCHAR, tournament VARCHAR, year VARCHAR) ### Question: Where was the universiade held in 1959? ### Answer: SELECT venue FROM table_name_3 WHERE tournament = "universiade" AND year = 1959
|
How many year was the venue in stockholm, sweden used?
|
CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR)
|
SELECT COUNT(year) FROM table_name_65 WHERE venue = "stockholm, sweden"
|
### Context: CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR) ### Question: How many year was the venue in stockholm, sweden used? ### Answer: SELECT COUNT(year) FROM table_name_65 WHERE venue = "stockholm, sweden"
|
What is a report for a race with Baconin Borzacchini in Tripoli in a year after 1928?
|
CREATE TABLE table_name_21 (report VARCHAR, driver VARCHAR, location VARCHAR, year VARCHAR)
|
SELECT report FROM table_name_21 WHERE location = "tripoli" AND year > 1928 AND driver = "baconin borzacchini"
|
### Context: CREATE TABLE table_name_21 (report VARCHAR, driver VARCHAR, location VARCHAR, year VARCHAR) ### Question: What is a report for a race with Baconin Borzacchini in Tripoli in a year after 1928? ### Answer: SELECT report FROM table_name_21 WHERE location = "tripoli" AND year > 1928 AND driver = "baconin borzacchini"
|
What was the constructor of the car that Achille Varzi drove before 1937?
|
CREATE TABLE table_name_2 (constructor VARCHAR, year VARCHAR, driver VARCHAR)
|
SELECT constructor FROM table_name_2 WHERE year < 1937 AND driver = "achille varzi"
|
### Context: CREATE TABLE table_name_2 (constructor VARCHAR, year VARCHAR, driver VARCHAR) ### Question: What was the constructor of the car that Achille Varzi drove before 1937? ### Answer: SELECT constructor FROM table_name_2 WHERE year < 1937 AND driver = "achille varzi"
|
What was the constructor of the car that Hermann Lang drove after 1935?
|
CREATE TABLE table_name_89 (constructor VARCHAR, year VARCHAR, driver VARCHAR)
|
SELECT constructor FROM table_name_89 WHERE year > 1935 AND driver = "hermann lang"
|
### Context: CREATE TABLE table_name_89 (constructor VARCHAR, year VARCHAR, driver VARCHAR) ### Question: What was the constructor of the car that Hermann Lang drove after 1935? ### Answer: SELECT constructor FROM table_name_89 WHERE year > 1935 AND driver = "hermann lang"
|
What is the Works Number that has a Number of 153 in 1916?
|
CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, number VARCHAR)
|
SELECT works_number FROM table_name_39 WHERE date = "1916" AND number = "153"
|
### Context: CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, number VARCHAR) ### Question: What is the Works Number that has a Number of 153 in 1916? ### Answer: SELECT works_number FROM table_name_39 WHERE date = "1916" AND number = "153"
|
On what Date was the Works Number 7?
|
CREATE TABLE table_name_18 (date VARCHAR, works_number VARCHAR)
|
SELECT date FROM table_name_18 WHERE works_number = "7"
|
### Context: CREATE TABLE table_name_18 (date VARCHAR, works_number VARCHAR) ### Question: On what Date was the Works Number 7? ### Answer: SELECT date FROM table_name_18 WHERE works_number = "7"
|
Which Builder has a Works Number of 16272?
|
CREATE TABLE table_name_86 (builder VARCHAR, works_number VARCHAR)
|
SELECT builder FROM table_name_86 WHERE works_number = "16272"
|
### Context: CREATE TABLE table_name_86 (builder VARCHAR, works_number VARCHAR) ### Question: Which Builder has a Works Number of 16272? ### Answer: SELECT builder FROM table_name_86 WHERE works_number = "16272"
|
On what Date was the Works Number 12?
|
CREATE TABLE table_name_99 (date VARCHAR, works_number VARCHAR)
|
SELECT date FROM table_name_99 WHERE works_number = "12"
|
### Context: CREATE TABLE table_name_99 (date VARCHAR, works_number VARCHAR) ### Question: On what Date was the Works Number 12? ### Answer: SELECT date FROM table_name_99 WHERE works_number = "12"
|
Where did South Melbourne play as the home team?
|
CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR)
|
SELECT venue FROM table_name_72 WHERE home_team = "south melbourne"
|
### Context: CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR) ### Question: Where did South Melbourne play as the home team? ### Answer: SELECT venue FROM table_name_72 WHERE home_team = "south melbourne"
|
What was the attendance when St Kilda played as the home team?
|
CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR)
|
SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = "st kilda"
|
### Context: CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the attendance when St Kilda played as the home team? ### Answer: SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = "st kilda"
|
Which driver had a grid number of 18?
|
CREATE TABLE table_name_55 (driver VARCHAR, grid VARCHAR)
|
SELECT driver FROM table_name_55 WHERE grid = "18"
|
### Context: CREATE TABLE table_name_55 (driver VARCHAR, grid VARCHAR) ### Question: Which driver had a grid number of 18? ### Answer: SELECT driver FROM table_name_55 WHERE grid = "18"
|
Which constructor had Shinji Nakano as a driver?
|
CREATE TABLE table_name_71 (constructor VARCHAR, driver VARCHAR)
|
SELECT constructor FROM table_name_71 WHERE driver = "shinji nakano"
|
### Context: CREATE TABLE table_name_71 (constructor VARCHAR, driver VARCHAR) ### Question: Which constructor had Shinji Nakano as a driver? ### Answer: SELECT constructor FROM table_name_71 WHERE driver = "shinji nakano"
|
What was the home team score at Glenferrie Oval?
|
CREATE TABLE table_name_10 (home_team VARCHAR, venue VARCHAR)
|
SELECT home_team AS score FROM table_name_10 WHERE venue = "glenferrie oval"
|
### Context: CREATE TABLE table_name_10 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team score at Glenferrie Oval? ### Answer: SELECT home_team AS score FROM table_name_10 WHERE venue = "glenferrie oval"
|
What date has a Data of 19:29?
|
CREATE TABLE table_name_39 (date VARCHAR, data VARCHAR)
|
SELECT date FROM table_name_39 WHERE data = "19:29"
|
### Context: CREATE TABLE table_name_39 (date VARCHAR, data VARCHAR) ### Question: What date has a Data of 19:29? ### Answer: SELECT date FROM table_name_39 WHERE data = "19:29"
|
Which athlete has a 35 km event?
|
CREATE TABLE table_name_74 (athlete VARCHAR, event VARCHAR)
|
SELECT athlete FROM table_name_74 WHERE event = "35 km"
|
### Context: CREATE TABLE table_name_74 (athlete VARCHAR, event VARCHAR) ### Question: Which athlete has a 35 km event? ### Answer: SELECT athlete FROM table_name_74 WHERE event = "35 km"
|
What nation is the cyclist from team discovery channel?
|
CREATE TABLE table_name_22 (nation VARCHAR, team VARCHAR)
|
SELECT nation FROM table_name_22 WHERE team = "discovery channel"
|
### Context: CREATE TABLE table_name_22 (nation VARCHAR, team VARCHAR) ### Question: What nation is the cyclist from team discovery channel? ### Answer: SELECT nation FROM table_name_22 WHERE team = "discovery channel"
|
What nation is the cyclist hat has a UCI ProTour Points of 25?
|
CREATE TABLE table_name_95 (nation VARCHAR, uci_protour_points VARCHAR)
|
SELECT nation FROM table_name_95 WHERE uci_protour_points = 25
|
### Context: CREATE TABLE table_name_95 (nation VARCHAR, uci_protour_points VARCHAR) ### Question: What nation is the cyclist hat has a UCI ProTour Points of 25? ### Answer: SELECT nation FROM table_name_95 WHERE uci_protour_points = 25
|
What day did the VFL play Punt Road Oval?
|
CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)
|
SELECT date FROM table_name_59 WHERE venue = "punt road oval"
|
### Context: CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR) ### Question: What day did the VFL play Punt Road Oval? ### Answer: SELECT date FROM table_name_59 WHERE venue = "punt road oval"
|
What was the home teams score at Western Oval?
|
CREATE TABLE table_name_74 (home_team VARCHAR, venue VARCHAR)
|
SELECT home_team AS score FROM table_name_74 WHERE venue = "western oval"
|
### Context: CREATE TABLE table_name_74 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home teams score at Western Oval? ### Answer: SELECT home_team AS score FROM table_name_74 WHERE venue = "western oval"
|
What is the first prize amount of the person who has a score of 207 (-9) and a purse amount of more than 800,000?
|
CREATE TABLE table_name_54 (score VARCHAR, purse__$__ VARCHAR)
|
SELECT COUNT(1 AS st_prize__) AS $__ FROM table_name_54 WHERE score = "207 (-9)" AND purse__$__ > 800 OFFSET 000
|
### Context: CREATE TABLE table_name_54 (score VARCHAR, purse__$__ VARCHAR) ### Question: What is the first prize amount of the person who has a score of 207 (-9) and a purse amount of more than 800,000? ### Answer: SELECT COUNT(1 AS st_prize__) AS $__ FROM table_name_54 WHERE score = "207 (-9)" AND purse__$__ > 800 OFFSET 000
|
What is the ISBN of the book with a first edition in May 2011?
|
CREATE TABLE table_name_42 (isbn VARCHAR, first_edition VARCHAR)
|
SELECT isbn FROM table_name_42 WHERE first_edition = "may 2011"
|
### Context: CREATE TABLE table_name_42 (isbn VARCHAR, first_edition VARCHAR) ### Question: What is the ISBN of the book with a first edition in May 2011? ### Answer: SELECT isbn FROM table_name_42 WHERE first_edition = "may 2011"
|
Which first edition has an ISBN of 978-0785166252?
|
CREATE TABLE table_name_50 (first_edition VARCHAR, isbn VARCHAR)
|
SELECT first_edition FROM table_name_50 WHERE isbn = "978-0785166252"
|
### Context: CREATE TABLE table_name_50 (first_edition VARCHAR, isbn VARCHAR) ### Question: Which first edition has an ISBN of 978-0785166252? ### Answer: SELECT first_edition FROM table_name_50 WHERE isbn = "978-0785166252"
|
Which first edition has 264 pages and the ISBN of 978-0785111832?
|
CREATE TABLE table_name_60 (first_edition VARCHAR, pages VARCHAR, isbn VARCHAR)
|
SELECT first_edition FROM table_name_60 WHERE pages = "264" AND isbn = "978-0785111832"
|
### Context: CREATE TABLE table_name_60 (first_edition VARCHAR, pages VARCHAR, isbn VARCHAR) ### Question: Which first edition has 264 pages and the ISBN of 978-0785111832? ### Answer: SELECT first_edition FROM table_name_60 WHERE pages = "264" AND isbn = "978-0785111832"
|
How many people were in the crowd at collingwood's home game?
|
CREATE TABLE table_name_46 (crowd INTEGER, home_team VARCHAR)
|
SELECT SUM(crowd) FROM table_name_46 WHERE home_team = "collingwood"
|
### Context: CREATE TABLE table_name_46 (crowd INTEGER, home_team VARCHAR) ### Question: How many people were in the crowd at collingwood's home game? ### Answer: SELECT SUM(crowd) FROM table_name_46 WHERE home_team = "collingwood"
|
What did the away team score when playing against fitzroy?
|
CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR)
|
SELECT away_team AS score FROM table_name_62 WHERE home_team = "fitzroy"
|
### Context: CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR) ### Question: What did the away team score when playing against fitzroy? ### Answer: SELECT away_team AS score FROM table_name_62 WHERE home_team = "fitzroy"
|
What is the serial number of the pilot car that is black, has a pilot car number larger than 2, and an engine number of 1008?
|
CREATE TABLE table_name_71 (serial_no VARCHAR, engine_no VARCHAR, colour VARCHAR, pilot_car_no VARCHAR)
|
SELECT serial_no FROM table_name_71 WHERE colour = "black" AND pilot_car_no > 2 AND engine_no = 1008
|
### Context: CREATE TABLE table_name_71 (serial_no VARCHAR, engine_no VARCHAR, colour VARCHAR, pilot_car_no VARCHAR) ### Question: What is the serial number of the pilot car that is black, has a pilot car number larger than 2, and an engine number of 1008? ### Answer: SELECT serial_no FROM table_name_71 WHERE colour = "black" AND pilot_car_no > 2 AND engine_no = 1008
|
What is the low lap total that has a Time or Retired of accident?
|
CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR)
|
SELECT MIN(laps) FROM table_name_35 WHERE time_retired = "accident"
|
### Context: CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR) ### Question: What is the low lap total that has a Time or Retired of accident? ### Answer: SELECT MIN(laps) FROM table_name_35 WHERE time_retired = "accident"
|
Which player was a fly-half?
|
CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR)
|
SELECT player FROM table_name_79 WHERE position = "fly-half"
|
### Context: CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR) ### Question: Which player was a fly-half? ### Answer: SELECT player FROM table_name_79 WHERE position = "fly-half"
|
What is the mean number of caps for Ryota Asano?
|
CREATE TABLE table_name_36 (caps INTEGER, player VARCHAR)
|
SELECT AVG(caps) FROM table_name_36 WHERE player = "ryota asano"
|
### Context: CREATE TABLE table_name_36 (caps INTEGER, player VARCHAR) ### Question: What is the mean number of caps for Ryota Asano? ### Answer: SELECT AVG(caps) FROM table_name_36 WHERE player = "ryota asano"
|
What is the mean number of caps for Ryota Asano?
|
CREATE TABLE table_name_67 (caps INTEGER, player VARCHAR)
|
SELECT AVG(caps) FROM table_name_67 WHERE player = "ryota asano"
|
### Context: CREATE TABLE table_name_67 (caps INTEGER, player VARCHAR) ### Question: What is the mean number of caps for Ryota Asano? ### Answer: SELECT AVG(caps) FROM table_name_67 WHERE player = "ryota asano"
|
Who is the forward from Grambling State?
|
CREATE TABLE table_name_24 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
|
SELECT player FROM table_name_24 WHERE position = "forward" AND school_club_team = "grambling state"
|
### Context: CREATE TABLE table_name_24 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) ### Question: Who is the forward from Grambling State? ### Answer: SELECT player FROM table_name_24 WHERE position = "forward" AND school_club_team = "grambling state"
|
What is the nationality of the guard who plays at Utah?
|
CREATE TABLE table_name_96 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
|
SELECT nationality FROM table_name_96 WHERE position = "guard" AND school_club_team = "utah"
|
### Context: CREATE TABLE table_name_96 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR) ### Question: What is the nationality of the guard who plays at Utah? ### Answer: SELECT nationality FROM table_name_96 WHERE position = "guard" AND school_club_team = "utah"
|
What is the position of the player from Tampa?
|
CREATE TABLE table_name_14 (position VARCHAR, school_club_team VARCHAR)
|
SELECT position FROM table_name_14 WHERE school_club_team = "tampa"
|
### Context: CREATE TABLE table_name_14 (position VARCHAR, school_club_team VARCHAR) ### Question: What is the position of the player from Tampa? ### Answer: SELECT position FROM table_name_14 WHERE school_club_team = "tampa"
|
What is the nationality of the player on the Jazz from 1974-79?
|
CREATE TABLE table_name_73 (nationality VARCHAR, years_for_jazz VARCHAR)
|
SELECT nationality FROM table_name_73 WHERE years_for_jazz = "1974-79"
|
### Context: CREATE TABLE table_name_73 (nationality VARCHAR, years_for_jazz VARCHAR) ### Question: What is the nationality of the player on the Jazz from 1974-79? ### Answer: SELECT nationality FROM table_name_73 WHERE years_for_jazz = "1974-79"
|
Who is the player who went to school at Tampa?
|
CREATE TABLE table_name_91 (player VARCHAR, school_club_team VARCHAR)
|
SELECT player FROM table_name_91 WHERE school_club_team = "tampa"
|
### Context: CREATE TABLE table_name_91 (player VARCHAR, school_club_team VARCHAR) ### Question: Who is the player who went to school at Tampa? ### Answer: SELECT player FROM table_name_91 WHERE school_club_team = "tampa"
|
What is the nationality of the player on the Jazz from 1974-79?
|
CREATE TABLE table_name_60 (nationality VARCHAR, years_for_jazz VARCHAR)
|
SELECT nationality FROM table_name_60 WHERE years_for_jazz = "1974-79"
|
### Context: CREATE TABLE table_name_60 (nationality VARCHAR, years_for_jazz VARCHAR) ### Question: What is the nationality of the player on the Jazz from 1974-79? ### Answer: SELECT nationality FROM table_name_60 WHERE years_for_jazz = "1974-79"
|
What was the score of the away team at the the glenferrie oval?
|
CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)
|
SELECT away_team AS score FROM table_name_67 WHERE venue = "glenferrie oval"
|
### Context: CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR) ### Question: What was the score of the away team at the the glenferrie oval? ### Answer: SELECT away_team AS score FROM table_name_67 WHERE venue = "glenferrie oval"
|
What institution is located in athens, ga, us?
|
CREATE TABLE table_name_55 (institution VARCHAR, location VARCHAR)
|
SELECT institution FROM table_name_55 WHERE location = "athens, ga, us"
|
### Context: CREATE TABLE table_name_55 (institution VARCHAR, location VARCHAR) ### Question: What institution is located in athens, ga, us? ### Answer: SELECT institution FROM table_name_55 WHERE location = "athens, ga, us"
|
What is the status of the institution that was founded in 1996?
|
CREATE TABLE table_name_64 (status VARCHAR, founded VARCHAR)
|
SELECT status FROM table_name_64 WHERE founded = 1996
|
### Context: CREATE TABLE table_name_64 (status VARCHAR, founded VARCHAR) ### Question: What is the status of the institution that was founded in 1996? ### Answer: SELECT status FROM table_name_64 WHERE founded = 1996
|
During runs 332, what was the venue?
|
CREATE TABLE table_name_60 (venue VARCHAR, runs VARCHAR)
|
SELECT venue FROM table_name_60 WHERE runs = "332"
|
### Context: CREATE TABLE table_name_60 (venue VARCHAR, runs VARCHAR) ### Question: During runs 332, what was the venue? ### Answer: SELECT venue FROM table_name_60 WHERE runs = "332"
|
Which player's runs are 270?
|
CREATE TABLE table_name_43 (player VARCHAR, runs VARCHAR)
|
SELECT player FROM table_name_43 WHERE runs = "270"
|
### Context: CREATE TABLE table_name_43 (player VARCHAR, runs VARCHAR) ### Question: Which player's runs are 270? ### Answer: SELECT player FROM table_name_43 WHERE runs = "270"
|
During season 1935, what was the venue?
|
CREATE TABLE table_name_92 (venue VARCHAR, season VARCHAR)
|
SELECT venue FROM table_name_92 WHERE season = "1935"
|
### Context: CREATE TABLE table_name_92 (venue VARCHAR, season VARCHAR) ### Question: During season 1935, what was the venue? ### Answer: SELECT venue FROM table_name_92 WHERE season = "1935"
|
For player Les Ames, what was the venue?
|
CREATE TABLE table_name_29 (venue VARCHAR, player VARCHAR)
|
SELECT venue FROM table_name_29 WHERE player = "les ames"
|
### Context: CREATE TABLE table_name_29 (venue VARCHAR, player VARCHAR) ### Question: For player Les Ames, what was the venue? ### Answer: SELECT venue FROM table_name_29 WHERE player = "les ames"
|
When was the Austrian Grand Prix?
|
CREATE TABLE table_name_7 (date VARCHAR, grand_prix VARCHAR)
|
SELECT date FROM table_name_7 WHERE grand_prix = "austrian grand prix"
|
### Context: CREATE TABLE table_name_7 (date VARCHAR, grand_prix VARCHAR) ### Question: When was the Austrian Grand Prix? ### Answer: SELECT date FROM table_name_7 WHERE grand_prix = "austrian grand prix"
|
How many points has a draw greater than 3 and 3rd place?
|
CREATE TABLE table_name_24 (points VARCHAR, draw VARCHAR, place VARCHAR)
|
SELECT points FROM table_name_24 WHERE draw > 3 AND place = 3
|
### Context: CREATE TABLE table_name_24 (points VARCHAR, draw VARCHAR, place VARCHAR) ### Question: How many points has a draw greater than 3 and 3rd place? ### Answer: SELECT points FROM table_name_24 WHERE draw > 3 AND place = 3
|
Name the average events for miller barber
|
CREATE TABLE table_name_27 (events INTEGER, player VARCHAR)
|
SELECT AVG(events) FROM table_name_27 WHERE player = "miller barber"
|
### Context: CREATE TABLE table_name_27 (events INTEGER, player VARCHAR) ### Question: Name the average events for miller barber ### Answer: SELECT AVG(events) FROM table_name_27 WHERE player = "miller barber"
|
Name the most wins for earnings of 130,002
|
CREATE TABLE table_name_86 (wins INTEGER, earnings___$__ VARCHAR)
|
SELECT MAX(wins) FROM table_name_86 WHERE earnings___$__ = 130 OFFSET 002
|
### Context: CREATE TABLE table_name_86 (wins INTEGER, earnings___$__ VARCHAR) ### Question: Name the most wins for earnings of 130,002 ### Answer: SELECT MAX(wins) FROM table_name_86 WHERE earnings___$__ = 130 OFFSET 002
|
What year was Neverchanger with the label of Latenight weeknight?
|
CREATE TABLE table_name_70 (year VARCHAR, label VARCHAR, release_title VARCHAR)
|
SELECT year FROM table_name_70 WHERE label = "latenight weeknight" AND release_title = "neverchanger"
|
### Context: CREATE TABLE table_name_70 (year VARCHAR, label VARCHAR, release_title VARCHAR) ### Question: What year was Neverchanger with the label of Latenight weeknight? ### Answer: SELECT year FROM table_name_70 WHERE label = "latenight weeknight" AND release_title = "neverchanger"
|
What year was Ethereal 77, which has a CD album release type?
|
CREATE TABLE table_name_26 (year VARCHAR, release_type VARCHAR, released_as VARCHAR)
|
SELECT year FROM table_name_26 WHERE release_type = "cd album" AND released_as = "ethereal 77"
|
### Context: CREATE TABLE table_name_26 (year VARCHAR, release_type VARCHAR, released_as VARCHAR) ### Question: What year was Ethereal 77, which has a CD album release type? ### Answer: SELECT year FROM table_name_26 WHERE release_type = "cd album" AND released_as = "ethereal 77"
|
what is the platform when the frequency (per hour) is 4 and the destination is west croydon?
|
CREATE TABLE table_name_98 (platform INTEGER, frequency__per_hour_ VARCHAR, destination VARCHAR)
|
SELECT SUM(platform) FROM table_name_98 WHERE frequency__per_hour_ = 4 AND destination = "west croydon"
|
### Context: CREATE TABLE table_name_98 (platform INTEGER, frequency__per_hour_ VARCHAR, destination VARCHAR) ### Question: what is the platform when the frequency (per hour) is 4 and the destination is west croydon? ### Answer: SELECT SUM(platform) FROM table_name_98 WHERE frequency__per_hour_ = 4 AND destination = "west croydon"
|
what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon?
|
CREATE TABLE table_name_32 (platform INTEGER, destination VARCHAR, frequency__per_hour_ VARCHAR, operator VARCHAR)
|
SELECT MAX(platform) FROM table_name_32 WHERE frequency__per_hour_ = 4 AND operator = "london overground" AND destination = "west croydon"
|
### Context: CREATE TABLE table_name_32 (platform INTEGER, destination VARCHAR, frequency__per_hour_ VARCHAR, operator VARCHAR) ### Question: what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon? ### Answer: SELECT MAX(platform) FROM table_name_32 WHERE frequency__per_hour_ = 4 AND operator = "london overground" AND destination = "west croydon"
|
What is the name of the team with a qual 1 time of 1:17.481?
|
CREATE TABLE table_name_77 (team VARCHAR, qual_1 VARCHAR)
|
SELECT team FROM table_name_77 WHERE qual_1 = "1:17.481"
|
### Context: CREATE TABLE table_name_77 (team VARCHAR, qual_1 VARCHAR) ### Question: What is the name of the team with a qual 1 time of 1:17.481? ### Answer: SELECT team FROM table_name_77 WHERE qual_1 = "1:17.481"
|
What is the qual 1 for the best of 1:18.067?
|
CREATE TABLE table_name_49 (qual_1 VARCHAR, best VARCHAR)
|
SELECT qual_1 FROM table_name_49 WHERE best = "1:18.067"
|
### Context: CREATE TABLE table_name_49 (qual_1 VARCHAR, best VARCHAR) ### Question: What is the qual 1 for the best of 1:18.067? ### Answer: SELECT qual_1 FROM table_name_49 WHERE best = "1:18.067"
|
What is the qual 1 when the qual 2 has no time and the best is 1:16.776?
|
CREATE TABLE table_name_94 (qual_1 VARCHAR, qual_2 VARCHAR, best VARCHAR)
|
SELECT qual_1 FROM table_name_94 WHERE qual_2 = "no time" AND best = "1:16.776"
|
### Context: CREATE TABLE table_name_94 (qual_1 VARCHAR, qual_2 VARCHAR, best VARCHAR) ### Question: What is the qual 1 when the qual 2 has no time and the best is 1:16.776? ### Answer: SELECT qual_1 FROM table_name_94 WHERE qual_2 = "no time" AND best = "1:16.776"
|
What person on team Minardi Team USA with a qual of 1:17.481?
|
CREATE TABLE table_name_59 (name VARCHAR, team VARCHAR, qual_1 VARCHAR)
|
SELECT name FROM table_name_59 WHERE team = "minardi team usa" AND qual_1 = "1:17.481"
|
### Context: CREATE TABLE table_name_59 (name VARCHAR, team VARCHAR, qual_1 VARCHAR) ### Question: What person on team Minardi Team USA with a qual of 1:17.481? ### Answer: SELECT name FROM table_name_59 WHERE team = "minardi team usa" AND qual_1 = "1:17.481"
|
What is the name of the person with a qual 1 time of 1:16.850?
|
CREATE TABLE table_name_2 (name VARCHAR, qual_1 VARCHAR)
|
SELECT name FROM table_name_2 WHERE qual_1 = "1:16.850"
|
### Context: CREATE TABLE table_name_2 (name VARCHAR, qual_1 VARCHAR) ### Question: What is the name of the person with a qual 1 time of 1:16.850? ### Answer: SELECT name FROM table_name_2 WHERE qual_1 = "1:16.850"
|
What is the qual 2 when the qual 1 is 1:16.841?
|
CREATE TABLE table_name_49 (qual_2 VARCHAR, qual_1 VARCHAR)
|
SELECT qual_2 FROM table_name_49 WHERE qual_1 = "1:16.841"
|
### Context: CREATE TABLE table_name_49 (qual_2 VARCHAR, qual_1 VARCHAR) ### Question: What is the qual 2 when the qual 1 is 1:16.841? ### Answer: SELECT qual_2 FROM table_name_49 WHERE qual_1 = "1:16.841"
|
Who is the Monarch whose Heir is Robert Curthose when the Reason is that the father became king?
|
CREATE TABLE table_name_67 (monarch VARCHAR, heir VARCHAR, reason VARCHAR)
|
SELECT monarch FROM table_name_67 WHERE heir = "robert curthose" AND reason = "father became king"
|
### Context: CREATE TABLE table_name_67 (monarch VARCHAR, heir VARCHAR, reason VARCHAR) ### Question: Who is the Monarch whose Heir is Robert Curthose when the Reason is that the father became king? ### Answer: SELECT monarch FROM table_name_67 WHERE heir = "robert curthose" AND reason = "father became king"
|
Which Monarch has succession unclear 1100-1103 as his Status?
|
CREATE TABLE table_name_60 (monarch VARCHAR, status VARCHAR)
|
SELECT monarch FROM table_name_60 WHERE status = "succession unclear 1100-1103"
|
### Context: CREATE TABLE table_name_60 (monarch VARCHAR, status VARCHAR) ### Question: Which Monarch has succession unclear 1100-1103 as his Status? ### Answer: SELECT monarch FROM table_name_60 WHERE status = "succession unclear 1100-1103"
|
Which Reason is given when 1103 is the date for Became heir?
|
CREATE TABLE table_name_7 (reason VARCHAR, became_heir VARCHAR)
|
SELECT reason FROM table_name_7 WHERE became_heir = "1103"
|
### Context: CREATE TABLE table_name_7 (reason VARCHAR, became_heir VARCHAR) ### Question: Which Reason is given when 1103 is the date for Became heir? ### Answer: SELECT reason FROM table_name_7 WHERE became_heir = "1103"
|
What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103?
|
CREATE TABLE table_name_11 (status VARCHAR, monarch VARCHAR, reason VARCHAR)
|
SELECT status FROM table_name_11 WHERE monarch = "henry i" AND reason = "succession unclear 1100-1103"
|
### Context: CREATE TABLE table_name_11 (status VARCHAR, monarch VARCHAR, reason VARCHAR) ### Question: What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103? ### Answer: SELECT status FROM table_name_11 WHERE monarch = "henry i" AND reason = "succession unclear 1100-1103"
|
Name the tyre for hb bewaking team ensign with rounds of 13
|
CREATE TABLE table_name_31 (tyre VARCHAR, entrant VARCHAR, rounds VARCHAR)
|
SELECT tyre FROM table_name_31 WHERE entrant = "hb bewaking team ensign" AND rounds = "13"
|
### Context: CREATE TABLE table_name_31 (tyre VARCHAR, entrant VARCHAR, rounds VARCHAR) ### Question: Name the tyre for hb bewaking team ensign with rounds of 13 ### Answer: SELECT tyre FROM table_name_31 WHERE entrant = "hb bewaking team ensign" AND rounds = "13"
|
Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751
|
CREATE TABLE table_name_90 (rounds VARCHAR, engine VARCHAR, chassis VARCHAR)
|
SELECT rounds FROM table_name_90 WHERE engine = "ford cosworth dfv 3.0 v8" AND chassis = "751"
|
### Context: CREATE TABLE table_name_90 (rounds VARCHAR, engine VARCHAR, chassis VARCHAR) ### Question: Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751 ### Answer: SELECT rounds FROM table_name_90 WHERE engine = "ford cosworth dfv 3.0 v8" AND chassis = "751"
|
Name the chassis for tyre of g and carlos reutemann
|
CREATE TABLE table_name_24 (chassis VARCHAR, tyre VARCHAR, driver VARCHAR)
|
SELECT chassis FROM table_name_24 WHERE tyre = "g" AND driver = "carlos reutemann"
|
### Context: CREATE TABLE table_name_24 (chassis VARCHAR, tyre VARCHAR, driver VARCHAR) ### Question: Name the chassis for tyre of g and carlos reutemann ### Answer: SELECT chassis FROM table_name_24 WHERE tyre = "g" AND driver = "carlos reutemann"
|
Name the entrant for chassis of gh1
|
CREATE TABLE table_name_27 (entrant VARCHAR, chassis VARCHAR)
|
SELECT entrant FROM table_name_27 WHERE chassis = "gh1"
|
### Context: CREATE TABLE table_name_27 (entrant VARCHAR, chassis VARCHAR) ### Question: Name the entrant for chassis of gh1 ### Answer: SELECT entrant FROM table_name_27 WHERE chassis = "gh1"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.