training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_23 (home VARCHAR, record VARCHAR)
###human: Who was the home team when the record was 36β21β8?
###assistant: SELECT home FROM table_name_23 WHERE record = "36β21β8" |
###context:CREATE TABLE table_name_17 (date VARCHAR, visitor VARCHAR, record VARCHAR)
###human: What was the date of the game when the Calgary Flames were the visiting team and there was a record of 1β2β0?
###assistant: SELECT date FROM table_name_17 WHERE visitor = "calgary flames" AND record = "1β2β0" |
###context:CREATE TABLE table_name_15 (home VARCHAR, record VARCHAR)
###human: Who was the home team when the record was 27β14β6?
###assistant: SELECT home FROM table_name_15 WHERE record = "27β14β6" |
###context:CREATE TABLE table_name_28 (lifespan VARCHAR, state VARCHAR, representative VARCHAR)
###human: What was the lifespan of Representative Harry P. O'neill from the state of Pennsylvania?
###assistant: SELECT lifespan FROM table_name_28 WHERE state = "pennsylvania" AND representative = "harry p. o'neill" |
###context:CREATE TABLE table_name_70 (years VARCHAR, representative VARCHAR)
###human: What years did Representative Frank A. Oliver serve?
###assistant: SELECT years FROM table_name_70 WHERE representative = "frank a. oliver" |
###context:CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)
###human: Name the record for october 11
###assistant: SELECT record FROM table_name_34 WHERE date = "october 11" |
###context:CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)
###human: Name the score with record of 68-66
###assistant: SELECT score FROM table_name_69 WHERE record = "68-66" |
###context:CREATE TABLE table_name_24 (record VARCHAR, date VARCHAR)
###human: Name the record for august 28
###assistant: SELECT record FROM table_name_24 WHERE date = "august 28" |
###context:CREATE TABLE table_name_63 (score VARCHAR, player VARCHAR)
###human: What was the score for Leo Diegel?
###assistant: SELECT score FROM table_name_63 WHERE player = "leo diegel" |
###context:CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR)
###human: What is the name of the player with a To par of β4?
###assistant: SELECT player FROM table_name_41 WHERE to_par = "β4" |
###context:CREATE TABLE table_name_35 (surface VARCHAR, partner VARCHAR)
###human: What was the surface for the game that was played with partner Tiya Rolle?
###assistant: SELECT surface FROM table_name_35 WHERE partner = "tiya rolle" |
###context:CREATE TABLE table_name_22 (score VARCHAR, partner VARCHAR, date VARCHAR)
###human: What is the final score for the game played on January 10, 2011 with partner Mashona Washington?
###assistant: SELECT score FROM table_name_22 WHERE partner = "mashona washington" AND date = "january 10, 2011" |
###context:CREATE TABLE table_name_8 (outcome VARCHAR, date VARCHAR)
###human: What was the outcome for the game that was played on 07-Jun-2010?
###assistant: SELECT outcome FROM table_name_8 WHERE date = "07-jun-2010" |
###context:CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
###human: What is the score for the game that was played on 29-Jun-2009?
###assistant: SELECT score FROM table_name_93 WHERE date = "29-jun-2009" |
###context:CREATE TABLE table_name_50 (surface VARCHAR, date VARCHAR)
###human: What was the surface for the game that was played on 12-Apr-2005?
###assistant: SELECT surface FROM table_name_50 WHERE date = "12-apr-2005" |
###context:CREATE TABLE table_name_66 (points VARCHAR, skipper VARCHAR)
###human: What points has james allen as the skipper?
###assistant: SELECT points FROM table_name_66 WHERE skipper = "james allen" |
###context:CREATE TABLE table_name_28 (yacht_name VARCHAR, overall_place VARCHAR)
###human: What is the name of the yacht where 12 is the overall place?
###assistant: SELECT yacht_name FROM table_name_28 WHERE overall_place = "12" |
###context:CREATE TABLE table_name_17 (skipper VARCHAR, combined_elapsed_time VARCHAR)
###human: Which skipper has a combine elapsed time of 174d 01h 11m 59s?
###assistant: SELECT skipper FROM table_name_17 WHERE combined_elapsed_time = "174d 01h 11m 59s" |
###context:CREATE TABLE table_name_92 (skipper VARCHAR, yacht_name VARCHAR)
###human: Which skipper has barclays adventurer as the name of the yacht?
###assistant: SELECT skipper FROM table_name_92 WHERE yacht_name = "barclays adventurer" |
###context:CREATE TABLE table_name_47 (overall_place VARCHAR, combined_elapsed_time VARCHAR)
###human: What is the overall place that has 170d 11h 31m 10s as the combined elapsed time?
###assistant: SELECT overall_place FROM table_name_47 WHERE combined_elapsed_time = "170d 11h 31m 10s" |
###context:CREATE TABLE table_name_22 (senior_status VARCHAR, reason_for_termination VARCHAR, chief_judge VARCHAR)
###human: What was the senior status for the judge who was terminated because of death, with a Chief Judge entry of β?
###assistant: SELECT senior_status FROM table_name_22 WHERE reason_for_termination = "death" AND chief_judge = "β" |
###context:CREATE TABLE table_name_96 (location VARCHAR, classification VARCHAR)
###human: What is the location of Classification of T12?
###assistant: SELECT location FROM table_name_96 WHERE classification = "t12" |
###context:CREATE TABLE table_name_40 (fastest_time__s_ VARCHAR, athlete VARCHAR)
###human: What is the fastest time for athlete Jason Smyth?
###assistant: SELECT fastest_time__s_ FROM table_name_40 WHERE athlete = "jason smyth" |
###context:CREATE TABLE table_name_34 (final VARCHAR, no2 VARCHAR)
###human: What was the final of play No. 2, Alzira Ricardo B.?
###assistant: SELECT final FROM table_name_34 WHERE no2 = "alzira ricardo b." |
###context:CREATE TABLE table_name_10 (no10 VARCHAR, no8 VARCHAR)
###human: What was the No. 10 team that has No. 8 of Diana?
###assistant: SELECT no10 FROM table_name_10 WHERE no8 = "diana" |
###context:CREATE TABLE table_name_2 (year VARCHAR, chassis VARCHAR)
###human: Name the total number of years for chassis of ensign n175
###assistant: SELECT COUNT(year) FROM table_name_2 WHERE chassis = "ensign n175" |
###context:CREATE TABLE table_name_52 (attendance INTEGER, record VARCHAR)
###human: What was the Blue Jays lowest attendance when their record was 52-48?
###assistant: SELECT MIN(attendance) FROM table_name_52 WHERE record = "52-48" |
###context:CREATE TABLE table_name_73 (result VARCHAR, home_away VARCHAR, opponent VARCHAR)
###human: What is the result when you play at home against Pride
###assistant: SELECT result FROM table_name_73 WHERE home_away = "home" AND opponent = "pride" |
###context:CREATE TABLE table_name_10 (result VARCHAR, field VARCHAR)
###human: What is the result of games played at frontier field
###assistant: SELECT result FROM table_name_10 WHERE field = "frontier field" |
###context:CREATE TABLE table_name_20 (date VARCHAR, field VARCHAR)
###human: What days were games played at Hofstra Stadium?
###assistant: SELECT date FROM table_name_20 WHERE field = "hofstra stadium" |
###context:CREATE TABLE table_name_99 (field VARCHAR, home_away VARCHAR, opponent VARCHAR)
###human: What Field was played at in an away game against the bayhawks?
###assistant: SELECT field FROM table_name_99 WHERE home_away = "away" AND opponent = "bayhawks" |
###context:CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR)
###human: What is the score of the game played on February 18?
###assistant: SELECT score FROM table_name_59 WHERE date = "february 18" |
###context:CREATE TABLE table_name_91 (home VARCHAR, visitor VARCHAR, date VARCHAR)
###human: Who was the home team that played against the Boston Bruins on January 11?
###assistant: SELECT home FROM table_name_91 WHERE visitor = "boston bruins" AND date = "january 11" |
###context:CREATE TABLE table_name_14 (year_born INTEGER, current_club VARCHAR, height VARCHAR)
###human: Name the sum of year for olimpija ljubljana with height less than 2.04
###assistant: SELECT SUM(year_born) FROM table_name_14 WHERE current_club = "olimpija ljubljana" AND height < 2.04 |
###context:CREATE TABLE table_name_10 (position VARCHAR, height VARCHAR)
###human: Name the position with height of 2.09
###assistant: SELECT position FROM table_name_10 WHERE height = 2.09 |
###context:CREATE TABLE table_name_64 (attendance VARCHAR, record VARCHAR)
###human: What was the attendance at the ballpark during the game where the Blue Jays had a record of 26-35 during the 1996 season?
###assistant: SELECT COUNT(attendance) FROM table_name_64 WHERE record = "26-35" |
###context:CREATE TABLE table_name_94 (nominated_work VARCHAR, award VARCHAR, year VARCHAR)
###human: What nominated work received a tony award in 2009?
###assistant: SELECT nominated_work FROM table_name_94 WHERE award = "tony award" AND year = 2009 |
###context:CREATE TABLE table_name_38 (result VARCHAR, year VARCHAR)
###human: What result in the table is from the year 2012?
###assistant: SELECT result FROM table_name_38 WHERE year = 2012 |
###context:CREATE TABLE table_name_59 (Id VARCHAR)
###human: Name the 2011 with 2010 of 2r
###assistant: SELECT 2011 FROM table_name_59 WHERE 2010 = "2r" |
###context:CREATE TABLE table_name_97 (Id VARCHAR)
###human: Name the 2012 when 2011 is qf
###assistant: SELECT 2012 FROM table_name_97 WHERE 2011 = "qf" |
###context:CREATE TABLE table_name_5 (Id VARCHAR)
###human: Name the 2012 for 2011 being 1r
###assistant: SELECT 2012 FROM table_name_5 WHERE 2011 = "1r" |
###context:CREATE TABLE table_name_58 (Id VARCHAR)
###human: Name the 2012 for 2011 being qf
###assistant: SELECT 2012 FROM table_name_58 WHERE 2011 = "qf" |
###context:CREATE TABLE table_name_37 (Id VARCHAR)
###human: Name the 2008 for 2012 f
###assistant: SELECT 2008 FROM table_name_37 WHERE 2012 = "f" |
###context:CREATE TABLE table_name_47 (location VARCHAR, date VARCHAR)
###human: What is the location of the match on February 29, 2012?
###assistant: SELECT location FROM table_name_47 WHERE date = "february 29, 2012" |
###context:CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR)
###human: What is the score of the match on November 15, 2011?
###assistant: SELECT score FROM table_name_44 WHERE date = "november 15, 2011" |
###context:CREATE TABLE table_name_48 (race VARCHAR, circuit VARCHAR)
###human: How many races were in the Mallala Motor Sport Park circuit?
###assistant: SELECT COUNT(race) FROM table_name_48 WHERE circuit = "mallala motor sport park" |
###context:CREATE TABLE table_name_52 (race INTEGER, location___state VARCHAR)
###human: What was the first race in Launceston, Tasmania?
###assistant: SELECT MIN(race) FROM table_name_52 WHERE location___state = "launceston, tasmania" |
###context:CREATE TABLE table_name_90 (team_1 VARCHAR)
###human: Name the 2nd leg for team 1 of hamburg
###assistant: SELECT 2 AS nd_leg FROM table_name_90 WHERE team_1 = "hamburg" |
###context:CREATE TABLE table_name_62 (role VARCHAR, studio VARCHAR, title VARCHAR)
###human: Name the role for mono studio and title of paradise canyon
###assistant: SELECT role FROM table_name_62 WHERE studio = "mono" AND title = "paradise canyon" |
###context:CREATE TABLE table_name_89 (title VARCHAR, leading_lady VARCHAR, role VARCHAR)
###human: Name the title for marion burns leading lady and role of john mason
###assistant: SELECT title FROM table_name_89 WHERE leading_lady = "marion burns" AND role = "john mason" |
###context:CREATE TABLE table_name_11 (role VARCHAR, title VARCHAR, studio VARCHAR, leading_lady VARCHAR)
###human: Name the role for studio of rep with sheila mannors leading lady and title of westward ho
###assistant: SELECT role FROM table_name_11 WHERE studio = "rep" AND leading_lady = "sheila mannors" AND title = "westward ho" |
###context:CREATE TABLE table_name_74 (studio VARCHAR, role VARCHAR)
###human: Name the studio for john scott
###assistant: SELECT studio FROM table_name_74 WHERE role = "john scott" |
###context:CREATE TABLE table_name_20 (total__000s_ INTEGER, year VARCHAR)
###human: What is the amount of 000s from 1996?
###assistant: SELECT SUM(total__000s_) FROM table_name_20 WHERE year = "1996" |
###context:CREATE TABLE table_name_35 (total__000s_ VARCHAR, germany VARCHAR)
###human: What was the amount of 000s when Germany had 16.6?
###assistant: SELECT total__000s_ FROM table_name_35 WHERE germany = 16.6 |
###context:CREATE TABLE table_name_59 (concacaf INTEGER, superliga VARCHAR, merconorte VARCHAR, player VARCHAR)
###human: Name the average concacaf for merconorte larger than 0 and player of jared borgetti
###assistant: SELECT AVG(concacaf) FROM table_name_59 WHERE merconorte > 0 AND player = "jared borgetti" AND superliga > 0 |
###context:CREATE TABLE table_name_92 (merconorte INTEGER, superliga VARCHAR, interliga VARCHAR, matches VARCHAR)
###human: Name the least merconorte for interliga of 2 and matches more than 260 with superliga more than 7
###assistant: SELECT MIN(merconorte) FROM table_name_92 WHERE interliga = 2 AND matches > 260 AND superliga > 7 |
###context:CREATE TABLE table_name_84 (outcome VARCHAR, score_in_final VARCHAR)
###human: What was the outcome for the match that ended in a score of 5β7, 6β4, [10β7]?
###assistant: SELECT outcome FROM table_name_84 WHERE score_in_final = "5β7, 6β4, [10β7]" |
###context:CREATE TABLE table_name_1 (surface VARCHAR, score_in_final VARCHAR)
###human: What was the surface of the match that ended in a score of 5β7, 6β4, [10β7]?
###assistant: SELECT surface FROM table_name_1 WHERE score_in_final = "5β7, 6β4, [10β7]" |
###context:CREATE TABLE table_name_72 (opponents_in_final VARCHAR, score_in_final VARCHAR)
###human: Who were the opponents in the match or matches that ended in a score of W/O?
###assistant: SELECT opponents_in_final FROM table_name_72 WHERE score_in_final = "w/o" |
###context:CREATE TABLE table_name_93 (chassis VARCHAR, year VARCHAR, engine VARCHAR, points VARCHAR)
###human: What kind of Chassis supports a Maserati Straight-6 engine with Points greater than 0 and built in the year 1955?
###assistant: SELECT chassis FROM table_name_93 WHERE engine = "maserati straight-6" AND points > 0 AND year = 1955 |
###context:CREATE TABLE table_name_82 (chassis VARCHAR, entrant VARCHAR)
###human: What kind of Chassis supports an Equipe Gordini Entrant?
###assistant: SELECT chassis FROM table_name_82 WHERE entrant = "equipe gordini" |
###context:CREATE TABLE table_name_95 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, engine VARCHAR, year VARCHAR)
###human: What kind of Entrant has a Maserati Straight-6 Engine, built in the year 1958 or early, and has a Maserati 250f Chassis with points less than 4?
###assistant: SELECT entrant FROM table_name_95 WHERE engine = "maserati straight-6" AND year < 1958 AND chassis = "maserati 250f" AND points < 4 |
###context:CREATE TABLE table_name_86 (year INTEGER, engine VARCHAR)
###human: What is the average year for Maserati Straight-4 Engines?
###assistant: SELECT AVG(year) FROM table_name_86 WHERE engine = "maserati straight-4" |
###context:CREATE TABLE table_name_56 (erp_w INTEGER, class VARCHAR, frequency_mhz VARCHAR)
###human: Name the sum of ERP W for class of d and frequency mhz of 98.7
###assistant: SELECT SUM(erp_w) FROM table_name_56 WHERE class = "d" AND frequency_mhz = 98.7 |
###context:CREATE TABLE table_name_19 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
###human: Name the ERP W with a frequency mhz more than 93.3 and city license of washington, georgia
###assistant: SELECT erp_w FROM table_name_19 WHERE frequency_mhz > 93.3 AND city_of_license = "washington, georgia" |
###context:CREATE TABLE table_name_41 (record VARCHAR, res VARCHAR, event VARCHAR)
###human: Which record has a result of loss in the Hero's 3 event?
###assistant: SELECT record FROM table_name_41 WHERE res = "loss" AND event = "hero's 3" |
###context:CREATE TABLE table_name_98 (event VARCHAR, record VARCHAR)
###human: Which event led to a 4-0 record?
###assistant: SELECT event FROM table_name_98 WHERE record = "4-0" |
###context:CREATE TABLE table_name_73 (location VARCHAR, record VARCHAR)
###human: Which location led to a 10-3 record?
###assistant: SELECT location FROM table_name_73 WHERE record = "10-3" |
###context:CREATE TABLE table_name_90 (record VARCHAR, opponent VARCHAR)
###human: In the match against Masahiro Oishi, what was the record?
###assistant: SELECT record FROM table_name_90 WHERE opponent = "masahiro oishi" |
###context:CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, played VARCHAR)
###human: What is the fewest number of points for clubs with less than 2 draws and more than 8 matches played?
###assistant: SELECT MIN(points) FROM table_name_38 WHERE drawn < 2 AND played > 8 |
###context:CREATE TABLE table_name_86 (drawn INTEGER, points VARCHAR, lost VARCHAR)
###human: What is the fewest drawn matches for teams with 2 points and fewer than 6 losses?
###assistant: SELECT MIN(drawn) FROM table_name_86 WHERE points = 2 AND lost < 6 |
###context:CREATE TABLE table_name_15 (lost INTEGER, team VARCHAR)
###human: What is the most number of losses for Quetta Zorawar?
###assistant: SELECT MAX(lost) FROM table_name_15 WHERE team = "quetta zorawar" |
###context:CREATE TABLE table_name_45 (drawn INTEGER, lost VARCHAR)
###human: What is the sum of the drawn values for teams with 2 losses?
###assistant: SELECT SUM(drawn) FROM table_name_45 WHERE lost = 2 |
###context:CREATE TABLE table_name_24 (round VARCHAR, margin VARCHAR)
###human: which round has a margin of 178?
###assistant: SELECT round FROM table_name_24 WHERE margin = "178" |
###context:CREATE TABLE table_name_38 (total INTEGER, gold VARCHAR, rank VARCHAR)
###human: Name the average total for gold less than 1 and rank less than 5
###assistant: SELECT AVG(total) FROM table_name_38 WHERE gold < 1 AND rank < 5 |
###context:CREATE TABLE table_name_92 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR)
###human: Name the sum of silver when total is mor ethan 1, bronze is 1 and gold is les than 0
###assistant: SELECT SUM(silver) FROM table_name_92 WHERE total > 1 AND bronze = 1 AND gold < 0 |
###context:CREATE TABLE table_name_70 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)
###human: Name the most gold when bronze is more than 0 and rank is more than 5 with total more than 2
###assistant: SELECT MAX(gold) FROM table_name_70 WHERE bronze > 0 AND rank > 5 AND total > 2 |
###context:CREATE TABLE table_name_27 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)
###human: Name the average bronze with silver more than 0, total of 6 and gold more than 0
###assistant: SELECT AVG(bronze) FROM table_name_27 WHERE silver > 0 AND total = 6 AND gold > 0 |
###context:CREATE TABLE table_name_10 (total INTEGER, gold VARCHAR, bronze VARCHAR)
###human: Name the sum of total with gold more than 1 and bronze more than 0
###assistant: SELECT SUM(total) FROM table_name_10 WHERE gold > 1 AND bronze > 0 |
###context:CREATE TABLE table_name_30 (country VARCHAR, director_s_ VARCHAR)
###human: What country did Jonas Geirnaert direct a film in?
###assistant: SELECT country FROM table_name_30 WHERE director_s_ = "jonas geirnaert" |
###context:CREATE TABLE table_name_35 (nominating_festival VARCHAR, country VARCHAR)
###human: What Nominating Festival took place in Germany?
###assistant: SELECT nominating_festival FROM table_name_35 WHERE country = "germany" |
###context:CREATE TABLE table_name_30 (category VARCHAR, country VARCHAR)
###human: What is the category of the film made in Switzerland?
###assistant: SELECT category FROM table_name_30 WHERE country = "switzerland" |
###context:CREATE TABLE table_name_80 (film VARCHAR, director_s_ VARCHAR)
###human: What film was directed by Sandro Aguilar?
###assistant: SELECT film FROM table_name_80 WHERE director_s_ = "sandro aguilar" |
###context:CREATE TABLE table_name_69 (language VARCHAR, number VARCHAR)
###human: Name the language that has number of 14
###assistant: SELECT language FROM table_name_69 WHERE number = "14" |
###context:CREATE TABLE table_name_73 (number VARCHAR, language VARCHAR)
###human: Name the number which has language of other
###assistant: SELECT number FROM table_name_73 WHERE language = "other" |
###context:CREATE TABLE table_name_77 (goals_for INTEGER, losses VARCHAR, goals_against VARCHAR)
###human: Tell me the average goals for losses of 19 and goals against more than 59
###assistant: SELECT AVG(goals_for) FROM table_name_77 WHERE losses = 19 AND goals_against > 59 |
###context:CREATE TABLE table_name_4 (position INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
###human: Name the average position when the goals against are more than 42 and draws less than 16 with goals of 44
###assistant: SELECT AVG(position) FROM table_name_4 WHERE goals_against > 42 AND goals_for = 44 AND draws < 16 |
###context:CREATE TABLE table_name_50 (regular_season VARCHAR, year VARCHAR)
###human: Which regular season was 2013 in?
###assistant: SELECT regular_season FROM table_name_50 WHERE year = 2013 |
###context:CREATE TABLE table_name_15 (year VARCHAR, playoffs VARCHAR)
###human: What year did the team make conference semifinals?
###assistant: SELECT COUNT(year) FROM table_name_15 WHERE playoffs = "conference semifinals" |
###context:CREATE TABLE table_name_21 (area__kmΒ²_ INTEGER, population VARCHAR, country VARCHAR, rank VARCHAR)
###human: What's the smallest area in Russia that is ranked 23 with a population more than 522,800?
###assistant: SELECT MIN(area__kmΒ²_) FROM table_name_21 WHERE country = "russia" AND rank = 23 AND population > 522 OFFSET 800 |
###context:CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)
###human: On the date of June 8 what was the record?
###assistant: SELECT record FROM table_name_32 WHERE date = "june 8" |
###context:CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)
###human: On the date of June 15 what was the score?
###assistant: SELECT score FROM table_name_32 WHERE date = "june 15" |
###context:CREATE TABLE table_name_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR, nationality VARCHAR)
###human: What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?
###assistant: SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = "toronto maple leafs" AND nationality = "united states" |
###context:CREATE TABLE table_name_43 (college_junior_club_team VARCHAR, nhl_team VARCHAR, position VARCHAR)
###human: What is the college/junior/club team of the defence player drafted by the New York Rangers?
###assistant: SELECT college_junior_club_team FROM table_name_43 WHERE nhl_team = "new york rangers" AND position = "defence" |
###context:CREATE TABLE table_name_78 (rank VARCHAR, chassis VARCHAR)
###human: What is the rank of the cadillac northstar lmp02 chassis?
###assistant: SELECT rank FROM table_name_78 WHERE chassis = "cadillac northstar lmp02" |
###context:CREATE TABLE table_name_1 (entrant VARCHAR, points VARCHAR, engine VARCHAR, rank VARCHAR)
###human: What is the entrant for the audi 3.6l turbo v8 engine and ranked 3rd with 163 points?
###assistant: SELECT entrant FROM table_name_1 WHERE engine = "audi 3.6l turbo v8" AND rank = "3rd" AND points = 163 |
###context:CREATE TABLE table_name_75 (rank VARCHAR, class VARCHAR, points VARCHAR, chassis VARCHAR)
###human: What is the rank with more than 123 points, an audi r8 chassis, and a lmp900 class?
###assistant: SELECT rank FROM table_name_75 WHERE points > 123 AND chassis = "audi r8" AND class = "lmp900" |
###context:CREATE TABLE table_name_57 (engine VARCHAR, points VARCHAR, year VARCHAR, entrant VARCHAR)
###human: What is the engine for the bmw motorsport entrant with 123 points before 2004?
###assistant: SELECT engine FROM table_name_57 WHERE year < 2004 AND entrant = "bmw motorsport" AND points = 123 |
###context:CREATE TABLE table_name_97 (points VARCHAR, combined_elapsed_time VARCHAR)
###human: Which points have a Combined elapsed time of 175d 20h 46m 04s?
###assistant: SELECT points FROM table_name_97 WHERE combined_elapsed_time = "175d 20h 46m 04s" |
###context:CREATE TABLE table_name_50 (yacht_name VARCHAR, combined_elapsed_time VARCHAR)
###human: Which yacht name has a Combined elapsed time of 179d 11h 58m 14s?
###assistant: SELECT yacht_name FROM table_name_50 WHERE combined_elapsed_time = "179d 11h 58m 14s" |
Subsets and Splits