question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What race even has NASCAR Featherlite Modified Series as the championship?
CREATE TABLE table_name_26 (event VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT event FROM table_name_26 WHERE championship = \"nascar featherlite modified series\"" }
The Milwaukee Mile circuit has what type of session?
CREATE TABLE table_name_41 (session VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT session FROM table_name_41 WHERE circuit = \"milwaukee mile\"" }
The 2001 NASCAR Winston Cup Series championship has what has a circuit?
CREATE TABLE table_name_16 (circuit VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_name_16 WHERE championship = \"2001 nascar winston cup series\"" }
Which Semifinalist has a Tournament of stockholm?
CREATE TABLE table_name_23 (semifinalists VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT semifinalists FROM table_name_23 WHERE tournament = \"stockholm\"" }
Which Tournament has a Winner and score of goran ivanišević 6–4, 6–2, 7–6(2)?
CREATE TABLE table_name_33 (tournament VARCHAR, winner_and_score VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_33 WHERE winner_and_score = \"goran ivanišević 6–4, 6–2, 7–6(2)\"" }
Which Finalist has a Week of may 3?
CREATE TABLE table_name_17 (finalist VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT finalist FROM table_name_17 WHERE week = \"may 3\"" }
Which Surface has a Week of march 1?
CREATE TABLE table_name_95 (surface VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_95 WHERE week = \"march 1\"" }
Which Semifinalists have a Tournament of rome?
CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT semifinalists FROM table_name_28 WHERE tournament = \"rome\"" }
Which Surface has a Semifinalist of stefan edberg thomas muster?
CREATE TABLE table_name_98 (surface VARCHAR, semifinalists VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_98 WHERE semifinalists = \"stefan edberg thomas muster\"" }
Which Drawn has a Played of 20, and a Club of rhigos rfc?
CREATE TABLE table_name_78 (drawn VARCHAR, played VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT drawn FROM table_name_78 WHERE played = \"20\" AND club = \"rhigos rfc\"" }
Which Points for has a Losing bonus of 2, and a Club of bridgend sports rfc?
CREATE TABLE table_name_33 (points_for VARCHAR, losing_bonus VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT points_for FROM table_name_33 WHERE losing_bonus = \"2\" AND club = \"bridgend sports rfc\"" }
Which Points against has a Lost of lost?
CREATE TABLE table_name_97 (points_against VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_name_97 WHERE \"lost\" = \"lost\"" }
Which Points has a Points for of 381?
CREATE TABLE table_name_34 (points VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT points FROM table_name_34 WHERE points_for = \"381\"" }
Which Tries against has Points for of 564?
CREATE TABLE table_name_7 (tries_against VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT tries_against FROM table_name_7 WHERE points_for = \"564\"" }
Which Club has a Drawn of 0, and Points of 26?
CREATE TABLE table_name_11 (club VARCHAR, drawn VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_11 WHERE drawn = \"0\" AND points = \"26\"" }
What country won in 2004?
CREATE TABLE table_name_74 (country VARCHAR, year_s__won VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_74 WHERE year_s__won = \"2004\"" }
How many years have a Name of tour quartier des spectacles, and Floors smaller than 31?
CREATE TABLE table_name_51 (year VARCHAR, name VARCHAR, floors VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_51 WHERE name = \"tour quartier des spectacles\" AND floors < 31" }
what is the date that the away team is aldershot?
CREATE TABLE table_name_16 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_16 WHERE away_team = \"aldershot\"" }
who is the home team when the away team is bolton wanderers?
CREATE TABLE table_name_12 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_12 WHERE away_team = \"bolton wanderers\"" }
What's the largest amount of assists juan ignacio sánchez ever had?
CREATE TABLE table_name_30 (assists INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT MAX(assists) FROM table_name_30 WHERE name = \"juan ignacio sánchez\"" }
Who played over 37 games and had 202 assists?
CREATE TABLE table_name_20 (name VARCHAR, games VARCHAR, assists VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_20 WHERE games > 37 AND assists = 202" }
What is the highest total value when bask and base are each 3?
CREATE TABLE table_name_37 (total INTEGER, bask VARCHAR, base VARCHAR)
{ "SQL_Query": "SELECT MAX(total) FROM table_name_37 WHERE bask = \"3\" AND base = \"3\"" }
What was the 2nd event aired on 8 June 2008?
CREATE TABLE table_name_32 (event_2 VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT event_2 FROM table_name_32 WHERE air_date = \"8 june 2008\"" }
What episode had sumo ball for event 3 and the wall for event 4?
CREATE TABLE table_name_45 (episode_number INTEGER, event_4 VARCHAR, event_3 VARCHAR)
{ "SQL_Query": "SELECT AVG(episode_number) FROM table_name_45 WHERE event_4 = \"the wall\" AND event_3 = \"sumo ball\"" }
What is the earliest episode aired on 8 June 2008?
CREATE TABLE table_name_97 (episode_number INTEGER, air_date VARCHAR)
{ "SQL_Query": "SELECT MIN(episode_number) FROM table_name_97 WHERE air_date = \"8 june 2008\"" }
What is event 4 when event one was gauntlet, event 2 was duel, and event 3 was pendulum?
CREATE TABLE table_name_10 (event_4 VARCHAR, event_3 VARCHAR, event_1 VARCHAR, event_2 VARCHAR)
{ "SQL_Query": "SELECT event_4 FROM table_name_10 WHERE event_1 = \"gauntlet\" AND event_2 = \"duel\" AND event_3 = \"pendulum\"" }
What is the air date the had atlasphere for event 1 before episode 11?
CREATE TABLE table_name_89 (air_date VARCHAR, episode_number VARCHAR, event_1 VARCHAR)
{ "SQL_Query": "SELECT air_date FROM table_name_89 WHERE episode_number < 11 AND event_1 = \"atlasphere\"" }
What was the lowest placement with a final of 23.92?
CREATE TABLE table_name_38 (placement INTEGER, final VARCHAR)
{ "SQL_Query": "SELECT MIN(placement) FROM table_name_38 WHERE final = \"23.92\"" }
What did the Surname Lindberg rank?
CREATE TABLE table_name_47 (rank VARCHAR, surname VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank) FROM table_name_47 WHERE surname = \"lindberg\"" }
What was the lowest number of 2008 total bearers with a rank less than 13 and the Surname Jansson?
CREATE TABLE table_name_13 (number_of_bearers_2008 INTEGER, surname VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT MIN(number_of_bearers_2008) FROM table_name_13 WHERE surname = \"jansson\" AND rank < 13" }
What Etymology ranked 12?
CREATE TABLE table_name_58 (etymology VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT etymology FROM table_name_58 WHERE rank = 12" }
What team has more than 32 games and 311 rebounds?
CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR, rebounds VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_27 WHERE games > 32 AND rebounds = 311" }
What is the highest rank team akasvayu girona had with less than 311 rebounds?
CREATE TABLE table_name_52 (rank INTEGER, team VARCHAR, rebounds VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_name_52 WHERE team = \"akasvayu girona\" AND rebounds < 311" }
How many games did team iurbentia bilbao have with rebounds higher than 212?
CREATE TABLE table_name_27 (games INTEGER, team VARCHAR, rebounds VARCHAR)
{ "SQL_Query": "SELECT SUM(games) FROM table_name_27 WHERE team = \"iurbentia bilbao\" AND rebounds > 212" }
How few games are there for a rank more than 1 and more than 212 rebounds?
CREATE TABLE table_name_4 (games INTEGER, rank VARCHAR, rebounds VARCHAR)
{ "SQL_Query": "SELECT MIN(games) FROM table_name_4 WHERE rank > 1 AND rebounds > 212" }
On what date is the Chrysalis Records label.?
CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_21 WHERE label = \"chrysalis records\"" }
What is the date of the Chrysalis, Island Records label?
CREATE TABLE table_name_81 (date VARCHAR, label VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_81 WHERE label = \"chrysalis, island records\"" }
On what date was the format of ed remaster cd?
CREATE TABLE table_name_97 (date VARCHAR, format VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_97 WHERE format = \"ed remaster cd\"" }
The Catalog of ilps 9153 is from what region?
CREATE TABLE table_name_85 (region VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT region FROM table_name_85 WHERE catalog = \"ilps 9153\"" }
What label is from the Region of Spain?
CREATE TABLE table_name_93 (label VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_93 WHERE region = \"spain\"" }
what is the latest year when the venue is berlin, germany?
CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_35 WHERE venue = \"berlin, germany\"" }
what is the year when the notes is 5000 m and the competition is world junior championships in athletics?
CREATE TABLE table_name_36 (year VARCHAR, notes VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_36 WHERE notes = \"5000 m\" AND competition = \"world junior championships in athletics\"" }
Who has the highest assists in game 72?
CREATE TABLE table_name_53 (high_assists VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_name_53 WHERE game = 72" }
What is the record of the game on March 21?
CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_38 WHERE date = \"march 21\"" }
Which season has more than 5 episodes each 159 minutes in length?
CREATE TABLE table_name_12 (season VARCHAR, episode_count VARCHAR, time_length VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_12 WHERE episode_count > 5 AND time_length = \"159 minutes\"" }
What is the release date for Ben 10: Alien Force Volume 9 on DVD?
CREATE TABLE table_name_22 (release_date VARCHAR, dvd_title VARCHAR)
{ "SQL_Query": "SELECT release_date FROM table_name_22 WHERE dvd_title = \"ben 10: alien force volume 9\"" }
What the episode count for Ben 10: Alien Force Volume 8 on DVD?
CREATE TABLE table_name_90 (episode_count VARCHAR, dvd_title VARCHAR)
{ "SQL_Query": "SELECT episode_count FROM table_name_90 WHERE dvd_title = \"ben 10: alien force volume 8\"" }
What title was release November 17, 2009 in a 16:9 aspect ratio?
CREATE TABLE table_name_5 (dvd_title VARCHAR, aspect_ratio VARCHAR, release_date VARCHAR)
{ "SQL_Query": "SELECT dvd_title FROM table_name_5 WHERE aspect_ratio = \"16:9\" AND release_date = \"november 17, 2009\"" }
What is the aspect ratio for the September 1, 2009 release?
CREATE TABLE table_name_56 (aspect_ratio VARCHAR, release_date VARCHAR)
{ "SQL_Query": "SELECT aspect_ratio FROM table_name_56 WHERE release_date = \"september 1, 2009\"" }
Which network broadcasted the cup after 2011?
CREATE TABLE table_name_12 (network VARCHAR, year INTEGER)
{ "SQL_Query": "SELECT network FROM table_name_12 WHERE year > 2011" }
When John Harkes was the color commentator, and Alexi Lalas and Steve McManaman were the pregame analysts, who were the sideline reporters?
CREATE TABLE table_name_84 (sideline_reporters VARCHAR, color_commentator VARCHAR, pregame_analysts VARCHAR)
{ "SQL_Query": "SELECT sideline_reporters FROM table_name_84 WHERE color_commentator = \"john harkes\" AND pregame_analysts = \"alexi lalas and steve mcmanaman\"" }
Who does pregame analysts for TSN2 network when Taylor Twellman is the color commentator?
CREATE TABLE table_name_74 (pregame_analysts VARCHAR, color_commentator VARCHAR, network VARCHAR)
{ "SQL_Query": "SELECT pregame_analysts FROM table_name_74 WHERE color_commentator = \"taylor twellman\" AND network = \"tsn2\"" }
With the game that was less than 16 what was the high assists?
CREATE TABLE table_name_60 (high_assists VARCHAR, game INTEGER)
{ "SQL_Query": "SELECT high_assists FROM table_name_60 WHERE game < 16" }
On December 25, what was the record?
CREATE TABLE table_name_82 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_82 WHERE date = \"december 25\"" }
What is the length of the track located in Taylorville, Illinois?
CREATE TABLE table_name_33 (length VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT length FROM table_name_33 WHERE location = \"taylorville, illinois\"" }
What was the sanction of the event at Nashville, Illinois?
CREATE TABLE table_name_5 (sanction VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT sanction FROM table_name_5 WHERE location = \"nashville, illinois\"" }
What programs are there for the South Fork Dirt Riders track?
CREATE TABLE table_name_44 (program VARCHAR, track_name VARCHAR)
{ "SQL_Query": "SELECT program FROM table_name_44 WHERE track_name = \"south fork dirt riders\"" }
How many points did Newport RFC get?
CREATE TABLE table_name_58 (points VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT points FROM table_name_58 WHERE club = \"newport rfc\"" }
What club had a loss of 15?
CREATE TABLE table_name_90 (club VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_90 WHERE lost = \"15\"" }
When there were 554 points, what was the point difference?
CREATE TABLE table_name_37 (points_difference VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT points_difference FROM table_name_37 WHERE points_for = \"554\"" }
When there were 767 points, what was the point difference?
CREATE TABLE table_name_34 (points_difference VARCHAR, points_against VARCHAR)
{ "SQL_Query": "SELECT points_difference FROM table_name_34 WHERE points_against = \"767\"" }
What club had a points difference of -24?
CREATE TABLE table_name_87 (club VARCHAR, points_difference VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_87 WHERE points_difference = \"-24\"" }
What is the outcome of the match with opponent Jade Curtis?
CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_55 WHERE opponent = \"jade curtis\"" }
What is the outcome of the match played on carpet surface?
CREATE TABLE table_name_27 (outcome VARCHAR, surface VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_27 WHERE surface = \"carpet\"" }
What is the name of the Tournament with Jade Curtis as the opponent?
CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_59 WHERE opponent = \"jade curtis\"" }
Who has Runs of 124?
CREATE TABLE table_name_79 (player VARCHAR, runs VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_79 WHERE runs = \"124\"" }
Name the Runs which has Venue of adelaide oval , adelaide?
CREATE TABLE table_name_47 (runs VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT runs FROM table_name_47 WHERE venue = \"adelaide oval , adelaide\"" }
Which Venue has michael di venuto on Season of 2000/01?
CREATE TABLE table_name_61 (venue VARCHAR, player VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_61 WHERE player = \"michael di venuto\" AND season = \"2000/01\"" }
Name the Runs has a Venue of bellerive oval , hobart, and a Season of 2004/05, and a Rank of 5?
CREATE TABLE table_name_26 (runs VARCHAR, rank VARCHAR, venue VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT runs FROM table_name_26 WHERE venue = \"bellerive oval , hobart\" AND season = \"2004/05\" AND rank = \"5\"" }
Name the Runs that has a Venue of bellerive oval , hobart, and a Player of travis birt?
CREATE TABLE table_name_2 (runs VARCHAR, venue VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT runs FROM table_name_2 WHERE venue = \"bellerive oval , hobart\" AND player = \"travis birt\"" }
What is the front-side bus for the processor whose frequency is 733MHz?
CREATE TABLE table_name_95 (front_side_bus VARCHAR, frequency VARCHAR)
{ "SQL_Query": "SELECT front_side_bus FROM table_name_95 WHERE frequency = \"733mhz\"" }
What is the L2 cache for the processor with a 750MHz frequency?
CREATE TABLE table_name_93 (l2_cache VARCHAR, frequency VARCHAR)
{ "SQL_Query": "SELECT l2_cache FROM table_name_93 WHERE frequency = \"750mhz\"" }
What is the multiplier for the processor with a frequency of 733MHz?
CREATE TABLE table_name_20 (multiplier VARCHAR, frequency VARCHAR)
{ "SQL_Query": "SELECT multiplier FROM table_name_20 WHERE frequency = \"733mhz\"" }
What is the smallest height with a prominence of 2,349?
CREATE TABLE table_name_26 (height__m_ INTEGER, prominence__m_ VARCHAR)
{ "SQL_Query": "SELECT MIN(height__m_) FROM table_name_26 WHERE prominence__m_ = 2 OFFSET 349" }
What was the result of the game after week 6 against the cleveland browns?
CREATE TABLE table_name_41 (result VARCHAR, week VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_41 WHERE week < 6 AND opponent = \"cleveland browns\"" }
What was the Ravens' record on December 5, 1999?
CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_33 WHERE date = \"december 5, 1999\"" }
What date did the Ravens play the buffalo bills?
CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_97 WHERE opponent = \"buffalo bills\"" }
What date was the week 10 game?
CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_89 WHERE week = 10" }
What was the school type for Los Angeles, California?
CREATE TABLE table_name_51 (type VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT type FROM table_name_51 WHERE location = \"los angeles, california\"" }
What were the dates for Honolulu, Hawaii in Kindergarten?
CREATE TABLE table_name_89 (dates VARCHAR, location VARCHAR, grade VARCHAR)
{ "SQL_Query": "SELECT dates FROM table_name_89 WHERE location = \"honolulu, hawaii\" AND grade = \"kindergarten\"" }
What is the highest Pick that has a round greater than 6 and an overall greater than 216?
CREATE TABLE table_name_46 (pick INTEGER, round VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT MAX(pick) FROM table_name_46 WHERE round > 6 AND overall > 216" }
What is the highest round that has an overall of 143 and a pick greater than 6?
CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_name_36 WHERE overall = 143 AND pick > 6" }
What was the session at the circuit of lowes motor speedway?
CREATE TABLE table_name_70 (session VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT session FROM table_name_70 WHERE circuit = \"lowes motor speedway\"" }
Which session had a discipline of open wheel?
CREATE TABLE table_name_96 (session VARCHAR, discipline VARCHAR)
{ "SQL_Query": "SELECT session FROM table_name_96 WHERE discipline = \"open wheel\"" }
Which championship had a Circuit of le mans?
CREATE TABLE table_name_39 (championship VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT championship FROM table_name_39 WHERE circuit = \"le mans\"" }
What was the discipline for the Championship of international championship for makes?
CREATE TABLE table_name_17 (discipline VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT discipline FROM table_name_17 WHERE championship = \"international championship for makes\"" }
What was the session at the circuit of autodrom most?
CREATE TABLE table_name_95 (session VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT session FROM table_name_95 WHERE circuit = \"autodrom most\"" }
What was the discipline for the euroboss championship?
CREATE TABLE table_name_59 (discipline VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT discipline FROM table_name_59 WHERE championship = \"euroboss\"" }
what is the lowest played when the position is more than 9?
CREATE TABLE table_name_76 (played INTEGER, position INTEGER)
{ "SQL_Query": "SELECT MIN(played) FROM table_name_76 WHERE position > 9" }
what is the average points when played is less than 16?
CREATE TABLE table_name_55 (points INTEGER, played INTEGER)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_55 WHERE played < 16" }
what is the highest points when position is higher than 6, lost is less than 12 and drawn is less than 1?
CREATE TABLE table_name_39 (points INTEGER, drawn VARCHAR, position VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT MAX(points) FROM table_name_39 WHERE position > 6 AND lost < 12 AND drawn < 1" }
what is the sum of points when lost is less than 10, name is vfl denklingen and position is higher than 2?
CREATE TABLE table_name_18 (points INTEGER, position VARCHAR, lost VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_18 WHERE lost < 10 AND name = \"vfl denklingen\" AND position > 2" }
WHAT IS THE WORST SCORE WHEN THE BEST SCORE WAS 8.8 AND AVERAGE WAS LARGER THAN 6.2?
CREATE TABLE table_name_72 (worst_score VARCHAR, best_score VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT COUNT(worst_score) FROM table_name_72 WHERE best_score = 8.8 AND average > 6.2" }
WHAT IS THE TOTAL AVERAGE WITH A PLACE SMALLER THAN 1?
CREATE TABLE table_name_53 (average VARCHAR, place INTEGER)
{ "SQL_Query": "SELECT COUNT(average) FROM table_name_53 WHERE place < 1" }
WHAT IS THE HIGHEST PLACE AND BEST SCORE BIGGER THAN 10?
CREATE TABLE table_name_3 (place INTEGER, best_score INTEGER)
{ "SQL_Query": "SELECT MAX(place) FROM table_name_3 WHERE best_score > 10" }
Can you tell me the High points that has the Date of january 31?
CREATE TABLE table_name_32 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_name_32 WHERE date = \"january 31\"" }
Can you tell me the Score that has the Game of 40?
CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_33 WHERE game = 40" }
What was Lee Trevino's score?
CREATE TABLE table_name_42 (score VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_42 WHERE player = \"lee trevino\"" }
What was the highest grid for Patrick Carpentier?
CREATE TABLE table_name_77 (grid INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT MAX(grid) FROM table_name_77 WHERE driver = \"patrick carpentier\"" }
Who has the lowest laps with 29 points on 1 grid?
CREATE TABLE table_name_16 (laps INTEGER, points VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT MIN(laps) FROM table_name_16 WHERE points = 29 AND grid < 1" }