training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_15 (ddr3_speed INTEGER, model VARCHAR)
###human: Name the average DDR3 speed for model e-350
###assistant: SELECT AVG(ddr3_speed) FROM table_name_15 WHERE model = "e-350" |
###context:CREATE TABLE table_name_10 (loss VARCHAR, date VARCHAR)
###human: who lost on august 21?
###assistant: SELECT loss FROM table_name_10 WHERE date = "august 21" |
###context:CREATE TABLE table_name_21 (record VARCHAR, opponent VARCHAR, date VARCHAR)
###human: On August 10, what was the record against the Expos?
###assistant: SELECT record FROM table_name_21 WHERE opponent = "expos" AND date = "august 10" |
###context:CREATE TABLE table_name_91 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###human: What is the average laps for lorenzo bandini with a grid under 3?
###assistant: SELECT AVG(laps) FROM table_name_91 WHERE driver = "lorenzo bandini" AND grid < 3 |
###context:CREATE TABLE table_name_28 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
###human: What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential?
###assistant: SELECT driver FROM table_name_28 WHERE laps < 53 AND grid < 14 AND time_retired = "differential" |
###context:CREATE TABLE table_name_63 (music VARCHAR, uncut_run_time VARCHAR)
###human: What music is in the film with an Uncut run time of 95 minutes?
###assistant: SELECT music FROM table_name_63 WHERE uncut_run_time = "95 minutes" |
###context:CREATE TABLE table_name_10 (country VARCHAR, music VARCHAR)
###human: What country is the film that has music of nino oliviero?
###assistant: SELECT country FROM table_name_10 WHERE music = "nino oliviero" |
###context:CREATE TABLE table_name_53 (music VARCHAR, year INTEGER)
###human: What music is in the film before 1963?
###assistant: SELECT music FROM table_name_53 WHERE year < 1963 |
###context:CREATE TABLE table_name_23 (music VARCHAR, year VARCHAR)
###human: What music is in the film before 1962?
###assistant: SELECT music FROM table_name_23 WHERE year = 1962 |
###context:CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
###human: Which team played as the home team when north melbourne played as away?
###assistant: SELECT home_team FROM table_name_75 WHERE away_team = "north melbourne" |
###context:CREATE TABLE table_name_37 (position VARCHAR, pick__number VARCHAR)
###human: what is the position of pick #53?
###assistant: SELECT position FROM table_name_37 WHERE pick__number = 53 |
###context:CREATE TABLE table_name_54 (position VARCHAR, player VARCHAR)
###human: what is the position for andrew paopao?
###assistant: SELECT position FROM table_name_54 WHERE player = "andrew paopao" |
###context:CREATE TABLE table_name_11 (venue VARCHAR, home_team VARCHAR)
###human: In which venue is South Melbourne the home team?
###assistant: SELECT venue FROM table_name_11 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)
###human: When South Melbourne was the home team, who was the away team?
###assistant: SELECT away_team FROM table_name_80 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR)
###human: What venue is Hawthorn the home team at?
###assistant: SELECT venue FROM table_name_16 WHERE home_team = "hawthorn" |
###context:CREATE TABLE table_name_97 (capacity VARCHAR, city_area VARCHAR)
###human: What is the capacity for the arena in Chester?
###assistant: SELECT capacity FROM table_name_97 WHERE city_area = "chester" |
###context:CREATE TABLE table_name_8 (arena VARCHAR, capacity VARCHAR)
###human: Which arena has a capactiy of 1,100?
###assistant: SELECT arena FROM table_name_8 WHERE capacity = "1,100" |
###context:CREATE TABLE table_name_90 (last_season VARCHAR, team VARCHAR)
###human: What is the last season that the Scottish Rocks played?
###assistant: SELECT last_season FROM table_name_90 WHERE team = "scottish rocks" |
###context:CREATE TABLE table_name_32 (arena VARCHAR, capacity VARCHAR, team VARCHAR)
###human: Which arena has the Milton Keynes Lions and a capacity of 800?
###assistant: SELECT arena FROM table_name_32 WHERE capacity = "800" AND team = "milton keynes lions" |
###context:CREATE TABLE table_name_65 (last_season VARCHAR, team VARCHAR)
###human: What is the last season the Worcester Wolves played?
###assistant: SELECT last_season FROM table_name_65 WHERE team = "worcester wolves" |
###context:CREATE TABLE table_name_17 (team VARCHAR, city_area VARCHAR)
###human: Which team is from Birmingham & Telford?
###assistant: SELECT team FROM table_name_17 WHERE city_area = "birmingham & telford" |
###context:CREATE TABLE table_name_5 (wins INTEGER, rank VARCHAR, events VARCHAR)
###human: Who has the least wins when ranked above 3 with over 10 events?
###assistant: SELECT MIN(wins) FROM table_name_5 WHERE rank < 3 AND events > 10 |
###context:CREATE TABLE table_name_62 (wins INTEGER, earnings___$__ VARCHAR, events VARCHAR, player VARCHAR)
###human: How many wins for billy casper over 8 events and uner $71,979 in earnings?
###assistant: SELECT MIN(wins) FROM table_name_62 WHERE events = 8 AND player = "billy casper" AND earnings___$__ < 71 OFFSET 979 |
###context:CREATE TABLE table_name_11 (rank INTEGER, earnings___$__ INTEGER)
###human: What is the lowest rank for a player earning $71,979?
###assistant: SELECT MIN(rank) FROM table_name_11 WHERE earnings___$__ < 71 OFFSET 979 |
###context:CREATE TABLE table_name_67 (gdp___bn__ VARCHAR, capital VARCHAR)
###human: What was the Gdp (bn) for the region that has ioannina as its Capital?
###assistant: SELECT gdp___bn__ FROM table_name_67 WHERE capital = "ioannina" |
###context:CREATE TABLE table_name_65 (region VARCHAR, area__km²_ VARCHAR)
###human: Which Region has an Area of 9,451km²?
###assistant: SELECT region FROM table_name_65 WHERE area__km²_ = "9,451" |
###context:CREATE TABLE table_name_73 (capital VARCHAR, population VARCHAR)
###human: Which capital has a population of 308,610?
###assistant: SELECT capital FROM table_name_73 WHERE population = "308,610" |
###context:CREATE TABLE table_name_70 (region VARCHAR, area__km²_ VARCHAR)
###human: Which Region has an area of 14,037km²?
###assistant: SELECT region FROM table_name_70 WHERE area__km²_ = "14,037" |
###context:CREATE TABLE table_name_74 (gdp___bn__ VARCHAR, area__sq_mi_ VARCHAR)
###human: What is the GDP for the region with an area of 7,263 sq. mi.?
###assistant: SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = "7,263" |
###context:CREATE TABLE table_name_43 (population VARCHAR, area__sq_mi_ VARCHAR)
###human: What is the population for the region with an area of 6,004 sq. Mi.?
###assistant: SELECT population FROM table_name_43 WHERE area__sq_mi_ = "6,004" |
###context:CREATE TABLE table_name_42 (episode__number INTEGER, airdate VARCHAR)
###human: What is the lowest episode # with an air date of October 31, 2001?
###assistant: SELECT MIN(episode__number) FROM table_name_42 WHERE airdate = "october 31, 2001" |
###context:CREATE TABLE table_name_65 (episode__number INTEGER, location VARCHAR, _number_in_season VARCHAR)
###human: What is the average episode # located in Tanzania and whose # in season is larger than 5?
###assistant: SELECT AVG(episode__number) FROM table_name_65 WHERE location = "tanzania" AND _number_in_season > 5 |
###context:CREATE TABLE table_name_75 (episode__number INTEGER, episode_name VARCHAR)
###human: What is the average episode # with a name of the origin of Donnie (part 1)?
###assistant: SELECT AVG(episode__number) FROM table_name_75 WHERE episode_name = "the origin of donnie (part 1)" |
###context:CREATE TABLE table_name_50 (airdate VARCHAR, _number_in_season VARCHAR)
###human: Which air date has 5 for # in season?
###assistant: SELECT airdate FROM table_name_50 WHERE _number_in_season = 5 |
###context:CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR)
###human: What venue is home for the Melbourne team?
###assistant: SELECT venue FROM table_name_60 WHERE home_team = "melbourne" |
###context:CREATE TABLE table_name_83 (license VARCHAR, system VARCHAR, name VARCHAR)
###human: Which License has a System of amiga, and a Name of pocketuae?
###assistant: SELECT license FROM table_name_83 WHERE system = "amiga" AND name = "pocketuae" |
###context:CREATE TABLE table_name_46 (name VARCHAR, license VARCHAR, actual_version VARCHAR)
###human: What name has a License of gpl, and an Actual version of 0.8.29wip4?
###assistant: SELECT name FROM table_name_46 WHERE license = "gpl" AND actual_version = "0.8.29wip4" |
###context:CREATE TABLE table_name_38 (platform VARCHAR, actual_version VARCHAR)
###human: Which platform has an Actual version of 0.147?
###assistant: SELECT platform FROM table_name_38 WHERE actual_version = "0.147" |
###context:CREATE TABLE table_name_47 (name VARCHAR, license VARCHAR, platform VARCHAR)
###human: Which name has a License of gpl, and a Platform of windows?
###assistant: SELECT name FROM table_name_47 WHERE license = "gpl" AND platform = "windows" |
###context:CREATE TABLE table_name_80 (system VARCHAR, name VARCHAR)
###human: Which system is named mess?
###assistant: SELECT system FROM table_name_80 WHERE name = "mess" |
###context:CREATE TABLE table_name_96 (platform VARCHAR, actual_version VARCHAR)
###human: Which Platform has an Actual version of 0.8.29?
###assistant: SELECT platform FROM table_name_96 WHERE actual_version = "0.8.29" |
###context:CREATE TABLE table_name_46 (year INTEGER, category VARCHAR, award VARCHAR)
###human: What's the earliest year that had a category of best supporting actress at the asian film awards?
###assistant: SELECT MIN(year) FROM table_name_46 WHERE category = "best supporting actress" AND award = "asian film awards" |
###context:CREATE TABLE table_name_22 (award VARCHAR, category VARCHAR)
###human: Which award show had the category of best supporting actress?
###assistant: SELECT award FROM table_name_22 WHERE category = "best supporting actress" |
###context:CREATE TABLE table_name_61 (result VARCHAR, nominated_work VARCHAR)
###human: Did the nominated work of white valentine win an award?
###assistant: SELECT result FROM table_name_61 WHERE nominated_work = "white valentine" |
###context:CREATE TABLE table_name_9 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)
###human: Which category was the berlin file up to win in 2013?
###assistant: SELECT category FROM table_name_9 WHERE year = 2013 AND nominated_work = "the berlin file" |
###context:CREATE TABLE table_name_88 (final_position___round VARCHAR, competition VARCHAR)
###human: What is the final position/round of the UEFA cup?
###assistant: SELECT final_position___round FROM table_name_88 WHERE competition = "uefa cup" |
###context:CREATE TABLE table_name_60 (last_match VARCHAR, final_position___round VARCHAR)
###human: When the final position/round is group stage, when is the last match?
###assistant: SELECT last_match FROM table_name_60 WHERE final_position___round = "group stage" |
###context:CREATE TABLE table_name_65 (last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)
###human: When did the DC Comics title that debuted in 1937 end?
###assistant: SELECT last_year FROM table_name_65 WHERE first_year = "1937" AND publisher = "dc comics" |
###context:CREATE TABLE table_name_13 (publisher VARCHAR, title VARCHAR)
###human: Who published Weird War Tales?
###assistant: SELECT publisher FROM table_name_13 WHERE title = "weird war tales" |
###context:CREATE TABLE table_name_75 (last_year VARCHAR, first_year VARCHAR)
###human: When did the comic which came out in 1982 end?
###assistant: SELECT last_year FROM table_name_75 WHERE first_year = "1982" |
###context:CREATE TABLE table_name_61 (title VARCHAR, last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)
###human: Which EC Comics title ran from 1950 to 1953?
###assistant: SELECT title FROM table_name_61 WHERE first_year = "1950" AND publisher = "ec comics" AND last_year = "1953" |
###context:CREATE TABLE table_name_41 (first_year VARCHAR, title VARCHAR)
###human: What is the first year for Popgun?
###assistant: SELECT first_year FROM table_name_41 WHERE title = "popgun" |
###context:CREATE TABLE table_name_91 (region VARCHAR, date VARCHAR, format VARCHAR)
###human: What's the region for an item on November 10, 2007 that's a cd?
###assistant: SELECT region FROM table_name_91 WHERE date = "november 10, 2007" AND format = "cd" |
###context:CREATE TABLE table_name_97 (catalog VARCHAR, format VARCHAR, label VARCHAR, region VARCHAR)
###human: What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?
###assistant: SELECT catalog FROM table_name_97 WHERE label = "columbia" AND region = "united states" AND format = "cd/dvd" |
###context:CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR)
###human: What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?
###assistant: SELECT catalog FROM table_name_1 WHERE label = "columbia" AND date = "december 11, 2007" AND region = "canada" |
###context:CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)
###human: What is the average crowd size at Princes Park?
###assistant: SELECT SUM(crowd) FROM table_name_84 WHERE venue = "princes park" |
###context:CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, free_practice_driver_s_ VARCHAR, chassis VARCHAR)
###human: who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato?
###assistant: SELECT constructor FROM table_name_42 WHERE free_practice_driver_s_ = "n/a" AND chassis = "005" AND driver = "takuma sato" |
###context:CREATE TABLE table_name_57 (rounds VARCHAR, entrant VARCHAR)
###human: what is the rounds when the entrant is scuderia ferrari marlboro?
###assistant: SELECT rounds FROM table_name_57 WHERE entrant = "scuderia ferrari marlboro" |
###context:CREATE TABLE table_name_3 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: what is the chassis when the entrant is mild seven renault f1 team and the driver is jarno trulli?
###assistant: SELECT chassis FROM table_name_3 WHERE entrant = "mild seven renault f1 team" AND driver = "jarno trulli" |
###context:CREATE TABLE table_name_34 (engine_† VARCHAR, tyre VARCHAR, driver VARCHAR)
###human: what is the engine when the tyre is m and the driver is fernando alonso?
###assistant: SELECT engine_† FROM table_name_34 WHERE tyre = "m" AND driver = "fernando alonso" |
###context:CREATE TABLE table_name_41 (constructor VARCHAR, driver VARCHAR)
###human: who is the constructor when the driver is juan pablo montoya?
###assistant: SELECT constructor FROM table_name_41 WHERE driver = "juan pablo montoya" |
###context:CREATE TABLE table_name_39 (attendance VARCHAR, record VARCHAR)
###human: How many people attended the game with a record of 86-56
###assistant: SELECT COUNT(attendance) FROM table_name_39 WHERE record = "86-56" |
###context:CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)
###human: Name the date that had a record of 90-60
###assistant: SELECT date FROM table_name_31 WHERE record = "90-60" |
###context:CREATE TABLE table_name_5 (sinclair_total INTEGER, rank VARCHAR, world_record__kg_ VARCHAR)
###human: What was the highest Sinclair Total that had a rank of 3, but a World Record smaller than 217?
###assistant: SELECT MAX(sinclair_total) FROM table_name_5 WHERE rank = 3 AND world_record__kg_ < 217 |
###context:CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)
###human: What is the name of the venue that they away team Collingwood played at?
###assistant: SELECT venue FROM table_name_95 WHERE away_team = "collingwood" |
###context:CREATE TABLE table_name_54 (date VARCHAR, away_team VARCHAR)
###human: What date did Carlton play as the away team?
###assistant: SELECT date FROM table_name_54 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)
###human: What was the home team's score at Windy Hill?
###assistant: SELECT home_team AS score FROM table_name_76 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_48 (grid INTEGER, laps VARCHAR, constructor VARCHAR)
###human: What is the lowest grid value with fewer than 17 laps and constructor Sauber - Petronas?
###assistant: SELECT MIN(grid) FROM table_name_48 WHERE laps < 17 AND constructor = "sauber - petronas" |
###context:CREATE TABLE table_name_79 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)
###human: Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta?
###assistant: SELECT time_retired FROM table_name_79 WHERE laps > 51 AND driver = "cristiano da matta" |
###context:CREATE TABLE table_name_57 (ties INTEGER, team VARCHAR, goals_against VARCHAR)
###human: How many ties did the Montreal Victorias have with a GA of less than 24?
###assistant: SELECT MAX(ties) FROM table_name_57 WHERE team = "montreal victorias" AND goals_against < 24 |
###context:CREATE TABLE table_name_28 (year VARCHAR, record VARCHAR)
###human: How many years was the record 3:40.8?
###assistant: SELECT COUNT(year) FROM table_name_28 WHERE record = "3:40.8" |
###context:CREATE TABLE table_name_79 (event VARCHAR, year VARCHAR, athlete VARCHAR)
###human: What event is before 1964 and has an athlete of lászló tábori gunnar nielsen?
###assistant: SELECT event FROM table_name_79 WHERE year < 1964 AND athlete = "lászló tábori gunnar nielsen" |
###context:CREATE TABLE table_name_27 (leading_scorer VARCHAR, home VARCHAR)
###human: Who is the leading scorer of the game where the Kings is the home team?
###assistant: SELECT leading_scorer FROM table_name_27 WHERE home = "kings" |
###context:CREATE TABLE table_name_19 (visitor VARCHAR, date VARCHAR)
###human: Who is the visitor team of the game on March 2, 2008?
###assistant: SELECT visitor FROM table_name_19 WHERE date = "march 2, 2008" |
###context:CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR)
###human: What is the attendance total of the game with the Lakers as the home team?
###assistant: SELECT COUNT(attendance) FROM table_name_67 WHERE home = "lakers" |
###context:CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)
###human: Which week had 39,056 people in attendance?
###assistant: SELECT week FROM table_name_89 WHERE attendance = "39,056" |
###context:CREATE TABLE table_name_25 (kickoff_ VARCHAR, a_ VARCHAR, week VARCHAR)
###human: What is the kickoff time for week 3?
###assistant: SELECT kickoff_[a_] FROM table_name_25 WHERE week = "3" |
###context:CREATE TABLE table_name_12 (kickoff_ VARCHAR, a_ VARCHAR, game_site VARCHAR)
###human: What is the kickoff time for the Hubert H. Humphrey Metrodome?
###assistant: SELECT kickoff_[a_] FROM table_name_12 WHERE game_site = "hubert h. humphrey metrodome" |
###context:CREATE TABLE table_name_10 (opponent VARCHAR, date VARCHAR)
###human: Who was the opponent on September 13, 1992?
###assistant: SELECT opponent FROM table_name_10 WHERE date = "september 13, 1992" |
###context:CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR)
###human: What is the result on November 1, 1992?
###assistant: SELECT result FROM table_name_53 WHERE date = "november 1, 1992" |
###context:CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)
###human: What was the away score when the home team was Melbourne?
###assistant: SELECT away_team AS score FROM table_name_84 WHERE home_team = "melbourne" |
###context:CREATE TABLE table_name_72 (away_team VARCHAR, home_team VARCHAR)
###human: Who played Collingwood?
###assistant: SELECT away_team FROM table_name_72 WHERE home_team = "collingwood" |
###context:CREATE TABLE table_name_78 (crowd INTEGER, home_team VARCHAR)
###human: How big was the crowd for Essendon?
###assistant: SELECT SUM(crowd) FROM table_name_78 WHERE home_team = "essendon" |
###context:CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR)
###human: Which team played against North Melbourne as the home team?
###assistant: SELECT home_team FROM table_name_5 WHERE away_team = "north melbourne" |
###context:CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
###human: Which home team plays at Punt Road Oval?
###assistant: SELECT home_team FROM table_name_40 WHERE venue = "punt road oval" |
###context:CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR)
###human: Which team plays at Punt Road Oval?
###assistant: SELECT home_team FROM table_name_75 WHERE venue = "punt road oval" |
###context:CREATE TABLE table_name_58 (away_team VARCHAR, venue VARCHAR)
###human: What did the away team score at corio oval?
###assistant: SELECT away_team AS score FROM table_name_58 WHERE venue = "corio oval" |
###context:CREATE TABLE table_name_54 (opponent VARCHAR, attendance VARCHAR)
###human: Who did the cowboys play when 65,537 attended?
###assistant: SELECT opponent FROM table_name_54 WHERE attendance = "65,537" |
###context:CREATE TABLE table_name_13 (tournament VARCHAR, opponents VARCHAR)
###human: What is the name of the tournament when antonia xenia tout nataša zorić was the opponenet?
###assistant: SELECT tournament FROM table_name_13 WHERE opponents = "antonia xenia tout nataša zorić" |
###context:CREATE TABLE table_name_33 (date VARCHAR, opponents VARCHAR)
###human: What date was georgie stoop emily webley-smith the opponent?
###assistant: SELECT date FROM table_name_33 WHERE opponents = "georgie stoop emily webley-smith" |
###context:CREATE TABLE table_name_44 (surface VARCHAR, opponents VARCHAR)
###human: What is the surface of the match when the opponent was iryna bremond valeria savinykh?
###assistant: SELECT surface FROM table_name_44 WHERE opponents = "iryna bremond valeria savinykh" |
###context:CREATE TABLE table_name_19 (opponents VARCHAR, tournament VARCHAR)
###human: What is the name of the opponent for the Sutton tournament?
###assistant: SELECT opponents FROM table_name_19 WHERE tournament = "sutton" |
###context:CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR)
###human: What is the name of the opponent when anastasia pivovarova was the partner?
###assistant: SELECT opponents FROM table_name_15 WHERE partner = "anastasia pivovarova" |
###context:CREATE TABLE table_name_53 (home_team VARCHAR)
###human: What is south melbourne's home side score?
###assistant: SELECT home_team AS score FROM table_name_53 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_98 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: What rounds did Roy Salvadori drive for David Brown Corporation?
###assistant: SELECT rounds FROM table_name_98 WHERE entrant = "david brown corporation" AND driver = "roy salvadori" |
###context:CREATE TABLE table_name_17 (result VARCHAR, year INTEGER)
###human: What are the results for years after 2007?
###assistant: SELECT result FROM table_name_17 WHERE year > 2007 |
###context:CREATE TABLE table_name_1 (character VARCHAR, result VARCHAR, year VARCHAR)
###human: Which characters after 2003 won?
###assistant: SELECT character FROM table_name_1 WHERE result = "won" AND year > 2003 |
###context:CREATE TABLE table_name_54 (category VARCHAR, for_the_show VARCHAR, year VARCHAR)
###human: For 2006 what category has the Show of kasautii zindagii kay?
###assistant: SELECT category FROM table_name_54 WHERE for_the_show = "kasautii zindagii kay" AND year = 2006 |
###context:CREATE TABLE table_name_43 (character VARCHAR, year VARCHAR)
###human: What is the character for 2005?
###assistant: SELECT character FROM table_name_43 WHERE year = 2005 |
###context:CREATE TABLE table_name_21 (category VARCHAR, year INTEGER)
###human: What is a category before 2012?
###assistant: SELECT category FROM table_name_21 WHERE year < 2012 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.