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