question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the highest pick for a year after 2010, and a round smaller than 1?
CREATE TABLE table_name_11 (pick INTEGER, year VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT MAX(pick) FROM table_name_11 WHERE year > 2010 AND round < 1" }
What is the highest pick for a year after 2010 and a round larger than 1?
CREATE TABLE table_name_41 (pick INTEGER, year VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT MAX(pick) FROM table_name_41 WHERE year > 2010 AND round > 1" }
What is the sum for the pick of the year 2009, and a round smaller than 2 and an NBA Club Denver Nuggets?
CREATE TABLE table_name_95 (pick INTEGER, nba_club VARCHAR, year VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT SUM(pick) FROM table_name_95 WHERE year = 2009 AND round < 2 AND nba_club = \"denver nuggets\"" }
Can you tell me the total number of Total that has the First round of 0, and the Finals smaller than 5?
CREATE TABLE table_name_23 (total VARCHAR, first_round VARCHAR, finals VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_23 WHERE first_round = \"0\" AND finals < 5" }
Can you tell me the average Conference Finals that has Finals smaller than 5?
CREATE TABLE table_name_32 (conference_finals INTEGER, finals INTEGER)
{ "SQL_Query": "SELECT AVG(conference_finals) FROM table_name_32 WHERE finals < 5" }
Can you tell me the Finals that has the Conference Finals smaller than 12, and the Semifinals of 0, and the Total of 3?
CREATE TABLE table_name_80 (finals VARCHAR, total VARCHAR, conference_finals VARCHAR, semifinals VARCHAR)
{ "SQL_Query": "SELECT finals FROM table_name_80 WHERE conference_finals < 12 AND semifinals = 0 AND total = 3" }
Which have more than $80k and a total percent of 2.2%?
CREATE TABLE table_name_60 (more_than_$80 VARCHAR, percent_of_total VARCHAR)
{ "SQL_Query": "SELECT more_than_$80, 000 FROM table_name_60 WHERE percent_of_total = \"2.2%\"" }
Which Label has a Country of canada, and a Format of cd/digital download?
CREATE TABLE table_name_53 (label VARCHAR, country VARCHAR, format VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_53 WHERE country = \"canada\" AND format = \"cd/digital download\"" }
Which Format has a Date of 14 october 2008, and a Label of eagle eye media?
CREATE TABLE table_name_40 (format VARCHAR, date VARCHAR, label VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_40 WHERE date = \"14 october 2008\" AND label = \"eagle eye media\"" }
Which Label has a Country of united kingdom, a Date of 22 september 2008, and a Catalogue number(s) of eredv711?
CREATE TABLE table_name_61 (label VARCHAR, catalogue_number_s_ VARCHAR, country VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_61 WHERE country = \"united kingdom\" AND date = \"22 september 2008\" AND catalogue_number_s_ = \"eredv711\"" }
Which Country has a Catalogue number(s) of eredv711?
CREATE TABLE table_name_94 (country VARCHAR, catalogue_number_s_ VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_94 WHERE catalogue_number_s_ = \"eredv711\"" }
Which Format has a Label of eagle eye media, a Catalogue number(s) of —, and a Country of united states?
CREATE TABLE table_name_33 (format VARCHAR, country VARCHAR, label VARCHAR, catalogue_number_s_ VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_33 WHERE label = \"eagle eye media\" AND catalogue_number_s_ = \"—\" AND country = \"united states\"" }
Which Format has a Label of eagle records, and a Catalogue number(s) of edgcd391?
CREATE TABLE table_name_23 (format VARCHAR, label VARCHAR, catalogue_number_s_ VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_23 WHERE label = \"eagle records\" AND catalogue_number_s_ = \"edgcd391\"" }
What is the Height of the Player with a Date of Birth of 1978-02-16?
CREATE TABLE table_name_58 (height VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT height FROM table_name_58 WHERE date_of_birth = \"1978-02-16\"" }
What is the Name of the D Player born on 1983-07-19?
CREATE TABLE table_name_46 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_46 WHERE pos = \"d\" AND date_of_birth = \"1983-07-19\"" }
What is Eftychia Karagianni Pos.?
CREATE TABLE table_name_64 (pos VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT pos FROM table_name_64 WHERE name = \"eftychia karagianni\"" }
What is the track that from lcd soundsystem?
CREATE TABLE table_name_28 (track VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT track FROM table_name_28 WHERE artist = \"lcd soundsystem\"" }
What is the total number of UEFA Cup(s), when Total is greater than 3?
CREATE TABLE table_name_44 (uefa_cup VARCHAR, total INTEGER)
{ "SQL_Query": "SELECT COUNT(uefa_cup) FROM table_name_44 WHERE total > 3" }
What is the lowest Polish Cup, when Position is "Midfielder", when Player is "Miroslav Radović", and when Ekstraklasa is less than 1?
CREATE TABLE table_name_47 (polish_cup INTEGER, ekstraklasa VARCHAR, position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT MIN(polish_cup) FROM table_name_47 WHERE position = \"midfielder\" AND player = \"miroslav radović\" AND ekstraklasa < 1" }
What is the sum of Polish Cup, when Player is "Maciej Iwański", and when Ekstraklasa is less than 1?
CREATE TABLE table_name_34 (polish_cup INTEGER, player VARCHAR, ekstraklasa VARCHAR)
{ "SQL_Query": "SELECT SUM(polish_cup) FROM table_name_34 WHERE player = \"maciej iwański\" AND ekstraklasa < 1" }
What 2nd Party has an Election of 1885?
CREATE TABLE table_name_53 (election VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_party FROM table_name_53 WHERE election = \"1885\"" }
What 2nd Party has an Election of 1834?
CREATE TABLE table_name_11 (election VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_party FROM table_name_11 WHERE election = \"1834\"" }
What 2nd Member has an Election of 1833 by-election?
CREATE TABLE table_name_43 (election VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_member FROM table_name_43 WHERE election = \"1833 by-election\"" }
Golfer Steve Pate has what To par?
CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_66 WHERE player = \"steve pate\"" }
What was the score when they played the Boston Patriots?
CREATE TABLE table_name_91 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_91 WHERE opponent = \"boston patriots\"" }
How many apps for the rank of 8 in the 2012/13 season?
CREATE TABLE table_name_7 (apps INTEGER, rank VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT MAX(apps) FROM table_name_7 WHERE rank = 8 AND season = \"2012/13\"" }
What was the score when Nacional was the champion, River Plate was the runner-up, and the venue was Centenario?
CREATE TABLE table_name_13 (score VARCHAR, runner_up VARCHAR, champion VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_13 WHERE champion = \"nacional\" AND venue = \"centenario\" AND runner_up = \"river plate\"" }
Who was the champion when atlético wanderers was the runner-up?
CREATE TABLE table_name_57 (champion VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT champion FROM table_name_57 WHERE runner_up = \"atlético wanderers\"" }
In which city is the San Lorenzo Centenario venue located?
CREATE TABLE table_name_55 (city VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_55 WHERE venue = \"san lorenzo centenario\"" }
The game played 31 May 2010 was played on what surface?
CREATE TABLE table_name_98 (surface VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_98 WHERE date = \"31 may 2010\"" }
What tournament was played 16 September 2012?
CREATE TABLE table_name_63 (tournament VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_63 WHERE date = \"16 september 2012\"" }
What is the score of the game played 26 July 2010?
CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_22 WHERE date = \"26 july 2010\"" }
The match against Paul-Henri Mathieu had what outcome?
CREATE TABLE table_name_92 (outcome VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_92 WHERE opponent = \"paul-henri mathieu\"" }
What is South Africa's to par?
CREATE TABLE table_name_35 (to_par VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_35 WHERE country = \"south africa\"" }
Who had a finish of t20?
CREATE TABLE table_name_20 (player VARCHAR, finish VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_20 WHERE finish = \"t20\"" }
What is the average pjehun measured by female enrollment?
CREATE TABLE table_name_10 (pujehun INTEGER, measure VARCHAR)
{ "SQL_Query": "SELECT AVG(pujehun) FROM table_name_10 WHERE measure = \"female enrollment\"" }
What is the highest pjuehun with a kenema greater than 559, a kambia of 45,653, and a tonkolili greater than 113,926?
CREATE TABLE table_name_9 (pujehun INTEGER, tonkolili VARCHAR, kenema VARCHAR, kambia VARCHAR)
{ "SQL_Query": "SELECT MAX(pujehun) FROM table_name_9 WHERE kenema > 559 AND kambia = \"45,653\" AND tonkolili > 113 OFFSET 926" }
What is the sum of the kono with a bonthe greater than 21,238?
CREATE TABLE table_name_38 (kono INTEGER, bonthe INTEGER)
{ "SQL_Query": "SELECT SUM(kono) FROM table_name_38 WHERE bonthe > 21 OFFSET 238" }
What party is the person who was first elected in 2000 and was re-elected?
CREATE TABLE table_name_50 (party VARCHAR, results VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT party FROM table_name_50 WHERE results = \"re-elected\" AND first_elected = 2000" }
Which report has a Set 3 value of 21–25?
CREATE TABLE table_name_93 (report VARCHAR, set_3 VARCHAR)
{ "SQL_Query": "SELECT report FROM table_name_93 WHERE set_3 = \"21–25\"" }
What was the Time when Set 3 was 25–14?
CREATE TABLE table_name_70 (time VARCHAR, set_3 VARCHAR)
{ "SQL_Query": "SELECT time FROM table_name_70 WHERE set_3 = \"25–14\"" }
When was there a Time of 18:00, and a Set 1 of 22–25?
CREATE TABLE table_name_92 (date VARCHAR, time VARCHAR, set_1 VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_92 WHERE time = \"18:00\" AND set_1 = \"22–25\"" }
How many Totals have a CONCACAF of 0, and an MLS Cup smaller than 6?
CREATE TABLE table_name_64 (total VARCHAR, concacaf VARCHAR, mls_cup VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_64 WHERE concacaf = 0 AND mls_cup < 6" }
Which MLS Cup has another larger than 9, and a Total smaller than 72?
CREATE TABLE table_name_43 (mls_cup INTEGER, other VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT AVG(mls_cup) FROM table_name_43 WHERE other > 9 AND total < 72" }
What year has a not nominated result and a nomination title of "the color of fame"?
CREATE TABLE table_name_62 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_name_62 WHERE result = \"not nominated\" AND film_title_used_in_nomination = \"the color of fame\"" }
What's the original title of the nomination title, "brecha en el silencio"?
CREATE TABLE table_name_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT original_title FROM table_name_1 WHERE film_title_used_in_nomination = \"brecha en el silencio\"" }
What year has a nomination title of "sangrador"?
CREATE TABLE table_name_84 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_name_84 WHERE film_title_used_in_nomination = \"sangrador\"" }
What year has a original title of "el tinte de la fama"?
CREATE TABLE table_name_81 (year__ceremony_ VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_name_81 WHERE original_title = \"el tinte de la fama\"" }
What's the result for director elia schneider's punto y raya?
CREATE TABLE table_name_25 (result VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_25 WHERE director = \"elia schneider\" AND film_title_used_in_nomination = \"punto y raya\"" }
What is the score points when the total is 20?
CREATE TABLE table_name_4 (score_points VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT score_points FROM table_name_4 WHERE total = \"20\"" }
What is the score points in WC Kerrville, when rank was points of 8?
CREATE TABLE table_name_99 (score_points VARCHAR, event VARCHAR, rank_points VARCHAR)
{ "SQL_Query": "SELECT score_points FROM table_name_99 WHERE event = \"wc kerrville\" AND rank_points = \"8\"" }
What is the score points when the total is 16?
CREATE TABLE table_name_35 (score_points VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT score_points FROM table_name_35 WHERE total = \"16\"" }
What is the score points when the rank points is 3?
CREATE TABLE table_name_53 (score_points VARCHAR, rank_points VARCHAR)
{ "SQL_Query": "SELECT score_points FROM table_name_53 WHERE rank_points = \"3\"" }
What is the total when the score points show Olympic bronze medalist?
CREATE TABLE table_name_50 (total VARCHAR, score_points VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_50 WHERE score_points = \"olympic bronze medalist\"" }
What Winning constructor has a Circuit of lasarte?
CREATE TABLE table_name_82 (winning_constructor VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT winning_constructor FROM table_name_82 WHERE circuit = \"lasarte\"" }
What Date has a Winning driver of ugo sivocci?
CREATE TABLE table_name_61 (date VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_61 WHERE winning_driver = \"ugo sivocci\"" }
What Report has a Winning driver of mario razzauti?
CREATE TABLE table_name_72 (report VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT report FROM table_name_72 WHERE winning_driver = \"mario razzauti\"" }
What Date has a Circuit of cremona?
CREATE TABLE table_name_36 (date VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_36 WHERE circuit = \"cremona\"" }
What Name has a Winning constructor of ansaldo?
CREATE TABLE table_name_56 (name VARCHAR, winning_constructor VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_56 WHERE winning_constructor = \"ansaldo\"" }
What Winning driver has a Winning constructor of sunbeam?
CREATE TABLE table_name_43 (winning_driver VARCHAR, winning_constructor VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_name_43 WHERE winning_constructor = \"sunbeam\"" }
What is the average total for 0 bronze?
CREATE TABLE table_name_98 (total INTEGER, bronze INTEGER)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_98 WHERE bronze < 0" }
What is the title of the track with lyricist ROZ and arranger Yongmin Lee?
CREATE TABLE table_name_17 (title VARCHAR, lyricist_s_ VARCHAR, arranger_s_ VARCHAR)
{ "SQL_Query": "SELECT title FROM table_name_17 WHERE lyricist_s_ = \"roz\" AND arranger_s_ = \"yongmin lee\"" }
Who was the lyricist for composer Haewon Park?
CREATE TABLE table_name_36 (lyricist_s_ VARCHAR, composer_s_ VARCHAR)
{ "SQL_Query": "SELECT lyricist_s_ FROM table_name_36 WHERE composer_s_ = \"haewon park\"" }
What are the lengths of the tracks arranged by ROZ?
CREATE TABLE table_name_79 (time VARCHAR, arranger_s_ VARCHAR)
{ "SQL_Query": "SELECT time FROM table_name_79 WHERE arranger_s_ = \"roz\"" }
How many years did caroline lubrez win?
CREATE TABLE table_name_19 (year INTEGER, winner VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_19 WHERE winner = \"caroline lubrez\"" }
Which Area km 2 has an Official Name of stanley, and a Population larger than 1,817?
CREATE TABLE table_name_46 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT MAX(area_km_2) FROM table_name_46 WHERE official_name = \"stanley\" AND population > 1 OFFSET 817" }
How much Area km 2 have a Population of 1,215?
CREATE TABLE table_name_61 (area_km_2 VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT COUNT(area_km_2) FROM table_name_61 WHERE population = 1 OFFSET 215" }
Which Census Ranking has a Population smaller than 879, and an Area km 2 larger than 537.62?
CREATE TABLE table_name_36 (census_ranking VARCHAR, population VARCHAR, area_km_2 VARCHAR)
{ "SQL_Query": "SELECT census_ranking FROM table_name_36 WHERE population < 879 AND area_km_2 > 537.62" }
Which Census Ranking has an Area km 2 larger than 753.06, and an Official Name of stanley?
CREATE TABLE table_name_94 (census_ranking VARCHAR, area_km_2 VARCHAR, official_name VARCHAR)
{ "SQL_Query": "SELECT census_ranking FROM table_name_94 WHERE area_km_2 > 753.06 AND official_name = \"stanley\"" }
Which Area km 2 has an Official Name of southampton, and a Population larger than 1,601?
CREATE TABLE table_name_61 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT MIN(area_km_2) FROM table_name_61 WHERE official_name = \"southampton\" AND population > 1 OFFSET 601" }
What is Kirkby Town's lowest lost with more than 83 goals?
CREATE TABLE table_name_72 (lost INTEGER, team VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT MIN(lost) FROM table_name_72 WHERE team = \"kirkby town\" AND goals_for > 83" }
What is the lowest position with points 1 of 27 2 and fewer than 9 drawn?
CREATE TABLE table_name_74 (position INTEGER, points_1 VARCHAR, drawn VARCHAR)
{ "SQL_Query": "SELECT MIN(position) FROM table_name_74 WHERE points_1 = \"27 2\" AND drawn < 9" }
What is the goal difference number with a position of 15?
CREATE TABLE table_name_35 (goal_difference VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT goal_difference FROM table_name_35 WHERE position = 15" }
What is English Translation, when Lyricist(s) is "Giorgos Moukidis", and when Original Album is "Ena (New Edition)"
CREATE TABLE table_name_23 (english_translation VARCHAR, lyricist_s_ VARCHAR, original_album VARCHAR)
{ "SQL_Query": "SELECT english_translation FROM table_name_23 WHERE lyricist_s_ = \"giorgos moukidis\" AND original_album = \"ena (new edition)\"" }
What is Original Album, when Time is "3:39"?
CREATE TABLE table_name_23 (original_album VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT original_album FROM table_name_23 WHERE time = \"3:39\"" }
What is Time, when Composer(s) is "Kyriakos Papadopoulos"?
CREATE TABLE table_name_32 (time VARCHAR, composer_s_ VARCHAR)
{ "SQL_Query": "SELECT time FROM table_name_32 WHERE composer_s_ = \"kyriakos papadopoulos\"" }
Who was the visitor on March 27?
CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT visitor FROM table_name_9 WHERE date = \"march 27\"" }
What was the score of the game on February 8?
CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_34 WHERE date = \"february 8\"" }
What was their record on December 4?
CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_1 WHERE date = \"december 4\"" }
What was the score on February 21 when the home team was the Pittsburgh Penguins?
CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_6 WHERE home = \"pittsburgh penguins\" AND date = \"february 21\"" }
WHAT IS THE LOWEST MONEY WITH TO PAR LARGER THAN 26?
CREATE TABLE table_name_1 (money___ INTEGER, to_par INTEGER)
{ "SQL_Query": "SELECT MIN(money___) AS $__ FROM table_name_1 WHERE to_par > 26" }
WHAT IS THE SCORE WITH $85 FOR CLARENCE HACKNEY?
CREATE TABLE table_name_96 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_96 WHERE money___$__ = 85 AND player = \"clarence hackney\"" }
WHAT IS THE LOWEST MONEY WITH 74-74-76-74=298 SCORE?
CREATE TABLE table_name_2 (money___ INTEGER, score VARCHAR)
{ "SQL_Query": "SELECT MIN(money___) AS $__ FROM table_name_2 WHERE score = 74 - 74 - 76 - 74 = 298" }
What is the week number for the date of September 14, 1980?
CREATE TABLE table_name_96 (week INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_96 WHERE date = \"september 14, 1980\"" }
What week was the result l 14–9?
CREATE TABLE table_name_48 (week VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT week FROM table_name_48 WHERE result = \"l 14–9\"" }
What is the week number with attendance of 44,132?
CREATE TABLE table_name_2 (week VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(week) FROM table_name_2 WHERE attendance = 44 OFFSET 132" }
Who was the winner for the circuit Eastern Creek Raceway?
CREATE TABLE table_name_42 (winner VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_42 WHERE circuit = \"eastern creek raceway\"" }
What was the city for the winner Darren Hossack at the circuit of phillip island grand prix circuit?
CREATE TABLE table_name_45 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT city___state FROM table_name_45 WHERE winner = \"darren hossack\" AND circuit = \"phillip island grand prix circuit\"" }
What city was the circuit of mallala motor sport park?
CREATE TABLE table_name_48 (city___state VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT city___state FROM table_name_48 WHERE circuit = \"mallala motor sport park\"" }
Which To par has a Place of t1, and a Country of india?
CREATE TABLE table_name_85 (to_par VARCHAR, place VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_85 WHERE place = \"t1\" AND country = \"india\"" }
What is Brian Gay's place?
CREATE TABLE table_name_77 (place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_77 WHERE player = \"brian gay\"" }
Which Country has a Score smaller than 70, and a Place of t3, and a Player of andrés romero?
CREATE TABLE table_name_4 (country VARCHAR, player VARCHAR, score VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_4 WHERE score < 70 AND place = \"t3\" AND player = \"andrés romero\"" }
What order year has a 30 Length (ft.) and 05.505 model?
CREATE TABLE table_name_86 (order_year VARCHAR, length__ft_ VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT order_year FROM table_name_86 WHERE length__ft_ = \"30\" AND model = \"05.505\"" }
What builder has a 2001-02 order year?
CREATE TABLE table_name_93 (builder VARCHAR, order_year VARCHAR)
{ "SQL_Query": "SELECT builder FROM table_name_93 WHERE order_year = \"2001-02\"" }
What is the order year of obi builder and 05.505 model that is 30 feet long?
CREATE TABLE table_name_89 (order_year VARCHAR, model VARCHAR, builder VARCHAR, length__ft_ VARCHAR)
{ "SQL_Query": "SELECT order_year FROM table_name_89 WHERE builder = \"obi\" AND length__ft_ = \"30\" AND model = \"05.505\"" }
What is the career of player serhiy konovalov, who has less than 1 pct.?
CREATE TABLE table_name_23 (career VARCHAR, pct VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT career FROM table_name_23 WHERE pct < 1 AND player = \"serhiy konovalov\"" }
What is the career of player andriy husyn?
CREATE TABLE table_name_38 (career VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT career FROM table_name_38 WHERE player = \"andriy husyn\"" }
What is the earliest year that has fewer than 3852.1 cows and 3900.1 working horses?
CREATE TABLE table_name_97 (year INTEGER, working_horses VARCHAR, cows VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_97 WHERE working_horses = \"3900.1\" AND cows < 3852.1" }
What is the number of bulls that has oxen larger than 113.8, and a sheep and goats larger than 4533.4, and a cows smaller than 3987, and a total horses larger than 5056.5?
CREATE TABLE table_name_58 (bulls VARCHAR, total_horses VARCHAR, cows VARCHAR, oxen VARCHAR, sheep_and_goats VARCHAR)
{ "SQL_Query": "SELECT bulls FROM table_name_58 WHERE oxen > 113.8 AND sheep_and_goats > 4533.4 AND cows < 3987 AND total_horses > 5056.5" }
How many years had fewer than 2089.2 pigs?
CREATE TABLE table_name_81 (year VARCHAR, pigs INTEGER)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_81 WHERE pigs < 2089.2" }