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