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