training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_59 (cover_date VARCHAR, story_title VARCHAR)
###human: What is the Cover Date of the Story Title Spacehikers (Part 2)?
###assistant: SELECT cover_date FROM table_name_59 WHERE story_title = "spacehikers (part 2)" |
###context:CREATE TABLE table_name_60 (story_title VARCHAR, letterer_s VARCHAR)
###human: What is the Story Title that has Albers as the Letterer?
###assistant: SELECT story_title FROM table_name_60 WHERE letterer_s = "albers" |
###context:CREATE TABLE table_name_23 (drivers VARCHAR, laps VARCHAR, class VARCHAR)
###human: Who are the drivers with 133 laps in OC class?
###assistant: SELECT drivers FROM table_name_23 WHERE laps = 133 AND class = "oc" |
###context:CREATE TABLE table_name_62 (laps INTEGER, class VARCHAR, qual_pos VARCHAR)
###human: What are the most laps for the Qual position of 7 in the OC class?
###assistant: SELECT MAX(laps) FROM table_name_62 WHERE class = "oc" AND qual_pos = 7 |
###context:CREATE TABLE table_name_17 (laps INTEGER, team VARCHAR)
###human: What are Perkins Engineering's fewest laps?
###assistant: SELECT MIN(laps) FROM table_name_17 WHERE team = "perkins engineering" |
###context:CREATE TABLE table_name_48 (class VARCHAR, qual_pos VARCHAR)
###human: Which class has a Qual position of 30?
###assistant: SELECT class FROM table_name_48 WHERE qual_pos = 30 |
###context:CREATE TABLE table_name_36 (release_date VARCHAR, title VARCHAR, developer VARCHAR, version VARCHAR, category VARCHAR)
###human: What Release date has a Version of 1.0, a Category of utilities, a Developer of microsoft, and a Title of msn money?
###assistant: SELECT release_date FROM table_name_36 WHERE version = "1.0" AND category = "utilities" AND developer = "microsoft" AND title = "msn money" |
###context:CREATE TABLE table_name_86 (release_date VARCHAR, title VARCHAR, category VARCHAR, developer VARCHAR)
###human: What Release date has a Category of utilities, a Developer of microsoft, and a Title of chord finder?
###assistant: SELECT release_date FROM table_name_86 WHERE category = "utilities" AND developer = "microsoft" AND title = "chord finder" |
###context:CREATE TABLE table_name_12 (developer VARCHAR, release_date VARCHAR, title VARCHAR)
###human: What Developer has a Release date of 2010-12-16, and a Title of facebook?
###assistant: SELECT developer FROM table_name_12 WHERE release_date = "2010-12-16" AND title = "facebook" |
###context:CREATE TABLE table_name_83 (title VARCHAR, version VARCHAR)
###human: What Title has a Version of 1.0.0.3?
###assistant: SELECT title FROM table_name_83 WHERE version = "1.0.0.3" |
###context:CREATE TABLE table_name_77 (version VARCHAR, title VARCHAR)
###human: What Version has a Title of alarm clock?
###assistant: SELECT version FROM table_name_77 WHERE title = "alarm clock" |
###context:CREATE TABLE table_name_34 (version VARCHAR, developer VARCHAR, title VARCHAR)
###human: What Version has a Developer of dino games, and a Title of metronome?
###assistant: SELECT version FROM table_name_34 WHERE developer = "dino games" AND title = "metronome" |
###context:CREATE TABLE table_name_39 (venue VARCHAR, opposing_teams VARCHAR)
###human: Where did Wales play?
###assistant: SELECT venue FROM table_name_39 WHERE opposing_teams = "wales" |
###context:CREATE TABLE table_name_47 (venue VARCHAR, against VARCHAR)
###human: What venue has 19 against?
###assistant: SELECT venue FROM table_name_47 WHERE against = 19 |
###context:CREATE TABLE table_name_87 (award_ceremony VARCHAR, nominee VARCHAR, category VARCHAR)
###human: Which Award Ceremony has a Nominee of sarah travis, and a Category of the best orchestrations?
###assistant: SELECT award_ceremony FROM table_name_87 WHERE nominee = "sarah travis" AND category = "best orchestrations" |
###context:CREATE TABLE table_name_79 (year_signed INTEGER, reason_for_separation VARCHAR, year_separated VARCHAR)
###human: What is the most current year signed for separation of †and a separation year of 1997?
###assistant: SELECT MAX(year_signed) FROM table_name_79 WHERE reason_for_separation = "†" AND year_separated = "1997" |
###context:CREATE TABLE table_name_58 (chinese_name VARCHAR, english_name VARCHAR)
###human: What is the Chinese name for the English name Andy Lau?
###assistant: SELECT chinese_name FROM table_name_58 WHERE english_name = "andy lau" |
###context:CREATE TABLE table_name_74 (year_separated VARCHAR, reason_for_separation VARCHAR, english_name VARCHAR)
###human: What year was Wilfred Lau separated because Capital stopped recording music?
###assistant: SELECT year_separated FROM table_name_74 WHERE reason_for_separation = "capital stopped recording music" AND english_name = "wilfred lau" |
###context:CREATE TABLE table_name_30 (english_name VARCHAR, year_signed VARCHAR, chinese_name VARCHAR)
###human: What is the English name for the Chinese name of 蘇永康 later than 1974?
###assistant: SELECT english_name FROM table_name_30 WHERE year_signed > 1974 AND chinese_name = "蘇永康" |
###context:CREATE TABLE table_name_82 (year_signed VARCHAR, year_separated VARCHAR, chinese_name VARCHAR)
###human: What was the signed year for the Chinese name 蘇永康 who separated in 1987?
###assistant: SELECT year_signed FROM table_name_82 WHERE year_separated = "1987" AND chinese_name = "蘇永康" |
###context:CREATE TABLE table_name_44 (site VARCHAR, date VARCHAR)
###human: WHAT IS THE SITE ON OCTOBER 7?
###assistant: SELECT site FROM table_name_44 WHERE date = "october 7" |
###context:CREATE TABLE table_name_51 (date VARCHAR, rank__number VARCHAR)
###human: WHAT DATE HAD 6 RANK?
###assistant: SELECT date FROM table_name_51 WHERE rank__number = "6" |
###context:CREATE TABLE table_name_37 (opponent_number VARCHAR, date VARCHAR)
###human: WHAT OPPONENT WAS ON OCTOBER 7?
###assistant: SELECT opponent_number FROM table_name_37 WHERE date = "october 7" |
###context:CREATE TABLE table_name_48 (rank__number VARCHAR, result VARCHAR)
###human: WHAT RANK HAD A RESULT OF W13-3?
###assistant: SELECT rank__number FROM table_name_48 WHERE result = "w13-3" |
###context:CREATE TABLE table_name_51 (original_nfl_team VARCHAR, college VARCHAR, pos VARCHAR)
###human: What is the original NFL team of the College of Oregon DT Player?
###assistant: SELECT original_nfl_team FROM table_name_51 WHERE college = "oregon" AND pos = "dt" |
###context:CREATE TABLE table_name_6 (player VARCHAR, college VARCHAR)
###human: What Player is from Iowa State?
###assistant: SELECT player FROM table_name_6 WHERE college = "iowa state" |
###context:CREATE TABLE table_name_35 (result VARCHAR, attendance VARCHAR)
###human: What was the result of the game that had 77,702 people in attendance?
###assistant: SELECT result FROM table_name_35 WHERE attendance = "77,702" |
###context:CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)
###human: On what day did the team play the Indianapolis Colts?
###assistant: SELECT date FROM table_name_26 WHERE opponent = "indianapolis colts" |
###context:CREATE TABLE table_name_18 (played INTEGER, lost VARCHAR, goals_against VARCHAR, team VARCHAR)
###human: What is the average Played, when Goals Against is less than 63, when Team is "Nelson", and when Lost is greater than 16?
###assistant: SELECT AVG(played) FROM table_name_18 WHERE goals_against < 63 AND team = "nelson" AND lost > 16 |
###context:CREATE TABLE table_name_68 (goals_for VARCHAR, points_1 VARCHAR)
###human: What is the total number of Goals For, when Points 1 is "41"?
###assistant: SELECT COUNT(goals_for) FROM table_name_68 WHERE points_1 = "41" |
###context:CREATE TABLE table_name_21 (position INTEGER, drawn VARCHAR, lost VARCHAR, team VARCHAR)
###human: What is the lowest Position, when Lost is greater than 15, when Team is Cheadle Town, and when Drawn is greater than 8?
###assistant: SELECT MIN(position) FROM table_name_21 WHERE lost > 15 AND team = "cheadle town" AND drawn > 8 |
###context:CREATE TABLE table_name_75 (position INTEGER, points_1 VARCHAR, goals_against VARCHAR)
###human: What is the lowest Position, when Points 1 is "39", and when Goals Against is greater than 49?
###assistant: SELECT MIN(position) FROM table_name_75 WHERE points_1 = "39" AND goals_against > 49 |
###context:CREATE TABLE table_name_72 (season VARCHAR, head_coach VARCHAR, europe VARCHAR)
###human: WHAT SEASON HAD COACH JONAS KAZLAUSKAS AT champions cup group stage?
###assistant: SELECT season FROM table_name_72 WHERE head_coach = "jonas kazlauskas" AND europe = "champions cup group stage" |
###context:CREATE TABLE table_name_69 (lkf_cup VARCHAR, europe VARCHAR, regional_competitions VARCHAR)
###human: WHAT IS THE LKF CUP WITH euroleague group stage AND bbl elite division finalist?
###assistant: SELECT lkf_cup FROM table_name_69 WHERE europe = "euroleague group stage" AND regional_competitions = "bbl elite division finalist" |
###context:CREATE TABLE table_name_68 (europe VARCHAR, head_coach VARCHAR, regional_competitions VARCHAR)
###human: WHAT IS THE ERUPE WITH HEAD COACH vainauskas , sakalauskas AND WITH NEBL FINALIST?
###assistant: SELECT europe FROM table_name_68 WHERE head_coach = "vainauskas , sakalauskas" AND regional_competitions = "nebl finalist" |
###context:CREATE TABLE table_name_79 (australian VARCHAR, examples VARCHAR)
###human: What is the entry for the Australian sound that has an example of illyria, cf. cirrhosis?
###assistant: SELECT australian FROM table_name_79 WHERE examples = "illyria, cf. cirrhosis" |
###context:CREATE TABLE table_name_73 (examples VARCHAR, american VARCHAR, semi_closed_initial_unstressed_vowels VARCHAR)
###human: What is the example for the American of ɪ, ə, and a Semi-closed initial unstressed vowels of y /ɨ/?
###assistant: SELECT examples FROM table_name_73 WHERE american = "ɪ, ə" AND semi_closed_initial_unstressed_vowels = "y /ɨ/" |
###context:CREATE TABLE table_name_88 (field VARCHAR, opponent VARCHAR, result VARCHAR)
###human: What field is an opponent of cannons and resulted with w 16-11?
###assistant: SELECT field FROM table_name_88 WHERE opponent = "cannons" AND result = "w 16-11" |
###context:CREATE TABLE table_name_89 (result VARCHAR, field VARCHAR)
###human: what is the result from texas stadium?
###assistant: SELECT result FROM table_name_89 WHERE field = "texas stadium" |
###context:CREATE TABLE table_name_46 (field VARCHAR, result VARCHAR)
###human: What field resulted with w 18-12?
###assistant: SELECT field FROM table_name_46 WHERE result = "w 18-12" |
###context:CREATE TABLE table_name_63 (field VARCHAR, result VARCHAR)
###human: What field had results of w 18-12?
###assistant: SELECT field FROM table_name_63 WHERE result = "w 18-12" |
###context:CREATE TABLE table_name_1 (points INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, wins VARCHAR)
###human: WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?
###assistant: SELECT MAX(points) FROM table_name_1 WHERE goals_for > 48 AND wins < 19 AND goals_against < 44 AND draws > 5 |
###context:CREATE TABLE table_name_73 (points VARCHAR, position VARCHAR, wins VARCHAR, club VARCHAR)
###human: WHAT ARE THE TOTAL NUMBER OF POINTS WITH WINS SMALLER THAN 14, AT SD INDAUCHU, POSITION BIGGER THAN 12?
###assistant: SELECT COUNT(points) FROM table_name_73 WHERE wins < 14 AND club = "sd indauchu" AND position > 12 |
###context:CREATE TABLE table_name_9 (goals_for INTEGER, draws VARCHAR, losses VARCHAR)
###human: WHAT ARE THE GOALS WITH DRAWS SMALLER THAN 6, AND LOSSES SMALLER THAN 7?
###assistant: SELECT AVG(goals_for) FROM table_name_9 WHERE draws < 6 AND losses < 7 |
###context:CREATE TABLE table_name_9 (Id VARCHAR)
###human: How many 2010s have a 2007 greater than 4.6, and 8.2 as a 2006?
###assistant: SELECT COUNT(2010) FROM table_name_9 WHERE 2007 > 4.6 AND 2006 = 8.2 |
###context:CREATE TABLE table_name_21 (Id VARCHAR)
###human: What 2010 has a 2006 less than 6.9, a 2008 greater than 1.6, and 2 for 2007?
###assistant: SELECT 2010 FROM table_name_21 WHERE 2006 < 6.9 AND 2008 > 1.6 AND 2007 = 2 |
###context:CREATE TABLE table_name_82 (Id VARCHAR)
###human: How many 2008s have 6.9 as a 2006, with a 2007 less than 7.1?
###assistant: SELECT COUNT(2008) FROM table_name_82 WHERE 2006 = 6.9 AND 2007 < 7.1 |
###context:CREATE TABLE table_name_80 (Id VARCHAR)
###human: What is the highest 2010 that has a 2009 less than 6.5, 0.4 as the 2008, with a 2007 less than 0.5?
###assistant: SELECT MAX(2010) FROM table_name_80 WHERE 2009 < 6.5 AND 2008 = 0.4 AND 2007 < 0.5 |
###context:CREATE TABLE table_name_71 (Id VARCHAR)
###human: How many 2007s have 0.2 as a 2006, with a 2010 less than 0.1?
###assistant: SELECT SUM(2007) FROM table_name_71 WHERE 2006 = 0.2 AND 2010 < 0.1 |
###context:CREATE TABLE table_name_41 (tournament VARCHAR, outcome VARCHAR, score VARCHAR)
###human: What Tournament has an Outcome of runner-up, and a Score of 4–6, 3–6?
###assistant: SELECT tournament FROM table_name_41 WHERE outcome = "runner-up" AND score = "4–6, 3–6" |
###context:CREATE TABLE table_name_18 (surface VARCHAR, date VARCHAR)
###human: What Surface has a Date of 1 september 2008?
###assistant: SELECT surface FROM table_name_18 WHERE date = "1 september 2008" |
###context:CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)
###human: What Score has an Opponent of nina bratchikova?
###assistant: SELECT score FROM table_name_58 WHERE opponent = "nina bratchikova" |
###context:CREATE TABLE table_name_61 (surface VARCHAR, tournament VARCHAR)
###human: What Surface has a Tournament of pune, india?
###assistant: SELECT surface FROM table_name_61 WHERE tournament = "pune, india" |
###context:CREATE TABLE table_name_64 (tournament VARCHAR, date VARCHAR)
###human: What Tournament has a Date of 20 december 2010?
###assistant: SELECT tournament FROM table_name_64 WHERE date = "20 december 2010" |
###context:CREATE TABLE table_name_6 (tournament VARCHAR, score VARCHAR)
###human: What Tournament has a Score of 5–7, 2–6?
###assistant: SELECT tournament FROM table_name_6 WHERE score = "5–7, 2–6" |
###context:CREATE TABLE table_name_7 (place VARCHAR, score VARCHAR)
###human: Which Place has a Score of 71-70=141?
###assistant: SELECT place FROM table_name_7 WHERE score = 71 - 70 = 141 |
###context:CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
###human: Which Country has a Score of 69-66=135?
###assistant: SELECT country FROM table_name_76 WHERE score = 69 - 66 = 135 |
###context:CREATE TABLE table_name_33 (country VARCHAR, to_par VARCHAR)
###human: Which Country has a To par of –9?
###assistant: SELECT country FROM table_name_33 WHERE to_par = "–9" |
###context:CREATE TABLE table_name_14 (to_par VARCHAR, country VARCHAR, score VARCHAR)
###human: Which To par has a Country of united states, and a Score of 71-70=141?
###assistant: SELECT to_par FROM table_name_14 WHERE country = "united states" AND score = 71 - 70 = 141 |
###context:CREATE TABLE table_name_5 (player VARCHAR, to_par VARCHAR, country VARCHAR)
###human: Which Player has a To par of –5, and a Country of england?
###assistant: SELECT player FROM table_name_5 WHERE to_par = "–5" AND country = "england" |
###context:CREATE TABLE table_name_89 (category VARCHAR, award VARCHAR, year VARCHAR)
###human: Which Category has an Award of monte carlo tv festival awards, and a Year larger than 2010?
###assistant: SELECT category FROM table_name_89 WHERE award = "monte carlo tv festival awards" AND year > 2010 |
###context:CREATE TABLE table_name_42 (year VARCHAR, result VARCHAR)
###human: How many years have a Result of nominated?
###assistant: SELECT COUNT(year) FROM table_name_42 WHERE result = "nominated" |
###context:CREATE TABLE table_name_82 (result VARCHAR, category VARCHAR)
###human: Which Result has a Category of outstanding actor (drama)?
###assistant: SELECT result FROM table_name_82 WHERE category = "outstanding actor (drama)" |
###context:CREATE TABLE table_name_45 (result VARCHAR, award VARCHAR)
###human: Which Result has an Award of virgin media tv awards?
###assistant: SELECT result FROM table_name_45 WHERE award = "virgin media tv awards" |
###context:CREATE TABLE table_name_60 (prize_money VARCHAR, round VARCHAR)
###human: What is the prize money for the second round qualifying that is listed?
###assistant: SELECT prize_money FROM table_name_60 WHERE round = "second round qualifying" |
###context:CREATE TABLE table_name_83 (year INTEGER, outcome VARCHAR, championship VARCHAR)
###human: How many years have runner-up as the outcome, and indian wells as the championship?
###assistant: SELECT SUM(year) FROM table_name_83 WHERE outcome = "runner-up" AND championship = "indian wells" |
###context:CREATE TABLE table_name_80 (score VARCHAR, year VARCHAR)
###human: What score has 2000 as the year?
###assistant: SELECT score FROM table_name_80 WHERE year = 2000 |
###context:CREATE TABLE table_name_63 (surface VARCHAR, championship VARCHAR, outcome VARCHAR)
###human: What surface has indian wells as the championship, with winner as the outcome?
###assistant: SELECT surface FROM table_name_63 WHERE championship = "indian wells" AND outcome = "winner" |
###context:CREATE TABLE table_name_16 (money___ INTEGER, to_par INTEGER)
###human: Which average money has a To par larger than 12?
###assistant: SELECT AVG(money___) AS $__ FROM table_name_16 WHERE to_par > 12 |
###context:CREATE TABLE table_name_18 (country VARCHAR, to_par VARCHAR, money___$__ VARCHAR, score VARCHAR)
###human: Which Country has a To par smaller than 6, and a Money ($) larger than 700, and a Score of 69-73-70-71=283?
###assistant: SELECT country FROM table_name_18 WHERE to_par < 6 AND money___$__ > 700 AND score = 69 - 73 - 70 - 71 = 283 |
###context:CREATE TABLE table_name_76 (money___ INTEGER, to_par VARCHAR, place VARCHAR, player VARCHAR)
###human: Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12?
###assistant: SELECT AVG(money___) AS $__ FROM table_name_76 WHERE place = "t10" AND player = "denny shute" AND to_par > 12 |
###context:CREATE TABLE table_name_93 (country VARCHAR, money___$__ VARCHAR, place VARCHAR)
###human: Which Country has a Money ($) of 0, and a Place of t10?
###assistant: SELECT country FROM table_name_93 WHERE money___$__ = 0 AND place = "t10" |
###context:CREATE TABLE table_name_97 (flap INTEGER, bike VARCHAR, race VARCHAR)
###human: What is the highest FLap by a Honda NSR500 bike after Race 16?
###assistant: SELECT MAX(flap) FROM table_name_97 WHERE bike = "honda nsr500" AND race > 16 |
###context:CREATE TABLE table_name_8 (tonnage__grt_ VARCHAR, nationality VARCHAR, date VARCHAR)
###human: How much tonnage Tonnage (GRT) has a Nationality of united kingdom, and a Date of 27 june 1941?
###assistant: SELECT COUNT(tonnage__grt_) FROM table_name_8 WHERE nationality = "united kingdom" AND date = "27 june 1941" |
###context:CREATE TABLE table_name_39 (nationality VARCHAR, date VARCHAR)
###human: Which Nationality has a Date of 8 may 1942?
###assistant: SELECT nationality FROM table_name_39 WHERE date = "8 may 1942" |
###context:CREATE TABLE table_name_39 (round INTEGER, nationality VARCHAR, draft VARCHAR)
###human: What is Canada's highest round before 1973?
###assistant: SELECT MAX(round) FROM table_name_39 WHERE nationality = "canada" AND draft < 1973 |
###context:CREATE TABLE table_name_17 (year INTEGER, title_of_work VARCHAR, category VARCHAR)
###human: What year was The Saber nominated for best action?
###assistant: SELECT AVG(year) FROM table_name_17 WHERE title_of_work = "saber" AND category = "best action" |
###context:CREATE TABLE table_name_93 (award VARCHAR, category VARCHAR, year VARCHAR, title_of_work VARCHAR)
###human: What was awarded before 2013 to the Saber in the category of Best Action?
###assistant: SELECT award FROM table_name_93 WHERE year < 2013 AND title_of_work = "saber" AND category = "best action" |
###context:CREATE TABLE table_name_97 (date VARCHAR, plant_patent_number VARCHAR)
###human: What date had the patent number US plant patent 12098?
###assistant: SELECT date FROM table_name_97 WHERE plant_patent_number = "us plant patent 12098" |
###context:CREATE TABLE table_name_39 (mutated_from VARCHAR, plant_patent_number VARCHAR)
###human: What's the mutated having a patent number of US plant patent 9645?
###assistant: SELECT mutated_from FROM table_name_39 WHERE plant_patent_number = "us plant patent 9645" |
###context:CREATE TABLE table_name_63 (plant_patent_number VARCHAR, habit VARCHAR, mutated_from VARCHAR)
###human: What's the patent number when it was mutated from Yakata 7001 and a standard habit?
###assistant: SELECT plant_patent_number FROM table_name_63 WHERE habit = "standard" AND mutated_from = "yakata 7001" |
###context:CREATE TABLE table_name_21 (plant_patent_number VARCHAR)
###human: What's the patent number of Fukuda?
###assistant: SELECT plant_patent_number FROM table_name_21 WHERE "inventor" = "fukuda" |
###context:CREATE TABLE table_name_2 (mutated_from VARCHAR, habit VARCHAR, pattern VARCHAR)
###human: Who's the inventor when it was mutated from Redsport Type 2, has a stripe pattern and a spur habit?
###assistant: SELECT "inventor" FROM table_name_2 WHERE habit = "spur" AND pattern = "stripe" AND mutated_from = "redsport type 2" |
###context:CREATE TABLE table_name_19 (mutated_from VARCHAR, assignee VARCHAR)
###human: What's the mutated of Auvil?
###assistant: SELECT mutated_from FROM table_name_19 WHERE assignee = "auvil" |
###context:CREATE TABLE table_name_37 (model VARCHAR, top_speed VARCHAR)
###human: Which model has a top speed of 231km/h (143mph)?
###assistant: SELECT model FROM table_name_37 WHERE top_speed = "231km/h (143mph)" |
###context:CREATE TABLE table_name_26 (model VARCHAR, top_speed VARCHAR)
###human: How fast can the SLK200K, with a top speed of 236km/h (147mph), accelerate to 100km/h (62mph)?
###assistant: SELECT 0 AS _100km_h__62mph_ FROM table_name_26 WHERE model = "slk200k" AND top_speed = "236km/h (147mph)" |
###context:CREATE TABLE table_name_68 (top_speed VARCHAR)
###human: What is the 0–100km/h (62mph) acceleration of the model with a top speed of 208km/h (129mph)?
###assistant: SELECT 0 AS _100km_h__62mph_ FROM table_name_68 WHERE top_speed = "208km/h (129mph)" |
###context:CREATE TABLE table_name_4 (top_speed VARCHAR, model VARCHAR, power VARCHAR)
###human: What is the top speed of the SLK200K that produces 122kw (163hp)?
###assistant: SELECT top_speed FROM table_name_4 WHERE model = "slk200k" AND power = "122kw (163hp)" |
###context:CREATE TABLE table_name_80 (latin VARCHAR, greek VARCHAR)
###human: What is the Latin term for the Greek symbol μ?
###assistant: SELECT latin FROM table_name_80 WHERE greek = "μ" |
###context:CREATE TABLE table_name_78 (role VARCHAR, closing_broadway_cast VARCHAR)
###human: Which role had a closing broadway cast of Adam Grupper?
###assistant: SELECT role FROM table_name_78 WHERE closing_broadway_cast = "adam grupper" |
###context:CREATE TABLE table_name_75 (original_us_tour_cast VARCHAR, original_broadway_cast VARCHAR)
###human: What was the original US Tour cast when the original broadway was Kevin Chamberlin?
###assistant: SELECT original_us_tour_cast FROM table_name_75 WHERE original_broadway_cast = "kevin chamberlin" |
###context:CREATE TABLE table_name_49 (original_nonequity_tour_cast VARCHAR, original_broadway_cast VARCHAR)
###human: What was the original nonequity tour when the original broadway was Kevin Chamberlin?
###assistant: SELECT original_nonequity_tour_cast FROM table_name_49 WHERE original_broadway_cast = "kevin chamberlin" |
###context:CREATE TABLE table_name_8 (role VARCHAR, original_broadway_cast VARCHAR)
###human: What was the role when the original broadway was Adam Riegler?
###assistant: SELECT role FROM table_name_8 WHERE original_broadway_cast = "adam riegler" |
###context:CREATE TABLE table_name_78 (international INTEGER, domestic VARCHAR, year VARCHAR)
###human: What is the number for the international with 669 domestic earlier than 2005?
###assistant: SELECT AVG(international) FROM table_name_78 WHERE domestic = 669 AND year < 2005 |
###context:CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)
###human: What was the score on 14 march 2004?
###assistant: SELECT score FROM table_name_39 WHERE date = "14 march 2004" |
###context:CREATE TABLE table_name_75 (season VARCHAR, winners VARCHAR, finalists VARCHAR)
###human: In what season was Kilmarnock a finalist and Hibernian the winner?
###assistant: SELECT season FROM table_name_75 WHERE winners = "hibernian" AND finalists = "kilmarnock" |
###context:CREATE TABLE table_name_53 (finalists VARCHAR, season VARCHAR)
###human: Who were the finalists in the 1972–73 season?
###assistant: SELECT finalists FROM table_name_53 WHERE season = "1972–73" |
###context:CREATE TABLE table_name_21 (season VARCHAR, score VARCHAR, winners VARCHAR)
###human: In which season did the Rangers win with a score of 2–1?
###assistant: SELECT season FROM table_name_21 WHERE score = "2–1" AND winners = "rangers" |
###context:CREATE TABLE table_name_15 (date VARCHAR, winners VARCHAR)
###human: When did Motherwell win?
###assistant: SELECT date FROM table_name_15 WHERE winners = "motherwell" |
###context:CREATE TABLE table_name_90 (burglary INTEGER, forcible_rape VARCHAR, motor_vehicle_theft VARCHAR)
###human: What is the smallest rate of burglary when forcible rape is 39.1 and motor vehicle theft is less than 568.8?
###assistant: SELECT MIN(burglary) FROM table_name_90 WHERE forcible_rape = "39.1" AND motor_vehicle_theft < 568.8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.