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