question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Matches of 127 has how many total number of inns?
CREATE TABLE table_name_56 (inns VARCHAR, matches VARCHAR)
{ "SQL_Query": "SELECT COUNT(inns) FROM table_name_56 WHERE matches = 127" }
Name of clem hill, and Inns larger than 126 has the lowest runs?
CREATE TABLE table_name_83 (runs INTEGER, name VARCHAR, inns VARCHAR)
{ "SQL_Query": "SELECT MIN(runs) FROM table_name_83 WHERE name = \"clem hill\" AND inns > 126" }
Runs smaller than 6106, and Inns smaller than 146 has what total number of matches?
CREATE TABLE table_name_24 (matches VARCHAR, runs VARCHAR, inns VARCHAR)
{ "SQL_Query": "SELECT COUNT(matches) FROM table_name_24 WHERE runs < 6106 AND inns < 146" }
Seasons of 1987–2007, and a Runs larger than 11622 is the highest inns?
CREATE TABLE table_name_64 (inns INTEGER, seasons VARCHAR, runs VARCHAR)
{ "SQL_Query": "SELECT MAX(inns) FROM table_name_64 WHERE seasons = \"1987–2007\" AND runs > 11622" }
Name the partner for opponents of františek čermák michal mertiňák
CREATE TABLE table_name_46 (partner VARCHAR, opponents_in_the_final VARCHAR)
{ "SQL_Query": "SELECT partner FROM table_name_46 WHERE opponents_in_the_final = \"františek čermák michal mertiňák\"" }
Name the score in the final for january 12, 2013
CREATE TABLE table_name_63 (score_in_the_final VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score_in_the_final FROM table_name_63 WHERE date = \"january 12, 2013\"" }
Name the opponents for outcome of runner-up and date of august 7, 2011
CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponents_in_the_final FROM table_name_19 WHERE outcome = \"runner-up\" AND date = \"august 7, 2011\"" }
Name the partner for surface of grass and opponents of jürgen melzer philipp petzschner
CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR)
{ "SQL_Query": "SELECT partner FROM table_name_22 WHERE surface = \"grass\" AND opponents_in_the_final = \"jürgen melzer philipp petzschner\"" }
Name the score in the final for runner-up and hard surface with opponents being michaël llodra nenad zimonjić
CREATE TABLE table_name_1 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)
{ "SQL_Query": "SELECT score_in_the_final FROM table_name_1 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND opponents_in_the_final = \"michaël llodra nenad zimonjić\"" }
What date was the ship 'Wyandotte' launched?
CREATE TABLE table_name_45 (launched VARCHAR, ship VARCHAR)
{ "SQL_Query": "SELECT launched FROM table_name_45 WHERE ship = \"wyandotte\"" }
What was the original name of the ship 'Ajax'?
CREATE TABLE table_name_58 (renamed VARCHAR, ship VARCHAR)
{ "SQL_Query": "SELECT renamed FROM table_name_58 WHERE ship = \"ajax\"" }
What date was the ship named Manhattan completed?
CREATE TABLE table_name_60 (commissioned_or_completed_ VARCHAR, _ VARCHAR, ship VARCHAR)
{ "SQL_Query": "SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = \"manhattan\"" }
What class had fewer than 336 laps in 2004?
CREATE TABLE table_name_77 (class VARCHAR, laps VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT class FROM table_name_77 WHERE laps < 336 AND year = 2004" }
What is the average attendance of game 1?
CREATE TABLE table_name_72 (attendance INTEGER, game INTEGER)
{ "SQL_Query": "SELECT AVG(attendance) FROM table_name_72 WHERE game < 1" }
What is the attendance amount of the race with a time of 2:07?
CREATE TABLE table_name_38 (attendance INTEGER, time VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_name_38 WHERE time = \"2:07\"" }
What club has less than 61 goals for and 55 goals against?
CREATE TABLE table_name_33 (club VARCHAR, goals_for VARCHAR, goals_against VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_33 WHERE goals_for < 61 AND goals_against = 55" }
What is the amount of Draws for the game that had a score of 45+7 and a position below 3?
CREATE TABLE table_name_29 (draws VARCHAR, points VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(draws) FROM table_name_29 WHERE points = \"45+7\" AND position < 3" }
What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?
CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = \"elche cf\" AND played > 38" }
Who was the recipient for Outstanding actress television series prior to 2008?
CREATE TABLE table_name_7 (recipient VARCHAR, year INTEGER)
{ "SQL_Query": "SELECT recipient FROM table_name_7 WHERE year < 2008" }
Who was the opponent at the game when the record was 71-78?
CREATE TABLE table_name_67 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_67 WHERE record = \"71-78\"" }
What was the date of the game that had a loss of Risley (0-1)?
CREATE TABLE table_name_2 (date VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_2 WHERE loss = \"risley (0-1)\"" }
What was the date of the game when the record was 70-74?
CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_86 WHERE record = \"70-74\"" }
What player was moving from manchester united?
CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_78 WHERE moving_from = \"manchester united\"" }
What player costs £210k to transfer?
CREATE TABLE table_name_92 (name VARCHAR, transfer_fee VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_92 WHERE transfer_fee = \"£210k\"" }
Who is moving during winter from wal?
CREATE TABLE table_name_28 (moving_from VARCHAR, transfer_window VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT moving_from FROM table_name_28 WHERE transfer_window = \"winter\" AND country = \"wal\"" }
Which original artist has a Episode of workshop #1?
CREATE TABLE table_name_32 (original_artist VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT original_artist FROM table_name_32 WHERE episode = \"workshop #1\"" }
Which theme has a Episode of top 6?
CREATE TABLE table_name_79 (theme VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT theme FROM table_name_79 WHERE episode = \"top 6\"" }
Which Theme has a Order # of 9?
CREATE TABLE table_name_5 (theme VARCHAR, order__number VARCHAR)
{ "SQL_Query": "SELECT theme FROM table_name_5 WHERE order__number = \"9\"" }
What was the score on August 19?
CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_65 WHERE date = \"august 19\"" }
Where the time is 2:46, what is the record?
CREATE TABLE table_name_83 (record VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_83 WHERE time = \"2:46\"" }
What is the Date, when the home team is the NY Rangers?
CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_22 WHERE home = \"ny rangers\"" }
Power of 220kw (299hp) @ 4000 has what torque?
CREATE TABLE table_name_38 (torque VARCHAR, power VARCHAR)
{ "SQL_Query": "SELECT torque FROM table_name_38 WHERE power = \"220kw (299hp) @ 4000\"" }
What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?
CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR)
{ "SQL_Query": "SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = \"220kw (299hp) @ 4000\"" }
Displacement of 4.4l (4423cc/269in³) and a Power of 220kw (299hp) @ 4000 belongs to what engine?
CREATE TABLE table_name_21 (engine VARCHAR, displacement VARCHAR, power VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_name_21 WHERE displacement = \"4.4l (4423cc/269in³)\" AND power = \"220kw (299hp) @ 4000\"" }
What week was the Original artist, the police ?
CREATE TABLE table_name_5 (week VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT week FROM table_name_5 WHERE original_artist = \"the police\"" }
Which song garnered an advanced result during top 20 week ?
CREATE TABLE table_name_38 (song_choice VARCHAR, result VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT song_choice FROM table_name_38 WHERE result = \"advanced\" AND week = \"top 20\"" }
Which Malaysia Satellite tournaments were played after 1998?
CREATE TABLE table_name_52 (outcome VARCHAR, year VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_52 WHERE year > 1998 AND tournament = \"malaysia satellite\"" }
Who was the runner-up for the Bulgaria Open, before 2007?
CREATE TABLE table_name_40 (score VARCHAR, tournament VARCHAR, year VARCHAR, outcome VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_40 WHERE year < 2007 AND outcome = \"runner-up\" AND tournament = \"bulgaria open\"" }
What was the score of the player who played against Wong Choong Hann in the Dutch Open?
CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_47 WHERE tournament = \"dutch open\" AND opponent = \"wong choong hann\"" }
What was the outcome of the match against Nguyen Tien Minh in the Bulgaria Open?
CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_51 WHERE opponent = \"nguyen tien minh\" AND tournament = \"bulgaria open\"" }
What was the final score when the New York Jets were the Visiting Team?
CREATE TABLE table_name_86 (final_score VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_name_86 WHERE visiting_team = \"new york jets\"" }
When were the Cleveland Browns the visiting team?
CREATE TABLE table_name_62 (date VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_62 WHERE visiting_team = \"cleveland browns\"" }
Where were the New York Jets visiting?
CREATE TABLE table_name_65 (stadium VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_name_65 WHERE visiting_team = \"new york jets\"" }
What was the final score in Robert F. Kennedy Memorial Stadium?
CREATE TABLE table_name_26 (final_score VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_name_26 WHERE stadium = \"robert f. kennedy memorial stadium\"" }
What was the visiting team on November 12?
CREATE TABLE table_name_12 (visiting_team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT visiting_team FROM table_name_12 WHERE date = \"november 12\"" }
In what stadium were the New England Patriots the visiting team?
CREATE TABLE table_name_13 (stadium VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_name_13 WHERE visiting_team = \"new england patriots\"" }
If the games played are smaller than 18, what are the lowest goals conceded?
CREATE TABLE table_name_72 (goals_conceded INTEGER, played INTEGER)
{ "SQL_Query": "SELECT MIN(goals_conceded) FROM table_name_72 WHERE played < 18" }
If the place is smaller than 8 and they played more than 18, what is the total number of goals conceded?
CREATE TABLE table_name_54 (goals_conceded VARCHAR, place VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT COUNT(goals_conceded) FROM table_name_54 WHERE place < 8 AND played > 18" }
What is the sum of the place that has less than 2 losses?
CREATE TABLE table_name_60 (place INTEGER, lost INTEGER)
{ "SQL_Query": "SELECT SUM(place) FROM table_name_60 WHERE lost < 2" }
What is the smallest width for a frame size of 5k and a height shorter than 2700?
CREATE TABLE table_name_18 (width INTEGER, frame_size VARCHAR, height VARCHAR)
{ "SQL_Query": "SELECT MIN(width) FROM table_name_18 WHERE frame_size = \"5k\" AND height < 2700" }
What was the opponent on August 29?
CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_57 WHERE date = \"august 29\"" }
Which team had the attendance of 16,468 and lost?
CREATE TABLE table_name_61 (loss VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_61 WHERE attendance = \"16,468\"" }
What opponent has a loss of Trachsel (10-11)?
CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_12 WHERE loss = \"trachsel (10-11)\"" }
What was the attendance on August 8?
CREATE TABLE table_name_47 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_47 WHERE date = \"august 8\"" }
Which rapid has a distance in km smaller than 14.2, and a Station of kōmyōji?
CREATE TABLE table_name_91 (rapid VARCHAR, distance__km_ VARCHAR, station VARCHAR)
{ "SQL_Query": "SELECT rapid FROM table_name_91 WHERE distance__km_ < 14.2 AND station = \"kōmyōji\"" }
What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?
CREATE TABLE table_name_14 (other INTEGER, name VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT SUM(other) FROM table_name_14 WHERE name = \"simon gillett category:articles with hcards\" AND total < 34" }
What is the sum of the value "League Cup", when the Total is less than 1, and when the League is less than 0?
CREATE TABLE table_name_7 (league INTEGER, total VARCHAR)
{ "SQL_Query": "SELECT SUM(league) AS Cup FROM table_name_7 WHERE total < 1 AND league < 0" }
What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?
CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_60 WHERE name = \"simon gillett category:articles with hcards\" AND other > 3" }
What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?
CREATE TABLE table_name_68 (league INTEGER, other VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT SUM(league) AS Cup FROM table_name_68 WHERE other < 1 AND name = \"gareth farrelly category:articles with hcards\" AND league > 1" }
Name the champion for christopher miles runner-up
CREATE TABLE table_name_52 (champion VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT champion FROM table_name_52 WHERE runner_up = \"christopher miles\"" }
Name the champion for 2000
CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT champion FROM table_name_52 WHERE year = \"2000\"" }
Name the location for 1998
CREATE TABLE table_name_26 (location VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_26 WHERE year = \"1998\"" }
How many gold medals correspond with a total over 4?
CREATE TABLE table_name_42 (gold VARCHAR, total INTEGER)
{ "SQL_Query": "SELECT gold FROM table_name_42 WHERE total > 4" }
What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals?
CREATE TABLE table_name_72 (gold INTEGER, total VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT SUM(gold) FROM table_name_72 WHERE total = 12 AND bronze < 4" }
What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals?
CREATE TABLE table_name_7 (gold INTEGER, rank VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT MIN(gold) FROM table_name_7 WHERE rank = \"total\" AND bronze > 4" }
What is the smallest number of bronze medals with more than 4 gold medals?
CREATE TABLE table_name_7 (bronze INTEGER, gold INTEGER)
{ "SQL_Query": "SELECT MIN(bronze) FROM table_name_7 WHERE gold > 4" }
The candidate with Riding of st. john's south—mount pearl is what gender?
CREATE TABLE table_name_3 (gender VARCHAR, riding VARCHAR)
{ "SQL_Query": "SELECT gender FROM table_name_3 WHERE riding = \"st. john's south—mount pearl\"" }
Which number has a 0.35 percentage?
CREATE TABLE table_name_26 (number VARCHAR, percentage___percentage_ VARCHAR)
{ "SQL_Query": "SELECT number FROM table_name_26 WHERE percentage___percentage_ = \"0.35\"" }
What is the percentage for Russian?
CREATE TABLE table_name_90 (percentage___percentage_ VARCHAR, language VARCHAR)
{ "SQL_Query": "SELECT percentage___percentage_ FROM table_name_90 WHERE language = \"russian\"" }
How many males speak Russian?
CREATE TABLE table_name_3 (males VARCHAR, language VARCHAR)
{ "SQL_Query": "SELECT males FROM table_name_3 WHERE language = \"russian\"" }
Who is the writer for Red Rose Chain LTD?
CREATE TABLE table_name_4 (writer_s_ VARCHAR, recipient VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_name_4 WHERE recipient = \"red rose chain ltd\"" }
Which producer did Daniel Cormack direct?
CREATE TABLE table_name_50 (producer_s_ VARCHAR, director_s_ VARCHAR)
{ "SQL_Query": "SELECT producer_s_ FROM table_name_50 WHERE director_s_ = \"daniel cormack\"" }
Who produced Laura Tunstall?
CREATE TABLE table_name_91 (producer_s_ VARCHAR, recipient VARCHAR)
{ "SQL_Query": "SELECT producer_s_ FROM table_name_91 WHERE recipient = \"laura tunstall\"" }
Who wrote the film Jehovah's Witness?
CREATE TABLE table_name_5 (writer_s_ VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_name_5 WHERE film = \"jehovah's witness\"" }
When did Hein Vergeer have a distance of 5,000m?
CREATE TABLE table_name_7 (date VARCHAR, distance VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_7 WHERE distance = \"5,000m\"" }
What were the notes during the distance of Men's Speed Skating?
CREATE TABLE table_name_57 (notes VARCHAR, distance VARCHAR)
{ "SQL_Query": "SELECT notes FROM table_name_57 WHERE distance = \"men's speed skating\"" }
What date has the competition of uefa euro 2012 qualifying?
CREATE TABLE table_name_77 (date VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_77 WHERE competition = \"uefa euro 2012 qualifying\"" }
What is the Grade that has Turf 1600m?
CREATE TABLE table_name_27 (grade VARCHAR, priority_entry_rights_to_derby VARCHAR)
{ "SQL_Query": "SELECT grade FROM table_name_27 WHERE priority_entry_rights_to_derby = \"turf 1600m\"" }
What is the Priority-entry-rights to Derby in rank 4?
CREATE TABLE table_name_51 (priority_entry_rights_to_derby VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT priority_entry_rights_to_derby FROM table_name_51 WHERE NOT race_name = 4" }
How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?
CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR)
{ "SQL_Query": "SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737" }
What is the smallest Satu Mare value associated with Baia Mare over 523?
CREATE TABLE table_name_37 (satu_mare INTEGER, baia_mare INTEGER)
{ "SQL_Query": "SELECT MIN(satu_mare) FROM table_name_37 WHERE baia_mare > 523" }
Which Word wrap support has a Format of mobipocket?
CREATE TABLE table_name_65 (word_wrap_support VARCHAR, format VARCHAR)
{ "SQL_Query": "SELECT word_wrap_support FROM table_name_65 WHERE format = \"mobipocket\"" }
Which Interactivity support has a Format of fictionbook?
CREATE TABLE table_name_75 (interactivity_support VARCHAR, format VARCHAR)
{ "SQL_Query": "SELECT interactivity_support FROM table_name_75 WHERE format = \"fictionbook\"" }
Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?
CREATE TABLE table_name_64 (filename_extension VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, open_standard VARCHAR)
{ "SQL_Query": "SELECT filename_extension FROM table_name_64 WHERE interactivity_support = \"no\" AND open_standard = \"yes\" AND image_support = \"no\"" }
Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes?
CREATE TABLE table_name_26 (filename_extension VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR, open_standard VARCHAR)
{ "SQL_Query": "SELECT filename_extension FROM table_name_26 WHERE word_wrap_support = \"yes\" AND open_standard = \"no\" AND interactivity_support = \"yes\"" }
Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes?
CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_22 WHERE interactivity_support = \"no\" AND word_wrap_support = \"yes\" AND image_support = \"yes\" AND open_standard = \"yes\"" }
Position of guard, and a Pick # larger than 9 is what highest round?
CREATE TABLE table_name_67 (round INTEGER, position VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_name_67 WHERE position = \"guard\" AND pick__number > 9" }
Pick # smaller than 11, and a Name of von hutchins belongs to what college?
CREATE TABLE table_name_55 (college VARCHAR, pick__number VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT college FROM table_name_55 WHERE pick__number < 11 AND name = \"von hutchins\"" }
College of idaho, and an Overall smaller than 141 is what average round?
CREATE TABLE table_name_60 (round INTEGER, college VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT AVG(round) FROM table_name_60 WHERE college = \"idaho\" AND overall < 141" }
Name of David Kimball, and an Overall smaller than 229 is what highest round?
CREATE TABLE table_name_51 (round INTEGER, name VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_name_51 WHERE name = \"david kimball\" AND overall < 229" }
How many points did the car with the brm v8 engine have?
CREATE TABLE table_name_70 (points VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_70 WHERE engine = \"brm v8\"" }
Which chassis has more than 0 points and was before 1966?
CREATE TABLE table_name_59 (chassis VARCHAR, year VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_59 WHERE year < 1966 AND points > 0" }
How many points did he average in 1964?
CREATE TABLE table_name_10 (points INTEGER, year VARCHAR)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_10 WHERE year = 1964" }
Before the year 1963 what was the fewest points the climax v8 engine had?
CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_22 WHERE engine = \"climax v8\" AND year < 1963" }
What was the earliest year that had less than 1 point?
CREATE TABLE table_name_85 (year INTEGER, points INTEGER)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_85 WHERE points < 1" }
How many were in attendance on October 27, 1963?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_name_33 WHERE date = \"october 27, 1963\"" }
which # / county is correct for year less than 1981 and chalmers as location?
CREATE TABLE table_name_90 (_number___county VARCHAR, year_joined VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT _number___county FROM table_name_90 WHERE year_joined < 1981 AND location = \"chalmers\"" }
what is the correct year for # / county of 09 cass?
CREATE TABLE table_name_65 (year_joined VARCHAR, _number___county VARCHAR)
{ "SQL_Query": "SELECT year_joined FROM table_name_65 WHERE _number___county = \"09 cass\"" }
what's the mascot for 66 pulaski 2?
CREATE TABLE table_name_39 (mascot VARCHAR, _number___county VARCHAR)
{ "SQL_Query": "SELECT mascot FROM table_name_39 WHERE _number___county = \"66 pulaski 2\"" }
What is the total bronze with a Silver of 2, and a Gold smaller than 0?
CREATE TABLE table_name_85 (bronze INTEGER, silver VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT SUM(bronze) FROM table_name_85 WHERE silver = 2 AND gold < 0" }