text
stringlengths 114
1.06k
|
---|
### question: How large was the crowd at the Kardinia Park venue games? ### answer: SELECT SUM(crowd) FROM table_name_69 WHERE venue = "kardinia park" ### context: CREATE TABLE table_name_69 (crowd INTEGER, venue VARCHAR) |
### question: What was the score of the Home team that played against Carlton's Away game? ### answer: SELECT home_team AS score FROM table_name_3 WHERE away_team = "carlton" ### context: CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR) |
### question: What was the pick number when mark hayes was drafted? ### answer: SELECT pick FROM table_name_42 WHERE player = "mark hayes" ### context: CREATE TABLE table_name_42 (pick VARCHAR, player VARCHAR) |
### question: Which team had a pick of 63? ### answer: SELECT school_club_team FROM table_name_93 WHERE pick = 63 ### context: CREATE TABLE table_name_93 (school_club_team VARCHAR, pick VARCHAR) |
### question: Which team had a position of linebacker with a pick smaller of 288? ### answer: SELECT school_club_team FROM table_name_44 WHERE position = "linebacker" AND pick < 288 ### context: CREATE TABLE table_name_44 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR) |
### question: What player did louisville pick when the round was below 8? ### answer: SELECT player FROM table_name_70 WHERE round < 8 AND school_club_team = "louisville" ### context: CREATE TABLE table_name_70 (player VARCHAR, round VARCHAR, school_club_team VARCHAR) |
### question: What was the outcome of the game that had a score of 3–6, 6–3, 6–0? ### answer: SELECT outcome FROM table_name_81 WHERE score = "3–6, 6–3, 6–0" ### context: CREATE TABLE table_name_81 (outcome VARCHAR, score VARCHAR) |
### question: On 27 July 2003 what was the outcome of the game that resulted in a score of 7–5, 6–3? ### answer: SELECT outcome FROM table_name_77 WHERE score = "7–5, 6–3" AND date = "27 july 2003" ### context: CREATE TABLE table_name_77 (outcome VARCHAR, score VARCHAR, date VARCHAR) |
### question: What was the final score of the game against Lenka Novotná? ### answer: SELECT score FROM table_name_29 WHERE opponent_in_the_final = "lenka novotná" ### context: CREATE TABLE table_name_29 (score VARCHAR, opponent_in_the_final VARCHAR) |
### question: In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4? ### answer: SELECT opponent_in_the_final FROM table_name_23 WHERE surface = "clay" AND score = "6–4, 6–4" ### context: CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) |
### question: What was the final score of the game against opponent Ana Ivanovic? ### answer: SELECT score FROM table_name_75 WHERE opponent_in_the_final = "ana ivanovic" ### context: CREATE TABLE table_name_75 (score VARCHAR, opponent_in_the_final VARCHAR) |
### question: What is the total grid number where the time/retired is +58.182 and the lap number is less than 67? ### answer: SELECT SUM(grid) FROM table_name_12 WHERE time_retired = "+58.182" AND laps < 67 ### context: CREATE TABLE table_name_12 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) |
### question: What horse was induced in 2011 with a sire of cowboy p-12? ### answer: SELECT name_of_horse FROM table_name_77 WHERE year_inducted = 2011 AND broodmare_sire = "cowboy p-12" ### context: CREATE TABLE table_name_77 (name_of_horse VARCHAR, year_inducted VARCHAR, broodmare_sire VARCHAR) |
### question: Who was the home team that played against hawthorn? ### answer: SELECT home_team FROM table_name_65 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR) |
### question: Who was the away team playing against collingwood? ### answer: SELECT away_team FROM table_name_15 WHERE home_team = "collingwood" ### context: CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR) |
### question: What was the biggest crowd at punt road oval? ### answer: SELECT MAX(crowd) FROM table_name_65 WHERE venue = "punt road oval" ### context: CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR) |
### question: Who is the home team based at windy hill? ### answer: SELECT home_team FROM table_name_56 WHERE venue = "windy hill" ### context: CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) |
### question: What is the low gold total for nations with under 23 silvers, ranked beloe 5, and 6 bronzes? ### answer: SELECT MIN(gold) FROM table_name_45 WHERE silver < 23 AND rank > 5 AND bronze = 6 ### context: CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) |
### question: What is the high silver total for nations with 3 golds and under 5 bronzes? ### answer: SELECT MAX(silver) FROM table_name_61 WHERE gold = 3 AND bronze < 5 ### context: CREATE TABLE table_name_61 (silver INTEGER, gold VARCHAR, bronze VARCHAR) |
### question: How many silvers for nations with over 3 golds and under 6 bronzes? ### answer: SELECT COUNT(silver) FROM table_name_60 WHERE bronze < 6 AND gold > 3 ### context: CREATE TABLE table_name_60 (silver VARCHAR, bronze VARCHAR, gold VARCHAR) |
### question: What was the smallest crowd in games at the corio oval? ### answer: SELECT MIN(crowd) FROM table_name_13 WHERE venue = "corio oval" ### context: CREATE TABLE table_name_13 (crowd INTEGER, venue VARCHAR) |
### question: In the match where Melbourne was the away team, how much did they score? ### answer: SELECT away_team AS score FROM table_name_52 WHERE away_team = "melbourne" ### context: CREATE TABLE table_name_52 (away_team VARCHAR) |
### question: Who had the decision when buffalo was the visitor? ### answer: SELECT decision FROM table_name_99 WHERE visitor = "buffalo" ### context: CREATE TABLE table_name_99 (decision VARCHAR, visitor VARCHAR) |
### question: Tell me the venue for north melbourne ### answer: SELECT venue FROM table_name_85 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_85 (venue VARCHAR, away_team VARCHAR) |
### question: What name has a listed of 03/31/1989 in spartanburg county? ### answer: SELECT name FROM table_name_19 WHERE listed = "03/31/1989" AND county = "spartanburg" ### context: CREATE TABLE table_name_19 (name VARCHAR, listed VARCHAR, county VARCHAR) |
### question: What date was proposed when the listed date was 12/16/1994 in the County of beaufort? ### answer: SELECT proposed FROM table_name_65 WHERE listed = "12/16/1994" AND county = "beaufort" ### context: CREATE TABLE table_name_65 (proposed VARCHAR, listed VARCHAR, county VARCHAR) |
### question: What name was listed 02/21/1990, and a CERCLIS ID of scd980844005? ### answer: SELECT name FROM table_name_97 WHERE listed = "02/21/1990" AND cerclis_id = "scd980844005" ### context: CREATE TABLE table_name_97 (name VARCHAR, listed VARCHAR, cerclis_id VARCHAR) |
### question: What county has a CERCLIS ID of scd037405362? ### answer: SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362" ### context: CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR) |
### question: What is the name for Charleston County with a CERCLIS ID of scd980711279? ### answer: SELECT name FROM table_name_44 WHERE county = "charleston" AND cerclis_id = "scd980711279" ### context: CREATE TABLE table_name_44 (name VARCHAR, county VARCHAR, cerclis_id VARCHAR) |
### question: What is the name for the listed date of 11/21/1989? ### answer: SELECT name FROM table_name_42 WHERE listed = "11/21/1989" ### context: CREATE TABLE table_name_42 (name VARCHAR, listed VARCHAR) |
### question: Which category was Gene Barry nominated in? ### answer: SELECT category FROM table_name_54 WHERE result = "nominated" AND nominee = "gene barry" ### context: CREATE TABLE table_name_54 (category VARCHAR, result VARCHAR, nominee VARCHAR) |
### question: What year was the Drama Desk award won by nominee George Hearn? ### answer: SELECT year FROM table_name_44 WHERE award = "drama desk award" AND result = "won" AND nominee = "george hearn" ### context: CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR) |
### question: What is the time/retired for grid 5? ### answer: SELECT time_retired FROM table_name_8 WHERE grid = 5 ### context: CREATE TABLE table_name_8 (time_retired VARCHAR, grid VARCHAR) |
### question: When was the event that had Liberia as an opponent and resulted in a 1-0 score? ### answer: SELECT date FROM table_name_75 WHERE opponent = "liberia" AND score = "1-0" ### context: CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, score VARCHAR) |
### question: When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent ### answer: SELECT date FROM table_name_60 WHERE competition = "2014 world cup qualification" AND location = "kampala" AND opponent = "angola" ### context: CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR) |
### question: Who was the Europe/Africa group i's opponent? ### answer: SELECT opponent FROM table_name_61 WHERE zone = "europe/africa group i" ### context: CREATE TABLE table_name_61 (opponent VARCHAR, zone VARCHAR) |
### question: What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent? ### answer: SELECT zone FROM table_name_42 WHERE round = "semifinal" AND against = "israel" AND opponent = "anna smashnova" ### context: CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR) |
### question: What surface was played on against Shahar Pe'er? ### answer: SELECT surface FROM table_name_61 WHERE opponent = "shahar pe'er" ### context: CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR) |
### question: I want the years for marathon distance and wins of 3 ### answer: SELECT years FROM table_name_15 WHERE distance = "marathon" AND wins = 3 ### context: CREATE TABLE table_name_15 (years VARCHAR, distance VARCHAR, wins VARCHAR) |
### question: Name the country for athlete of ziedonis zaļkalns ### answer: SELECT country FROM table_name_72 WHERE athlete = "ziedonis zaļkalns" ### context: CREATE TABLE table_name_72 (country VARCHAR, athlete VARCHAR) |
### question: I want the attendance which has a result of l 49–21 ### answer: SELECT attendance FROM table_name_12 WHERE result = "l 49–21" ### context: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) |
### question: Tell me the attendance with a result of l 26–3 ### answer: SELECT attendance FROM table_name_12 WHERE result = "l 26–3" ### context: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) |
### question: I want to know the lowest week with a date of december 19, 2004 ### answer: SELECT MIN(week) FROM table_name_26 WHERE date = "december 19, 2004" ### context: CREATE TABLE table_name_26 (week INTEGER, date VARCHAR) |
### question: What is the attendance of the location where New Orleans's team plays? ### answer: SELECT location_attendance FROM table_name_81 WHERE team = "new orleans" ### context: CREATE TABLE table_name_81 (location_attendance VARCHAR, team VARCHAR) |
### question: Which team has the high points of Raymond Felton (26)? ### answer: SELECT team FROM table_name_30 WHERE high_points = "raymond felton (26)" ### context: CREATE TABLE table_name_30 (team VARCHAR, high_points VARCHAR) |
### question: What is the time of the driver on grid 7? ### answer: SELECT time_retired FROM table_name_48 WHERE grid = 7 ### context: CREATE TABLE table_name_48 (time_retired VARCHAR, grid VARCHAR) |
### question: Which Constructor has grid 2? ### answer: SELECT constructor FROM table_name_75 WHERE grid = 2 ### context: CREATE TABLE table_name_75 (constructor VARCHAR, grid VARCHAR) |
### question: What is the highest grid that has 55 laps? ### answer: SELECT MAX(grid) FROM table_name_1 WHERE laps = 55 ### context: CREATE TABLE table_name_1 (grid INTEGER, laps VARCHAR) |
### question: Who was Richmond's away team opponent? ### answer: SELECT away_team AS score FROM table_name_53 WHERE home_team = "richmond" ### context: CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR) |
### question: What was the away score at VFL Park? ### answer: SELECT away_team AS score FROM table_name_78 WHERE venue = "vfl park" ### context: CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR) |
### question: Tell me the home team score for richmond home team ### answer: SELECT home_team AS score FROM table_name_87 WHERE home_team = "richmond" ### context: CREATE TABLE table_name_87 (home_team VARCHAR) |
### question: Tell me the venue for 8 june 1931 for st kilda away team ### answer: SELECT venue FROM table_name_6 WHERE date = "8 june 1931" AND away_team = "st kilda" ### context: CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR, away_team VARCHAR) |
### question: When fitzroy was the home team, how much did the away team score? ### answer: SELECT away_team AS score FROM table_name_76 WHERE home_team = "fitzroy" ### context: CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR) |
### question: When essendon was the home team, how much did they score? ### answer: SELECT home_team AS score FROM table_name_56 WHERE home_team = "essendon" ### context: CREATE TABLE table_name_56 (home_team VARCHAR) |
### question: What is shintaro ishiwatari's time? ### answer: SELECT time FROM table_name_6 WHERE opponent = "shintaro ishiwatari" ### context: CREATE TABLE table_name_6 (time VARCHAR, opponent VARCHAR) |
### question: How many rounds have an Opponent of sakae kasuya? ### answer: SELECT COUNT(round) FROM table_name_90 WHERE opponent = "sakae kasuya" ### context: CREATE TABLE table_name_90 (round VARCHAR, opponent VARCHAR) |
### question: Which time has a Method of decision(majority), and an Opponent of keisuke yamada? ### answer: SELECT time FROM table_name_55 WHERE method = "decision(majority)" AND opponent = "keisuke yamada" ### context: CREATE TABLE table_name_55 (time VARCHAR, method VARCHAR, opponent VARCHAR) |
### question: Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura? ### answer: SELECT method FROM table_name_33 WHERE event = "shooto" AND round = 2 AND opponent = "issei tamura" ### context: CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR) |
### question: What is the away team that played at punt road oval? ### answer: SELECT away_team FROM table_name_24 WHERE venue = "punt road oval" ### context: CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR) |
### question: What is the home team score that played at windy hill? ### answer: SELECT home_team AS score FROM table_name_81 WHERE venue = "windy hill" ### context: CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR) |
### question: How big was the crowd at the game the away team geelong played at? ### answer: SELECT SUM(crowd) FROM table_name_31 WHERE away_team = "geelong" ### context: CREATE TABLE table_name_31 (crowd INTEGER, away_team VARCHAR) |
### question: Which constructor has a race called I News of the World Trophy? ### answer: SELECT constructor FROM table_name_91 WHERE race_name = "i news of the world trophy" ### context: CREATE TABLE table_name_91 (constructor VARCHAR, race_name VARCHAR) |
### question: Which Constructor has the goodwood circuit? ### answer: SELECT constructor FROM table_name_53 WHERE circuit = "goodwood" ### context: CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR) |
### question: What driver won the VII Rand Grand Prix? ### answer: SELECT winning_driver FROM table_name_26 WHERE race_name = "vii rand grand prix" ### context: CREATE TABLE table_name_26 (winning_driver VARCHAR, race_name VARCHAR) |
### question: What is the name of the race that has the pergusa Circuit? ### answer: SELECT race_name FROM table_name_50 WHERE circuit = "pergusa" ### context: CREATE TABLE table_name_50 (race_name VARCHAR, circuit VARCHAR) |
### question: What is the scoreof the away team Collingwood? ### answer: SELECT away_team AS score FROM table_name_83 WHERE away_team = "collingwood" ### context: CREATE TABLE table_name_83 (away_team VARCHAR) |
### question: Jean Alesi, drives the Acer 01A engine for which team? ### answer: SELECT team FROM table_name_68 WHERE driver = "jean alesi" AND engine_† = "acer 01a" ### context: CREATE TABLE table_name_68 (team VARCHAR, driver VARCHAR, engine_† VARCHAR) |
### question: Who built Alex Yoong's car? ### answer: SELECT constructor FROM table_name_84 WHERE driver = "alex yoong" ### context: CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR) |
### question: What's jim colbert's highest rank? ### answer: SELECT MAX(rank) FROM table_name_60 WHERE player = "jim colbert" ### context: CREATE TABLE table_name_60 (rank INTEGER, player VARCHAR) |
### question: What's hale irwin's average rank? ### answer: SELECT AVG(rank) FROM table_name_7 WHERE player = "hale irwin" ### context: CREATE TABLE table_name_7 (rank INTEGER, player VARCHAR) |
### question: What is the sum of averages with a long value of 32? ### answer: SELECT SUM(avg) FROM table_name_70 WHERE long = 32 ### context: CREATE TABLE table_name_70 (avg INTEGER, long VARCHAR) |
### question: Which Track time has a Disc larger than 2, a Track smaller than 22, and an English title of younger girl? ### answer: SELECT track AS time FROM table_name_80 WHERE disc > 2 AND track < 22 AND english_title = "younger girl" ### context: CREATE TABLE table_name_80 (track VARCHAR, english_title VARCHAR, disc VARCHAR) |
### question: Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita? ### answer: SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = "kōzō murashita" ### context: CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR) |
### question: Which track has a Japanese title of メロディー? ### answer: SELECT MAX(track) FROM table_name_12 WHERE japanese_title = "メロディー" ### context: CREATE TABLE table_name_12 (track INTEGER, japanese_title VARCHAR) |
### question: What Grid has a Time/Retired of clutch? ### answer: SELECT SUM(grid) FROM table_name_2 WHERE time_retired = "clutch" ### context: CREATE TABLE table_name_2 (grid INTEGER, time_retired VARCHAR) |
### question: What is the Time/Retired with more Laps than 34, a Grid smaller than 15, and Driver Damon Hill? ### answer: SELECT time_retired FROM table_name_88 WHERE laps > 34 AND grid < 15 AND driver = "damon hill" ### context: CREATE TABLE table_name_88 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) |
### question: How many Laps Did Driver David Coulthard have on a Grid smaller than 11? ### answer: SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = "david coulthard" ### context: CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR) |
### question: What type of race took place on the course Orta San Giulio to Milan? ### answer: SELECT type FROM table_name_14 WHERE course = "orta san giulio to milan" ### context: CREATE TABLE table_name_14 (type VARCHAR, course VARCHAR) |
### question: When did the course Vasto to Campitello Matese took place? ### answer: SELECT date FROM table_name_25 WHERE course = "vasto to campitello matese" ### context: CREATE TABLE table_name_25 (date VARCHAR, course VARCHAR) |
### question: Who won the course Brescia? ### answer: SELECT winner FROM table_name_49 WHERE course = "brescia" ### context: CREATE TABLE table_name_49 (winner VARCHAR, course VARCHAR) |
### question: Name the league for 1996 ### answer: SELECT league FROM table_name_90 WHERE year = "1996" ### context: CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR) |
### question: Name the league for 1994 ### answer: SELECT league FROM table_name_16 WHERE year = "1994" ### context: CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR) |
### question: Tell me the league with a regular 1st season ### answer: SELECT league FROM table_name_2 WHERE reg_season = "1st" ### context: CREATE TABLE table_name_2 (league VARCHAR, reg_season VARCHAR) |
### question: What LNER Class has a Class of 6db? ### answer: SELECT LNER AS class FROM table_name_31 WHERE class = "6db" ### context: CREATE TABLE table_name_31 (LNER VARCHAR, class VARCHAR) |
### question: What LNER Class has a Class of 3? ### answer: SELECT LNER AS class FROM table_name_86 WHERE class = "3" ### context: CREATE TABLE table_name_86 (LNER VARCHAR, class VARCHAR) |
### question: Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0? ### answer: SELECT AVG(pick__number) FROM table_name_95 WHERE reg_gp = 0 AND pl_gp > 0 ### context: CREATE TABLE table_name_95 (pick__number INTEGER, reg_gp VARCHAR, pl_gp VARCHAR) |
### question: What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257? ### answer: SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257 ### context: CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR) |
### question: What is the sum number of Pl GP when the Reg GP was 0, the Rd number was bigger than 8, and the pick number was bigger than 146? ### answer: SELECT COUNT(pl_gp) FROM table_name_90 WHERE reg_gp = 0 AND rd__number > 8 AND pick__number > 146 ### context: CREATE TABLE table_name_90 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, rd__number VARCHAR) |
### question: What was the birth state of Charles Cotesworth Pinckney who was elected in 1808? ### answer: SELECT birth_state FROM table_name_74 WHERE name = "charles cotesworth pinckney" AND election_year = 1808 ### context: CREATE TABLE table_name_74 (birth_state VARCHAR, name VARCHAR, election_year VARCHAR) |
### question: How many postseason titles has Nebraska received? ### answer: SELECT postseason FROM table_name_20 WHERE team = "nebraska" ### context: CREATE TABLE table_name_20 (postseason VARCHAR, team VARCHAR) |
### question: What is the lost On August 20 ### answer: SELECT loss FROM table_name_3 WHERE date = "august 20" ### context: CREATE TABLE table_name_3 (loss VARCHAR, date VARCHAR) |
### question: WHAT IS THE NUMBER OF Attendance WITH A RECORD 94–36 ### answer: SELECT AVG(attendance) FROM table_name_70 WHERE save = "–" AND record = "94–36" ### context: CREATE TABLE table_name_70 (attendance INTEGER, save VARCHAR, record VARCHAR) |
### question: WHICH Attendance that has a Loss of paniagua (3–3)? ### answer: SELECT MAX(attendance) FROM table_name_99 WHERE loss = "paniagua (3–3)" ### context: CREATE TABLE table_name_99 (attendance INTEGER, loss VARCHAR) |
### question: How many points did the away team score at Arden Street Oval? ### answer: SELECT away_team AS score FROM table_name_59 WHERE venue = "arden street oval" ### context: CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR) |
### question: In what venue does Footscray play? ### answer: SELECT venue FROM table_name_16 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR) |
### question: What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans? ### answer: SELECT pos FROM table_name_39 WHERE race = "24 hours of le mans" AND co_driver = "jackie oliver" ### context: CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR) |
### question: Who was the co-driver in 1970 for the race of Targa Florio? ### answer: SELECT co_driver FROM table_name_46 WHERE year = 1970 AND race = "targa florio" ### context: CREATE TABLE table_name_46 (co_driver VARCHAR, year VARCHAR, race VARCHAR) |
### question: Which vehicle has a Grid of 13? ### answer: SELECT constructor FROM table_name_5 WHERE grid = 13 ### context: CREATE TABLE table_name_5 (constructor VARCHAR, grid VARCHAR) |
### question: What's the Time/Retired of 80 laps with a Grid larger than 2? ### answer: SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2 ### context: CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
### question: Tell me the date for detroit and game more than 3 ### answer: SELECT date FROM table_name_53 WHERE team = "detroit" AND game > 3 ### context: CREATE TABLE table_name_53 (date VARCHAR, team VARCHAR, game VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.