training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_54 (spouse VARCHAR, father VARCHAR)
###human: Who is the spouse of the queen who is the daughter of Ferdinand I of the two sicilies?
###assistant: SELECT spouse FROM table_name_54 WHERE father = "ferdinand i of the two sicilies" |
###context:CREATE TABLE table_name_29 (entered_service VARCHAR, serial_no VARCHAR)
###human: What is the entered service date for serial number 85-1222?
###assistant: SELECT entered_service FROM table_name_29 WHERE serial_no = "85-1222" |
###context:CREATE TABLE table_name_44 (locomotive VARCHAR, name VARCHAR)
###human: What is the locomotive for the city of Benalla?
###assistant: SELECT locomotive FROM table_name_44 WHERE name = "city of benalla" |
###context:CREATE TABLE table_name_95 (name VARCHAR, locomotive VARCHAR)
###human: What is the name for the locomotive n464?
###assistant: SELECT name FROM table_name_95 WHERE locomotive = "n464" |
###context:CREATE TABLE table_name_9 (name VARCHAR, locomotive VARCHAR)
###human: What is the name for the locomotive n474?
###assistant: SELECT name FROM table_name_9 WHERE locomotive = "n474" |
###context:CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
###human: What is the home team score at windy hill?
###assistant: SELECT home_team AS score FROM table_name_40 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_32 (crowd INTEGER, away_team VARCHAR)
###human: What is the largest crowd for an Away team of st kilda?
###assistant: SELECT MAX(crowd) FROM table_name_32 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_55 (played_in VARCHAR, points_for VARCHAR)
###human: Where was the match that had 119 points for played?
###assistant: SELECT played_in FROM table_name_55 WHERE points_for = "119" |
###context:CREATE TABLE table_name_36 (played_in VARCHAR, matches VARCHAR)
###human: Where were 16 matches played?
###assistant: SELECT played_in FROM table_name_36 WHERE matches = "16" |
###context:CREATE TABLE table_name_81 (matches VARCHAR, points_for VARCHAR)
###human: What match had 240 points for?
###assistant: SELECT matches FROM table_name_81 WHERE points_for = "240" |
###context:CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR)
###human: What was the score on 26 July 1930?
###assistant: SELECT score FROM table_name_62 WHERE date = "26 july 1930" |
###context:CREATE TABLE table_name_60 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
###human: How many laps did Innes Ireland make when he had a grid more than 15?
###assistant: SELECT laps FROM table_name_60 WHERE grid > 15 AND driver = "innes ireland" |
###context:CREATE TABLE table_name_34 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###human: What is the grid for Jack Brabham with more than 65 laps?
###assistant: SELECT SUM(grid) FROM table_name_34 WHERE driver = "jack brabham" AND laps > 65 |
###context:CREATE TABLE table_name_92 (driver VARCHAR, grid VARCHAR)
###human: Who drove grid 5?
###assistant: SELECT driver FROM table_name_92 WHERE grid = 5 |
###context:CREATE TABLE table_name_3 (date VARCHAR, visitor VARCHAR)
###human: What is the date of the game with the Rockets as the visitor team?
###assistant: SELECT date FROM table_name_3 WHERE visitor = "rockets" |
###context:CREATE TABLE table_name_88 (position VARCHAR, years_for_rockets VARCHAR)
###human: What was the position of the player who played for the Rockets during 1981?
###assistant: SELECT position FROM table_name_88 WHERE years_for_rockets = "1981" |
###context:CREATE TABLE table_name_53 (school_club_team_country VARCHAR, no_s_ INTEGER)
###human: What school, club team, or country did the player with a number smaller than 4 come from?
###assistant: SELECT school_club_team_country FROM table_name_53 WHERE no_s_ < 4 |
###context:CREATE TABLE table_name_29 (no_s_ VARCHAR, school_club_team_country VARCHAR)
###human: What is the number of the player who came from Virginia?
###assistant: SELECT no_s_ FROM table_name_29 WHERE school_club_team_country = "virginia" |
###context:CREATE TABLE table_name_6 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
###human: What is the Time/Retired with over 56 laps and a grid of 5?
###assistant: SELECT time_retired FROM table_name_6 WHERE laps > 56 AND grid = 5 |
###context:CREATE TABLE table_name_10 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR)
###human: Who is the driver when the tyre is p and the entrant is officine alfieri maserati?
###assistant: SELECT driver FROM table_name_10 WHERE tyre = "p" AND entrant = "officine alfieri maserati" |
###context:CREATE TABLE table_name_78 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)
###human: Who is the constructor when the chassis is talbot-lago t26c and the driver is charles pozzi?
###assistant: SELECT constructor FROM table_name_78 WHERE chassis = "talbot-lago t26c" AND driver = "charles pozzi" |
###context:CREATE TABLE table_name_87 (tyre VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: What is the tyre when the entrant is sa alfa romeo and the driver is luigi fagioli?
###assistant: SELECT tyre FROM table_name_87 WHERE entrant = "sa alfa romeo" AND driver = "luigi fagioli" |
###context:CREATE TABLE table_name_90 (entrant VARCHAR, engine VARCHAR, driver VARCHAR)
###human: Who is the entrant when the engine is talbot l6 and the driver is pierre levegh?
###assistant: SELECT entrant FROM table_name_90 WHERE engine = "talbot l6" AND driver = "pierre levegh" |
###context:CREATE TABLE table_name_88 (entrant VARCHAR, chassis VARCHAR)
###human: Who is the entrant when the chassis is ferrari 125?
###assistant: SELECT entrant FROM table_name_88 WHERE chassis = "ferrari 125" |
###context:CREATE TABLE table_name_17 (engine VARCHAR, driver VARCHAR, tyre VARCHAR, constructor VARCHAR)
###human: what is the engine when the tyre is d, the constructor is era and the driver is bob gerard?
###assistant: SELECT engine FROM table_name_17 WHERE tyre = "d" AND constructor = "era" AND driver = "bob gerard" |
###context:CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)
###human: What was the score when the record was 39-62?
###assistant: SELECT score FROM table_name_29 WHERE record = "39-62" |
###context:CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)
###human: What was the date when the record was 35-57?
###assistant: SELECT date FROM table_name_14 WHERE record = "35-57" |
###context:CREATE TABLE table_name_20 (loss VARCHAR, record VARCHAR)
###human: What was the loss when the record was 34-56?
###assistant: SELECT loss FROM table_name_20 WHERE record = "34-56" |
###context:CREATE TABLE table_name_37 (away_team VARCHAR, home_team VARCHAR)
###human: What is the name of the away team that played Geelong?
###assistant: SELECT away_team FROM table_name_37 WHERE home_team = "geelong" |
###context:CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR)
###human: What is the smallest crowd size for away team Fitzroy?
###assistant: SELECT MIN(crowd) FROM table_name_40 WHERE away_team = "fitzroy" |
###context:CREATE TABLE table_name_71 (builder VARCHAR, br_no VARCHAR)
###human: Which Builder has BR No. 30782?
###assistant: SELECT builder FROM table_name_71 WHERE br_no = 30782 |
###context:CREATE TABLE table_name_75 (title VARCHAR, production_code VARCHAR)
###human: What is the title of the episode with a production code of K1504?
###assistant: SELECT title FROM table_name_75 WHERE production_code = "k1504" |
###context:CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR)
###human: What is the average of the Series #s that were directed by Matthew Penn?
###assistant: SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = "matthew penn" |
###context:CREATE TABLE table_name_20 (series__number VARCHAR, season__number VARCHAR, directed_by VARCHAR)
###human: How many episodes did Matthew Penn direct before season 22?
###assistant: SELECT COUNT(series__number) FROM table_name_20 WHERE season__number < 22 AND directed_by = "matthew penn" |
###context:CREATE TABLE table_name_90 (visitor VARCHAR, attendance INTEGER)
###human: What Visiting Team(s) had an Attendance of over 18,680
###assistant: SELECT visitor FROM table_name_90 WHERE attendance > 18 OFFSET 680 |
###context:CREATE TABLE table_name_34 (attendance INTEGER, visitor VARCHAR)
###human: When Nashville was the visiting team what was the lowest Attendance shown?
###assistant: SELECT MIN(attendance) FROM table_name_34 WHERE visitor = "nashville" |
###context:CREATE TABLE table_name_81 (time_retired VARCHAR, grid VARCHAR)
###human: What is the time/retired for the driver with 16 grids?
###assistant: SELECT time_retired FROM table_name_81 WHERE grid = 16 |
###context:CREATE TABLE table_name_89 (grid INTEGER, time_retired VARCHAR)
###human: What is the smallest grid for a time/retired of 1:56:18.22?
###assistant: SELECT MIN(grid) FROM table_name_89 WHERE time_retired = "1:56:18.22" |
###context:CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)
###human: Who was the opponent on September 28?
###assistant: SELECT opponent FROM table_name_18 WHERE date = "september 28" |
###context:CREATE TABLE table_name_58 (opponent VARCHAR, save VARCHAR)
###human: Who was the opponent in the game with save ||33,389||87–62?
###assistant: SELECT opponent FROM table_name_58 WHERE save = "||33,389||87–62" |
###context:CREATE TABLE table_name_76 (opponent VARCHAR, save VARCHAR)
###human: Who was the opponent in the game with save ||33,723||93–64?
###assistant: SELECT opponent FROM table_name_76 WHERE save = "||33,723||93–64" |
###context:CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR)
###human: What was the score on September 8?
###assistant: SELECT score FROM table_name_52 WHERE date = "september 8" |
###context:CREATE TABLE table_name_92 (nationality VARCHAR, years_for_jazz VARCHAR)
###human: Which nationality has Years for Jazz of 1984-85?
###assistant: SELECT nationality FROM table_name_92 WHERE years_for_jazz = "1984-85" |
###context:CREATE TABLE table_name_9 (position VARCHAR, nationality VARCHAR, player VARCHAR)
###human: Which position has a Nationality of united states, and a Player of roger powell?
###assistant: SELECT position FROM table_name_9 WHERE nationality = "united states" AND player = "roger powell" |
###context:CREATE TABLE table_name_48 (years_for_jazz VARCHAR, player VARCHAR)
###human: What years does milt palacio play?
###assistant: SELECT years_for_jazz FROM table_name_48 WHERE player = "milt palacio" |
###context:CREATE TABLE table_name_17 (years_for_jazz VARCHAR, school_club_team VARCHAR)
###human: Which years have a School/Club Team of colorado state?
###assistant: SELECT years_for_jazz FROM table_name_17 WHERE school_club_team = "colorado state" |
###context:CREATE TABLE table_name_64 (years VARCHAR, engine_code VARCHAR, model VARCHAR)
###human: During which years was the Model 318td (diesel) with the Engine code of m47d20 manufactured?
###assistant: SELECT years FROM table_name_64 WHERE engine_code = "m47d20" AND model = "318td (diesel)" |
###context:CREATE TABLE table_name_73 (torque VARCHAR, engine_code VARCHAR)
###human: What is the Torque of the model with the engine code of M54B25?
###assistant: SELECT torque FROM table_name_73 WHERE engine_code = "m54b25" |
###context:CREATE TABLE table_name_27 (torque VARCHAR, model VARCHAR)
###human: What is the Torque of the Model 320td (diesel)?
###assistant: SELECT torque FROM table_name_27 WHERE model = "320td (diesel)" |
###context:CREATE TABLE table_name_11 (years VARCHAR, engine_code VARCHAR)
###human: During which years was the model with the Engine code of m54b25 manufactured?
###assistant: SELECT years FROM table_name_11 WHERE engine_code = "m54b25" |
###context:CREATE TABLE table_name_72 (model VARCHAR, engine_code VARCHAR, years VARCHAR, torque VARCHAR)
###human: Which model was made from 2001–2004, with a Torque of n·m (lb·ft) @ 3750, and an Engine code of n42b18 / n46b18?
###assistant: SELECT model FROM table_name_72 WHERE years = "2001–2004" AND torque = "n·m (lb·ft) @ 3750" AND engine_code = "n42b18 / n46b18" |
###context:CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)
###human: What was the date of the Mariners game that had a score of 1-12?
###assistant: SELECT date FROM table_name_96 WHERE score = "1-12" |
###context:CREATE TABLE table_name_8 (date VARCHAR, attendance VARCHAR)
###human: What was the date of the Mariners game that had an attendance of 6,707?
###assistant: SELECT date FROM table_name_8 WHERE attendance = "6,707" |
###context:CREATE TABLE table_name_77 (date VARCHAR, loss VARCHAR)
###human: What was the date of the Mariners game that had a loss of Segui (0-5)?
###assistant: SELECT date FROM table_name_77 WHERE loss = "segui (0-5)" |
###context:CREATE TABLE table_name_91 (loss VARCHAR, attendance VARCHAR)
###human: What was the loss of the Mariners game that had an attendance of 9,065?
###assistant: SELECT loss FROM table_name_91 WHERE attendance = "9,065" |
###context:CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)
###human: Who was the Mariners opponent at the game attended by 7,893?
###assistant: SELECT opponent FROM table_name_49 WHERE attendance = "7,893" |
###context:CREATE TABLE table_name_88 (surface VARCHAR, tournament VARCHAR)
###human: What is the tournament surface at Aptos?
###assistant: SELECT surface FROM table_name_88 WHERE tournament = "aptos" |
###context:CREATE TABLE table_name_96 (score VARCHAR, opponent_in_the_final VARCHAR)
###human: What was the final score of the Paul Goldstein match?
###assistant: SELECT score FROM table_name_96 WHERE opponent_in_the_final = "paul goldstein" |
###context:CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, date VARCHAR)
###human: Who played the final match on November 23, 1998?
###assistant: SELECT opponent_in_the_final FROM table_name_69 WHERE date = "november 23, 1998" |
###context:CREATE TABLE table_name_69 (date VARCHAR, opponent_in_the_final VARCHAR)
###human: What date did Paul Goldstein play the final?
###assistant: SELECT date FROM table_name_69 WHERE opponent_in_the_final = "paul goldstein" |
###context:CREATE TABLE table_name_83 (surface VARCHAR, opponent_in_the_final VARCHAR)
###human: What was the surface type at Takao Suzuki?
###assistant: SELECT surface FROM table_name_83 WHERE opponent_in_the_final = "takao suzuki" |
###context:CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)
###human: What were the scores on September 11, 2006?
###assistant: SELECT score FROM table_name_95 WHERE date = "september 11, 2006" |
###context:CREATE TABLE table_name_83 (loss VARCHAR, date VARCHAR)
###human: Who did they lose to on may 9?
###assistant: SELECT loss FROM table_name_83 WHERE date = "may 9" |
###context:CREATE TABLE table_name_27 (grid VARCHAR, driver VARCHAR)
###human: What is Pedro De La Rosa's total number of Grid?
###assistant: SELECT COUNT(grid) FROM table_name_27 WHERE driver = "pedro de la rosa" |
###context:CREATE TABLE table_name_91 (constructor VARCHAR, time_retired VARCHAR)
###human: Which constructor has a Time/Retired of +37.311?
###assistant: SELECT constructor FROM table_name_91 WHERE time_retired = "+37.311" |
###context:CREATE TABLE table_name_38 (time_retired VARCHAR, driver VARCHAR)
###human: What is the time/retired for mika häkkinen
###assistant: SELECT time_retired FROM table_name_38 WHERE driver = "mika häkkinen" |
###context:CREATE TABLE table_name_68 (title VARCHAR, audience VARCHAR)
###human: Which title had an audience of 4.629.000?
###assistant: SELECT title FROM table_name_68 WHERE audience = "4.629.000" |
###context:CREATE TABLE table_name_36 (audience VARCHAR, episode VARCHAR)
###human: What was the audience for Episode 21?
###assistant: SELECT audience FROM table_name_36 WHERE episode = "21" |
###context:CREATE TABLE table_name_82 (share VARCHAR, audience VARCHAR)
###human: What was the share when the audience was 3.944.000?
###assistant: SELECT share FROM table_name_82 WHERE audience = "3.944.000" |
###context:CREATE TABLE table_name_74 (audience VARCHAR, title VARCHAR)
###human: What was the audience for Mi Amigo el Monstruo?
###assistant: SELECT audience FROM table_name_74 WHERE title = "mi amigo el monstruo" |
###context:CREATE TABLE table_name_67 (title VARCHAR, share VARCHAR)
###human: Which title has a share of 19,9%
###assistant: SELECT title FROM table_name_67 WHERE share = "19,9%" |
###context:CREATE TABLE table_name_12 (share VARCHAR, audience VARCHAR)
###human: Which share had an audience of 4.693.000?
###assistant: SELECT share FROM table_name_12 WHERE audience = "4.693.000" |
###context:CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)
###human: what was the venue that hosted Carlton as the away team?
###assistant: SELECT venue FROM table_name_24 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)
###human: What was the date of the Collingwood away game?
###assistant: SELECT date FROM table_name_38 WHERE away_team = "collingwood" |
###context:CREATE TABLE table_name_54 (player VARCHAR, team VARCHAR, position VARCHAR)
###human: Who is the player that plays position c on the New York Knicks?
###assistant: SELECT player FROM table_name_54 WHERE team = "new york knicks" AND position = "c" |
###context:CREATE TABLE table_name_42 (position VARCHAR, pick VARCHAR)
###human: What is the position of the pick 1 player?
###assistant: SELECT position FROM table_name_42 WHERE pick = "1" |
###context:CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, position VARCHAR)
###human: Who is the player that plays position f from Fort Wayne Pistons?
###assistant: SELECT player FROM table_name_89 WHERE team = "fort wayne pistons" AND position = "f" |
###context:CREATE TABLE table_name_32 (round VARCHAR, college VARCHAR)
###human: Which round is the player from Oregon from?
###assistant: SELECT round FROM table_name_32 WHERE college = "oregon" |
###context:CREATE TABLE table_name_37 (goals_for VARCHAR, wins VARCHAR, goals_against VARCHAR, games_played VARCHAR)
###human: How many goals for occurred when the goals against was less than 56 and games played was larger than 7 with less than 6 wins?
###assistant: SELECT COUNT(goals_for) FROM table_name_37 WHERE goals_against < 56 AND games_played > 7 AND wins < 6 |
###context:CREATE TABLE table_name_93 (wins INTEGER, goals_for VARCHAR, games_played VARCHAR, goals_against VARCHAR)
###human: What is the smallest number of wins with 7 games played and goals against less than 46 when goals for is more than 34?
###assistant: SELECT MIN(wins) FROM table_name_93 WHERE games_played = 7 AND goals_against < 46 AND goals_for > 34 |
###context:CREATE TABLE table_name_41 (ties INTEGER, goals_for VARCHAR, goals_against VARCHAR, team VARCHAR)
###human: What is the average number of ties when goals against is less than 56 for Ottawa Hockey Club and the goals for is more than 47?
###assistant: SELECT AVG(ties) FROM table_name_41 WHERE goals_against < 56 AND team = "ottawa hockey club" AND goals_for > 47 |
###context:CREATE TABLE table_name_75 (losses VARCHAR, games_played VARCHAR, wins VARCHAR)
###human: How many losses occurred with less than 8 games played and less than 3 wins?
###assistant: SELECT COUNT(losses) FROM table_name_75 WHERE games_played < 8 AND wins < 3 |
###context:CREATE TABLE table_name_65 (goals_against VARCHAR, goals_for VARCHAR, ties VARCHAR)
###human: How many goals against were scored when the goals for is less than 48 with 0 ties?
###assistant: SELECT COUNT(goals_against) FROM table_name_65 WHERE goals_for < 48 AND ties < 0 |
###context:CREATE TABLE table_name_26 (position VARCHAR, school_club_team_country VARCHAR)
###human: Name the position for the player that is from valparaiso
###assistant: SELECT position FROM table_name_26 WHERE school_club_team_country = "valparaiso" |
###context:CREATE TABLE table_name_35 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR)
###human: Name the height in feet for the guard from north carolina-charlotte
###assistant: SELECT height_in_ft FROM table_name_35 WHERE position = "guard" AND school_club_team_country = "north carolina-charlotte" |
###context:CREATE TABLE table_name_80 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
###human: Name the height in feet for the player from valparaiso
###assistant: SELECT height_in_ft FROM table_name_80 WHERE school_club_team_country = "valparaiso" |
###context:CREATE TABLE table_name_11 (school_club_team_country VARCHAR, height_in_ft VARCHAR)
###human: Name the school/club team/country for the player that is 6-5 ft
###assistant: SELECT school_club_team_country FROM table_name_11 WHERE height_in_ft = "6-5" |
###context:CREATE TABLE table_name_4 (no_s_ VARCHAR, height_in_ft VARCHAR, position VARCHAR)
###human: Name the numbers for the player with a height in ft of 6-7 for the guard
###assistant: SELECT no_s_ FROM table_name_4 WHERE height_in_ft = "6-7" AND position = "guard" |
###context:CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
###human: Name the height in ft for the player from wyoming
###assistant: SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = "wyoming" |
###context:CREATE TABLE table_name_29 (college VARCHAR, cfl_team VARCHAR)
###human: Which college did the Calgary Stampeders recruit from?
###assistant: SELECT college FROM table_name_29 WHERE cfl_team = "calgary stampeders" |
###context:CREATE TABLE table_name_87 (year INTEGER, co_singer VARCHAR, film_name VARCHAR)
###human: Which year has the Co-singer solo and a Film name of bhagya debata?
###assistant: SELECT MIN(year) FROM table_name_87 WHERE co_singer = "solo" AND film_name = "bhagya debata" |
###context:CREATE TABLE table_name_30 (date VARCHAR, grand_prix VARCHAR)
###human: What date is the Portuguese Grand Prix?
###assistant: SELECT date FROM table_name_30 WHERE grand_prix = "portuguese grand prix" |
###context:CREATE TABLE table_name_48 (winning_driver VARCHAR, location VARCHAR)
###human: Which winning driver is located in Imola?
###assistant: SELECT winning_driver FROM table_name_48 WHERE location = "imola" |
###context:CREATE TABLE table_name_98 (pole_position VARCHAR, grand_prix VARCHAR)
###human: What is the Pole Position of the Portuguese Grand Prix?
###assistant: SELECT pole_position FROM table_name_98 WHERE grand_prix = "portuguese grand prix" |
###context:CREATE TABLE table_name_76 (date VARCHAR, location VARCHAR)
###human: On what date did a race occur at Long Beach?
###assistant: SELECT date FROM table_name_76 WHERE location = "long beach" |
###context:CREATE TABLE table_name_63 (race VARCHAR, pole_position VARCHAR)
###human: What race had Jody Scheckter hold pole position?
###assistant: SELECT race FROM table_name_63 WHERE pole_position = "jody scheckter" |
###context:CREATE TABLE table_name_63 (race VARCHAR)
###human: Who won the South African Grand Prix?
###assistant: SELECT race AS Winner FROM table_name_63 WHERE race = "south african grand prix" |
###context:CREATE TABLE table_name_87 (fastest_lap VARCHAR, race VARCHAR)
###human: Who had the fastest lap at the German Grand Prix?
###assistant: SELECT fastest_lap FROM table_name_87 WHERE race = "german grand prix" |
###context:CREATE TABLE table_name_5 (tyre VARCHAR, race VARCHAR)
###human: What is the Tyre for the united states grand prix?
###assistant: SELECT tyre FROM table_name_5 WHERE race = "united states grand prix" |
###context:CREATE TABLE table_name_59 (result VARCHAR, competition VARCHAR)
###human: What was the result of the 1948 og competition?
###assistant: SELECT result FROM table_name_59 WHERE competition = "1948 og" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.