training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_71 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
###human: What was the Stage when Pascal Richard had the Mountains classification and Vladimir Poulnikov won?
###assistant: SELECT stage FROM table_name_71 WHERE mountains_classification = "pascal richard" AND winner = "vladimir poulnikov" |
###context:CREATE TABLE table_name_39 (score INTEGER, player VARCHAR)
###human: What's the total score of Danny Edwards?
###assistant: SELECT SUM(score) FROM table_name_39 WHERE player = "danny edwards" |
###context:CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR, country VARCHAR)
###human: Where was the place in Australia that had a score of 70?
###assistant: SELECT place FROM table_name_20 WHERE score = 70 AND country = "australia" |
###context:CREATE TABLE table_name_28 (episode VARCHAR, entrepreneur_s_ VARCHAR)
###human: The entrepreneur Adam Weaver was featured in which episode?
###assistant: SELECT episode FROM table_name_28 WHERE entrepreneur_s_ = "adam weaver" |
###context:CREATE TABLE table_name_60 (episode VARCHAR, entrepreneur_s_ VARCHAR)
###human: The entrepreneur Layla Bennett was featured in which episode?
###assistant: SELECT episode FROM table_name_60 WHERE entrepreneur_s_ = "layla bennett" |
###context:CREATE TABLE table_name_29 (population INTEGER, rank INTEGER)
###human: What is the highest population of the region with a rank bigger than 9?
###assistant: SELECT MAX(population) FROM table_name_29 WHERE rank > 9 |
###context:CREATE TABLE table_name_24 (population INTEGER, area__km_2__ VARCHAR, density__pop_per_km_2__ VARCHAR, rank VARCHAR)
###human: What is the average population of the region with a density less than 487, a rank of 9, and an area larger than 377,944?
###assistant: SELECT AVG(population) FROM table_name_24 WHERE density__pop_per_km_2__ < 487 AND rank = 9 AND area__km_2__ > 377 OFFSET 944 |
###context:CREATE TABLE table_name_3 (tdp___w__ VARCHAR, codename VARCHAR)
###human: What is the TDP (w) of the chipset with a codename sb850?
###assistant: SELECT COUNT(tdp___w__) FROM table_name_3 WHERE codename = "sb850" |
###context:CREATE TABLE table_name_46 (round VARCHAR, score INTEGER)
###human: Which round is a lower score than 21.5?
###assistant: SELECT round FROM table_name_46 WHERE score < 21.5 |
###context:CREATE TABLE table_name_25 (round VARCHAR, status VARCHAR, song VARCHAR)
###human: Which round status is in with this song: 叶良俊 - 爱你不是爱给别人看?
###assistant: SELECT round FROM table_name_25 WHERE status = "in" AND song = "叶良俊 - 爱你不是爱给别人看" |
###context:CREATE TABLE table_name_94 (status VARCHAR, score VARCHAR)
###human: Which status accompanies the score 21.5?
###assistant: SELECT status FROM table_name_94 WHERE score = 21.5 |
###context:CREATE TABLE table_name_86 (name VARCHAR, score VARCHAR, song VARCHAR)
###human: Wjat score is greater than 22 with this song: 林俊杰 - 木乃伊?
###assistant: SELECT name FROM table_name_86 WHERE score > 22 AND song = "林俊杰 - 木乃伊" |
###context:CREATE TABLE table_name_18 (round VARCHAR, song VARCHAR)
###human: What round has this song: 陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你?
###assistant: SELECT round FROM table_name_18 WHERE song = "陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你" |
###context:CREATE TABLE table_name_88 (artist VARCHAR, draw INTEGER)
###human: What is the artist with less than a 2 draw?
###assistant: SELECT artist FROM table_name_88 WHERE draw < 2 |
###context:CREATE TABLE table_name_73 (issue_price INTEGER, special_notes VARCHAR, mintage VARCHAR)
###human: What is the average issue price with from Toronto maple leafs gift set, and a Mintage of 3527?
###assistant: SELECT AVG(issue_price) FROM table_name_73 WHERE special_notes = "from toronto maple leafs gift set" AND mintage = "3527" |
###context:CREATE TABLE table_name_91 (theme VARCHAR, mintage VARCHAR)
###human: What theme has a mintage of 3527?
###assistant: SELECT theme FROM table_name_91 WHERE mintage = "3527" |
###context:CREATE TABLE table_name_45 (year INTEGER, mintage VARCHAR, issue_price VARCHAR)
###human: When was a mintage of 1264 with more than 24.95 issued?
###assistant: SELECT MAX(year) FROM table_name_45 WHERE mintage = "1264" AND issue_price > 24.95 |
###context:CREATE TABLE table_name_96 (year INTEGER, points VARCHAR, entrant VARCHAR, chassis VARCHAR)
###human: Name the most year for team motul brm and chassis of brm p201 and points less than 0
###assistant: SELECT MAX(year) FROM table_name_96 WHERE entrant = "team motul brm" AND chassis = "brm p201" AND points < 0 |
###context:CREATE TABLE table_name_25 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
###human: Name the entrant for 1975 and chassis of hill gh1
###assistant: SELECT entrant FROM table_name_25 WHERE year = 1975 AND chassis = "hill gh1" |
###context:CREATE TABLE table_name_49 (chassis VARCHAR, engine VARCHAR)
###human: Name the chassis for engine of brm v12
###assistant: SELECT chassis FROM table_name_49 WHERE engine = "brm v12" |
###context:CREATE TABLE table_name_96 (year INTEGER, points INTEGER)
###human: Name the most year for points more than 0
###assistant: SELECT MAX(year) FROM table_name_96 WHERE points > 0 |
###context:CREATE TABLE table_name_32 (points INTEGER, chassis VARCHAR, year VARCHAR)
###human: Name the sum of points for chassis of brm p160e and year more than 1974
###assistant: SELECT SUM(points) FROM table_name_32 WHERE chassis = "brm p160e" AND year > 1974 |
###context:CREATE TABLE table_name_64 (chassis VARCHAR, year INTEGER)
###human: What is the chassis after 1991?
###assistant: SELECT chassis FROM table_name_64 WHERE year > 1991 |
###context:CREATE TABLE table_name_54 (points INTEGER, year INTEGER)
###human: What are the average points after 1992?
###assistant: SELECT AVG(points) FROM table_name_54 WHERE year > 1992 |
###context:CREATE TABLE table_name_29 (points INTEGER, year VARCHAR, chassis VARCHAR)
###human: What is the sum of points in 1991, for footwork a11c chassis?
###assistant: SELECT SUM(points) FROM table_name_29 WHERE year = 1991 AND chassis = "footwork a11c" |
###context:CREATE TABLE table_name_43 (points VARCHAR, year VARCHAR, chassis VARCHAR, entrant VARCHAR, engine VARCHAR)
###human: How many points does an entrant of Martini Racing, the engine of an Alfa Romeo flat-12 a chassis of brabham bt45, and the year 1976 have?
###assistant: SELECT COUNT(points) FROM table_name_43 WHERE entrant = "martini racing" AND engine = "alfa romeo flat-12" AND chassis = "brabham bt45" AND year = 1976 |
###context:CREATE TABLE table_name_35 (chassis VARCHAR, year VARCHAR, entrant VARCHAR)
###human: Which chassis is from 1974 and was an entrant of Goldie Hexagon racing?
###assistant: SELECT chassis FROM table_name_35 WHERE year = 1974 AND entrant = "goldie hexagon racing" |
###context:CREATE TABLE table_name_23 (points INTEGER, engine VARCHAR, year VARCHAR)
###human: What is the average points of a Cosworth v8 engine in 1973.
###assistant: SELECT AVG(points) FROM table_name_23 WHERE engine = "cosworth v8" AND year = 1973 |
###context:CREATE TABLE table_name_76 (chassis VARCHAR, engine VARCHAR)
###human: Which chassis has an Alfa Romeo flat-12 engine.
###assistant: SELECT chassis FROM table_name_76 WHERE engine = "alfa romeo flat-12" |
###context:CREATE TABLE table_name_87 (score VARCHAR, attendance VARCHAR)
###human: What was the score of the game that had an attendance of 32,036?
###assistant: SELECT score FROM table_name_87 WHERE attendance = "32,036" |
###context:CREATE TABLE table_name_4 (date VARCHAR, record VARCHAR)
###human: On what date did the result leave the team with a record of 46-34?
###assistant: SELECT date FROM table_name_4 WHERE record = "46-34" |
###context:CREATE TABLE table_name_37 (opponent VARCHAR, round VARCHAR, time VARCHAR)
###human: Name the opponent with round of 1 and time of n/a
###assistant: SELECT opponent FROM table_name_37 WHERE round = "1" AND time = "n/a" |
###context:CREATE TABLE table_name_71 (record VARCHAR, opponent VARCHAR)
###human: Name the record with opponent of christian nielson
###assistant: SELECT record FROM table_name_71 WHERE opponent = "christian nielson" |
###context:CREATE TABLE table_name_59 (opponent VARCHAR, method VARCHAR)
###human: Name the opponent with decision
###assistant: SELECT opponent FROM table_name_59 WHERE method = "decision" |
###context:CREATE TABLE table_name_53 (year VARCHAR)
###human: What was the 3rd place value in 2011?
###assistant: SELECT 3 AS rd_place FROM table_name_53 WHERE year = "2011" |
###context:CREATE TABLE table_name_92 (tries_for VARCHAR, points_against VARCHAR)
###human: Name the tries for points against of 583
###assistant: SELECT tries_for FROM table_name_92 WHERE points_against = "583" |
###context:CREATE TABLE table_name_73 (points_for VARCHAR, played VARCHAR, tries_for VARCHAR)
###human: Nam the points for when tries for is 91 and played of 22
###assistant: SELECT points_for FROM table_name_73 WHERE played = "22" AND tries_for = "91" |
###context:CREATE TABLE table_name_95 (drawn VARCHAR, tries_for VARCHAR)
###human: Name the drawn for tries for of 42
###assistant: SELECT drawn FROM table_name_95 WHERE tries_for = "42" |
###context:CREATE TABLE table_name_60 (drawn VARCHAR, tries_against VARCHAR, points VARCHAR)
###human: Name the Drawn for tries against of 36 and points of 66
###assistant: SELECT drawn FROM table_name_60 WHERE tries_against = "36" AND points = "66" |
###context:CREATE TABLE table_name_92 (try_bonus VARCHAR, lost VARCHAR)
###human: Name the Try bonus with lost of 10
###assistant: SELECT try_bonus FROM table_name_92 WHERE lost = "10" |
###context:CREATE TABLE table_name_97 (points_for VARCHAR, points_against VARCHAR)
###human: Name the points for when points against is of 450
###assistant: SELECT points_for FROM table_name_97 WHERE points_against = "450" |
###context:CREATE TABLE table_name_3 (team_2 VARCHAR)
###human: What was the 1st leg when Team 2 was Aurora?
###assistant: SELECT 1 AS st_leg FROM table_name_3 WHERE team_2 = "aurora" |
###context:CREATE TABLE table_name_57 (team_1 VARCHAR)
###human: What was the 2nd leg when Team 1 was Chicago Croatian?
###assistant: SELECT 2 AS nd_leg FROM table_name_57 WHERE team_1 = "chicago croatian" |
###context:CREATE TABLE table_name_88 (team_2 VARCHAR, team_1 VARCHAR)
###human: Who was Team 2 when Team 1 was América?
###assistant: SELECT team_2 FROM table_name_88 WHERE team_1 = "américa" |
###context:CREATE TABLE table_name_55 (nationality VARCHAR, nhl_team VARCHAR, pick__number VARCHAR)
###human: Which nationality do the Montreal Canadiens belong to with a pick# of 25?
###assistant: SELECT nationality FROM table_name_55 WHERE nhl_team = "montreal canadiens" AND pick__number = "25" |
###context:CREATE TABLE table_name_92 (pick__number VARCHAR, nhl_team VARCHAR)
###human: What is the pick# for the California Golden Seals?
###assistant: SELECT pick__number FROM table_name_92 WHERE nhl_team = "california golden seals" |
###context:CREATE TABLE table_name_81 (goal INTEGER, venue VARCHAR)
###human: What was the Goal in Stade Roi Baudouin, Brussels?
###assistant: SELECT AVG(goal) FROM table_name_81 WHERE venue = "stade roi baudouin, brussels" |
###context:CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR, goal VARCHAR)
###human: What Venue had 2 or more Goals in a Friendly Competition?
###assistant: SELECT venue FROM table_name_48 WHERE competition = "friendly" AND goal > 2 |
###context:CREATE TABLE table_name_42 (site INTEGER, sex_and_other_data VARCHAR)
###human: Which Site that has a Sex and other data of old male?
###assistant: SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = "old male" |
###context:CREATE TABLE table_name_40 (age_groups VARCHAR, sport VARCHAR)
###human: What is the age group for figure skating?
###assistant: SELECT age_groups FROM table_name_40 WHERE sport = "figure skating" |
###context:CREATE TABLE table_name_58 (sport VARCHAR, age_groups VARCHAR, competition_name VARCHAR)
###human: what is the sport when the age group is 21 or younger and the competition name is world youth netball championships?
###assistant: SELECT sport FROM table_name_58 WHERE age_groups = "21 or younger" AND competition_name = "world youth netball championships" |
###context:CREATE TABLE table_name_42 (competition_name VARCHAR, age_groups VARCHAR, sport VARCHAR)
###human: what is the competition name when the age group is 17 or younger for athletics?
###assistant: SELECT competition_name FROM table_name_42 WHERE age_groups = "17 or younger" AND sport = "athletics" |
###context:CREATE TABLE table_name_37 (competing_entities VARCHAR, sport VARCHAR, age_groups VARCHAR, held_every VARCHAR)
###human: what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis?
###assistant: SELECT competing_entities FROM table_name_37 WHERE age_groups = "18 or younger" AND held_every = "one year" AND sport = "table tennis" |
###context:CREATE TABLE table_name_9 (result VARCHAR, episode VARCHAR, original_artist VARCHAR)
###human: What result did Janis Ian have in the episode of top 3?
###assistant: SELECT result FROM table_name_9 WHERE episode = "top 3" AND original_artist = "janis ian" |
###context:CREATE TABLE table_name_39 (result VARCHAR, episode VARCHAR)
###human: What was the result of the singer with the top 8?
###assistant: SELECT result FROM table_name_39 WHERE episode = "top 8" |
###context:CREATE TABLE table_name_72 (song_choice VARCHAR, episode VARCHAR)
###human: What song was chosen for the episode with the top 8?
###assistant: SELECT song_choice FROM table_name_72 WHERE episode = "top 8" |
###context:CREATE TABLE table_name_10 (episode VARCHAR, original_artist VARCHAR, result VARCHAR, order__number VARCHAR)
###human: Which episode had Hoagy carmichael safe with an order of 5?
###assistant: SELECT episode FROM table_name_10 WHERE result = "safe" AND order__number = "5" AND original_artist = "hoagy carmichael" |
###context:CREATE TABLE table_name_30 (order__number VARCHAR, result VARCHAR, original_artist VARCHAR)
###human: In what order were the Bee Gees as the artist when it was a result of bottom 3?
###assistant: SELECT order__number FROM table_name_30 WHERE result = "bottom 3" AND original_artist = "bee gees" |
###context:CREATE TABLE table_name_37 (draw VARCHAR, language VARCHAR, artist VARCHAR)
###human: Name the total number of drawn for danish and mathias
###assistant: SELECT COUNT(draw) FROM table_name_37 WHERE language = "danish" AND artist = "mathias" |
###context:CREATE TABLE table_name_63 (result VARCHAR, artist VARCHAR)
###human: Name the result for linn nygård
###assistant: SELECT result FROM table_name_63 WHERE artist = "linn nygård" |
###context:CREATE TABLE table_name_42 (song VARCHAR, draw VARCHAR, artist VARCHAR)
###human: Name the song for draw less than 7 and artists of martin & johannes
###assistant: SELECT song FROM table_name_42 WHERE draw < 7 AND artist = "martin & johannes" |
###context:CREATE TABLE table_name_73 (np___nnp VARCHAR, dp___da VARCHAR, acdp VARCHAR, others VARCHAR)
###human: Name the NP/NNP for ACDP of 1 and others of 1 and DP/DA of 5
###assistant: SELECT np___nnp FROM table_name_73 WHERE acdp = 1 AND others = 1 AND dp___da = 5 |
###context:CREATE TABLE table_name_43 (player VARCHAR, money___$__ INTEGER)
###human: Which player won less than $335?
###assistant: SELECT player FROM table_name_43 WHERE money___$__ < 335 |
###context:CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR)
###human: What was the place ranking for the player from Australia?
###assistant: SELECT place FROM table_name_43 WHERE country = "australia" |
###context:CREATE TABLE table_name_74 (money___ INTEGER, player VARCHAR)
###human: How much money did the player Ed Oliver win?
###assistant: SELECT SUM(money___) AS $__ FROM table_name_74 WHERE player = "ed oliver" |
###context:CREATE TABLE table_name_54 (competition VARCHAR, year VARCHAR, opponent VARCHAR)
###human: What competition did Parramatta Eels join after 1982?
###assistant: SELECT competition FROM table_name_54 WHERE year > 1982 AND opponent = "parramatta eels" |
###context:CREATE TABLE table_name_34 (year VARCHAR, competition VARCHAR, score VARCHAR)
###human: When did nswrfl has a score of 8-21?
###assistant: SELECT year FROM table_name_34 WHERE competition = "nswrfl" AND score = "8-21" |
###context:CREATE TABLE table_name_80 (year INTEGER, attendance INTEGER)
###human: How many years have less than 28,505 attendance?
###assistant: SELECT AVG(year) FROM table_name_80 WHERE attendance < 28 OFFSET 505 |
###context:CREATE TABLE table_name_48 (date VARCHAR, region VARCHAR, catalog VARCHAR)
###human: What Date is listed for the Region of France and Catalog of 82876-70291-2?
###assistant: SELECT date FROM table_name_48 WHERE region = "france" AND catalog = "82876-70291-2" |
###context:CREATE TABLE table_name_93 (format VARCHAR, region VARCHAR)
###human: Which Format is listed that has a Region of China?
###assistant: SELECT format FROM table_name_93 WHERE region = "china" |
###context:CREATE TABLE table_name_36 (date VARCHAR, label VARCHAR, region VARCHAR)
###human: What's the Date for the Label of Bertelsmann Music group and has a Region of Europe?
###assistant: SELECT date FROM table_name_36 WHERE label = "bertelsmann music group" AND region = "europe" |
###context:CREATE TABLE table_name_17 (attendance INTEGER, opponent VARCHAR, score VARCHAR)
###human: How many people attended the Royals game with a score of 17 - 6?
###assistant: SELECT SUM(attendance) FROM table_name_17 WHERE opponent = "royals" AND score = "17 - 6" |
###context:CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR)
###human: What was the result of April 27's game?
###assistant: SELECT score FROM table_name_21 WHERE date = "april 27" |
###context:CREATE TABLE table_name_51 (players_per_console VARCHAR, genre VARCHAR, year VARCHAR)
###human: For the strategy game in 1992, how many players were allowed per console?
###assistant: SELECT players_per_console FROM table_name_51 WHERE genre = "strategy" AND year = 1992 |
###context:CREATE TABLE table_name_72 (genre VARCHAR, developer VARCHAR, publisher VARCHAR, year VARCHAR)
###human: Which Genre was published by Atari and developed by NuFX in 1991?
###assistant: SELECT genre FROM table_name_72 WHERE publisher = "atari" AND year = 1991 AND developer = "nufx" |
###context:CREATE TABLE table_name_88 (year VARCHAR, developer VARCHAR)
###human: Which year was the game developed by Music Comp in?
###assistant: SELECT year FROM table_name_88 WHERE developer = "music comp" |
###context:CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)
###human: Name the record for august 31
###assistant: SELECT record FROM table_name_65 WHERE date = "august 31" |
###context:CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR)
###human: Name the opponent for august 6
###assistant: SELECT opponent FROM table_name_79 WHERE date = "august 6" |
###context:CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)
###human: Name the opponent with record of 52-58
###assistant: SELECT opponent FROM table_name_10 WHERE record = "52-58" |
###context:CREATE TABLE table_name_68 (class VARCHAR, quantity_made VARCHAR)
###human: What Class has a Quantity made of 5?
###assistant: SELECT class FROM table_name_68 WHERE quantity_made = 5 |
###context:CREATE TABLE table_name_5 (date_made VARCHAR, quantity_made VARCHAR)
###human: What is listed as the Date made with a Quantity made of 13?
###assistant: SELECT date_made FROM table_name_5 WHERE quantity_made = 13 |
###context:CREATE TABLE table_name_65 (year VARCHAR, points VARCHAR)
###human: What year shows 4 points?
###assistant: SELECT year FROM table_name_65 WHERE points = 4 |
###context:CREATE TABLE table_name_25 (points INTEGER, entrant VARCHAR, year VARCHAR)
###human: What is the most points when the entrant was Jaguar racing earlier than 2001?
###assistant: SELECT MAX(points) FROM table_name_25 WHERE entrant = "jaguar racing" AND year < 2001 |
###context:CREATE TABLE table_name_64 (entrant VARCHAR, year VARCHAR)
###human: What is the entrant in 1999?
###assistant: SELECT entrant FROM table_name_64 WHERE year = 1999 |
###context:CREATE TABLE table_name_42 (points INTEGER, chassis VARCHAR, year VARCHAR)
###human: What is the most points when the chassis was Jaguar R3 later than 2002?
###assistant: SELECT MAX(points) FROM table_name_42 WHERE chassis = "jaguar r3" AND year > 2002 |
###context:CREATE TABLE table_name_30 (_inches VARCHAR, skin_depth INTEGER, resistivity__10_−6_ohm_inches_ VARCHAR, relative_permeability VARCHAR)
###human: What is the sum of skin depth with a resistivity of 1.12 and a relative permeability larger than 1?
###assistant: SELECT SUM(skin_depth), _inches FROM table_name_30 WHERE resistivity__10_−6_ohm_inches_ = 1.12 AND relative_permeability > 1 |
###context:CREATE TABLE table_name_2 (weight VARCHAR, player VARCHAR)
###human: How much does Jonathan Bender weigh?
###assistant: SELECT weight FROM table_name_2 WHERE player = "jonathan bender" |
###context:CREATE TABLE table_name_6 (weight INTEGER, height VARCHAR)
###human: Of those with a height of 7-0, who weighs the most?
###assistant: SELECT MAX(weight) FROM table_name_6 WHERE height = "7-0" |
###context:CREATE TABLE table_name_52 (weight INTEGER, player VARCHAR)
###human: What does DeShawn Stevenson weigh?
###assistant: SELECT SUM(weight) FROM table_name_52 WHERE player = "deshawn stevenson" |
###context:CREATE TABLE table_name_96 (roll INTEGER, name VARCHAR, gender VARCHAR, authority VARCHAR)
###human: Name the highest roll for coed and authority of state integrated with sacred heart school
###assistant: SELECT MAX(roll) FROM table_name_96 WHERE gender = "coed" AND authority = "state integrated" AND name = "sacred heart school" |
###context:CREATE TABLE table_name_29 (displacement VARCHAR, redline__rpm_ VARCHAR, year VARCHAR)
###human: What is the displacement of the engine that has a Redline rpm higher than 4750, from 2005?
###assistant: SELECT displacement FROM table_name_29 WHERE redline__rpm_ > 4750 AND year = 2005 |
###context:CREATE TABLE table_name_21 (year VARCHAR, engine_code VARCHAR)
###human: From what year is the engine with engine code M57D30?
###assistant: SELECT year FROM table_name_21 WHERE engine_code = "m57d30" |
###context:CREATE TABLE table_name_49 (redline__rpm_ INTEGER, engine_code VARCHAR, year VARCHAR)
###human: What is the average Redline RPM of engines with engine code M57TUD30, made after 2002?
###assistant: SELECT AVG(redline__rpm_) FROM table_name_49 WHERE engine_code = "m57tud30" AND year > 2002 |
###context:CREATE TABLE table_name_43 (result_f_a VARCHAR, opponents VARCHAR)
###human: What was the result against Beijing Hyundai?
###assistant: SELECT result_f_a FROM table_name_43 WHERE opponents = "beijing hyundai" |
###context:CREATE TABLE table_name_86 (h___a VARCHAR, opponents VARCHAR)
###human: Was the game with Kashima antlers at home or away?
###assistant: SELECT h___a FROM table_name_86 WHERE opponents = "kashima antlers" |
###context:CREATE TABLE table_name_87 (date VARCHAR, opponents VARCHAR)
###human: What date was the game against Royal Antwerp?
###assistant: SELECT date FROM table_name_87 WHERE opponents = "royal antwerp" |
###context:CREATE TABLE table_name_19 (record VARCHAR, time VARCHAR)
###human: What Records Time is 3:38?
###assistant: SELECT record FROM table_name_19 WHERE time = "3:38" |
###context:CREATE TABLE table_name_47 (Id VARCHAR)
###human: What Country has a number smaller than 56 in 2005 and of 14 in 2006?
###assistant: SELECT COUNT(2004) FROM table_name_47 WHERE 2005 < 56 AND 2006 = 14 |
###context:CREATE TABLE table_name_31 (Id VARCHAR)
###human: What Country has a number smaller than 3 in 2004 and larger than 1 in 2005?
###assistant: SELECT COUNT(2006) FROM table_name_31 WHERE 2004 < 3 AND 2005 > 1 |
###context:CREATE TABLE table_name_2 (street_address VARCHAR, floors VARCHAR)
###human: The building with 48 floors has an address in Las Vegas of what?
###assistant: SELECT street_address FROM table_name_2 WHERE floors = 48 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.