Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
17,900
<question>: What was the date for game 6? <context>: CREATE TABLE table_name_66 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_66 WHERE game = 6
17,901
<question>: Who was the visitor for the April 17 game? <context>: CREATE TABLE table_name_93 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_93 WHERE date = "april 17"
17,902
<question>: Which chassis did fondmetal f1 spa use after 1990? <context>: CREATE TABLE table_name_32 (chassis VARCHAR, year VARCHAR, entrant VARCHAR)
SELECT chassis FROM table_name_32 WHERE year > 1990 AND entrant = "fondmetal f1 spa"
17,903
<question>: What points did the ilmor v10 engine get after 1992? <context>: CREATE TABLE table_name_11 (points INTEGER, engine VARCHAR, year VARCHAR)
SELECT SUM(points) FROM table_name_11 WHERE engine = "ilmor v10" AND year > 1992
17,904
<question>: Name the place for tim clark <context>: CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_65 WHERE player = "tim clark"
17,905
<question>: Name the place for south africa and retief goosen <context>: CREATE TABLE table_name_98 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_98 WHERE country = "south africa" AND player = "retief goosen"
17,906
<question>: Name the To par for t10 place and score of 72-71=143 <context>: CREATE TABLE table_name_88 (to_par VARCHAR, place VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_88 WHERE place = "t10" AND score = 72 - 71 = 143
17,907
<question>: Which Opponent has a Method of submission? <context>: CREATE TABLE table_name_97 (opponent VARCHAR, method VARCHAR)
SELECT opponent FROM table_name_97 WHERE method = "submission"
17,908
<question>: Which Res has an Event of UFC 122? <context>: CREATE TABLE table_name_40 (res VARCHAR, event VARCHAR)
SELECT res FROM table_name_40 WHERE event = "ufc 122"
17,909
<question>: What was the record after the game against the St. Louis Cardinals? <context>: CREATE TABLE table_name_15 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_15 WHERE opponent = "st. louis cardinals"
17,910
<question>: How many attendance numbers are associated with the site of Veterans Stadium before week 1? <context>: CREATE TABLE table_name_59 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_59 WHERE game_site = "veterans stadium" AND week < 1
17,911
<question>: What is the future stem for the word that has an imperfect stem of hartzen? <context>: CREATE TABLE table_name_66 (future_stem VARCHAR, imperfect_stem VARCHAR)
SELECT future_stem FROM table_name_66 WHERE imperfect_stem = "hartzen"
17,912
<question>: What is the imperfect stem for the word that has a future stem of ikusiko? <context>: CREATE TABLE table_name_93 (imperfect_stem VARCHAR, future_stem VARCHAR)
SELECT imperfect_stem FROM table_name_93 WHERE future_stem = "ikusiko"
17,913
<question>: What is the short stem for the word that has a perfect stem of poztu? <context>: CREATE TABLE table_name_56 (short_stem VARCHAR, perfect_stem VARCHAR)
SELECT short_stem FROM table_name_56 WHERE perfect_stem = "poztu"
17,914
<question>: What is the imperfect stem of the word that means 'take away, remove'? <context>: CREATE TABLE table_name_74 (imperfect_stem VARCHAR, meaning VARCHAR)
SELECT imperfect_stem FROM table_name_74 WHERE meaning = "'take away, remove'"
17,915
<question>: What is the perfect stem for the word that has a future stem of emango? <context>: CREATE TABLE table_name_79 (perfect_stem VARCHAR, future_stem VARCHAR)
SELECT perfect_stem FROM table_name_79 WHERE future_stem = "emango"
17,916
<question>: Who was the opponent of the runner-up after 2012? <context>: CREATE TABLE table_name_51 (opponents VARCHAR, year VARCHAR, outcome VARCHAR)
SELECT opponents FROM table_name_51 WHERE year > 2012 AND outcome = "runner-up"
17,917
<question>: Who was the partner of the winner after 2012? <context>: CREATE TABLE table_name_12 (partner VARCHAR, year VARCHAR, outcome VARCHAR)
SELECT partner FROM table_name_12 WHERE year > 2012 AND outcome = "winner"
17,918
<question>: Name the outcome for 6 march 2000 <context>: CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_76 WHERE date = "6 march 2000"
17,919
<question>: Name the date when the surface was clay and the score was 6–1, 6–2 and runner-up <context>: CREATE TABLE table_name_6 (date VARCHAR, outcome VARCHAR, surface VARCHAR, score VARCHAR)
SELECT date FROM table_name_6 WHERE surface = "clay" AND score = "6–1, 6–2" AND outcome = "runner-up"
17,920
<question>: Name the score for 26 may 1997 <context>: CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_4 WHERE date = "26 may 1997"
17,921
<question>: Name the tournament for outcome of winner and clay surface with opponent of aranza salut <context>: CREATE TABLE table_name_61 (tournament VARCHAR, opponent VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT tournament FROM table_name_61 WHERE outcome = "winner" AND surface = "clay" AND opponent = "aranza salut"
17,922
<question>: Who did the Blue Jays lose to on July 16? <context>: CREATE TABLE table_name_15 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_15 WHERE date = "july 16"
17,923
<question>: Who had the men's win in the 1992/93 season? <context>: CREATE TABLE table_name_92 (winner VARCHAR, season VARCHAR)
SELECT winner AS Men FROM table_name_92 WHERE season = "1992/93"
17,924
<question>: Who had the women's win when Norway was the winner overall in season 2001/02? <context>: CREATE TABLE table_name_68 (winner VARCHAR, season VARCHAR)
SELECT winner AS Women FROM table_name_68 WHERE winner = "norway" AND season = "2001/02"
17,925
<question>: How many laps did Duke Nelson complete when his qualifying time was 122.951? <context>: CREATE TABLE table_name_29 (laps INTEGER, qual VARCHAR)
SELECT SUM(laps) FROM table_name_29 WHERE qual = "122.951"
17,926
<question>: How many laps did Duke Nelson complete when his qualifying time was 136.498? <context>: CREATE TABLE table_name_9 (laps INTEGER, qual VARCHAR)
SELECT MAX(laps) FROM table_name_9 WHERE qual = "136.498"
17,927
<question>: What entrant drove a car with a Moore chassis prior to 1953? <context>: CREATE TABLE table_name_37 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_37 WHERE year < 1953 AND chassis = "moore"
17,928
<question>: What opponent was in the match that resulted in 1-2? <context>: CREATE TABLE table_name_61 (opponent_team VARCHAR, result VARCHAR)
SELECT opponent_team FROM table_name_61 WHERE result = "1-2"
17,929
<question>: Which tournament has a value of a for 2009? <context>: CREATE TABLE table_name_42 (tournament VARCHAR)
SELECT tournament FROM table_name_42 WHERE 2009 = "a"
17,930
<question>: What is the value for 2011 when `a` is the value for 2009, and 4r is the value for 2013? <context>: CREATE TABLE table_name_89 (Id VARCHAR)
SELECT 2011 FROM table_name_89 WHERE 2009 = "a" AND 2013 = "4r"
17,931
<question>: What is the result for Chicago, Illinois? <context>: CREATE TABLE table_name_60 (result VARCHAR, hometown VARCHAR)
SELECT result FROM table_name_60 WHERE hometown = "chicago, illinois"
17,932
<question>: How much did the Hydra team from Bronx, New York raise? <context>: CREATE TABLE table_name_35 (raised VARCHAR, original_team VARCHAR, hometown VARCHAR)
SELECT raised FROM table_name_35 WHERE original_team = "hydra" AND hometown = "bronx, new york"
17,933
<question>: Name the attendance for atlanta braves opponent for september 9 <context>: CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
SELECT AVG(attendance) FROM table_name_26 WHERE opponent = "atlanta braves" AND date = "september 9"
17,934
<question>: What were the years active of the player from New Zealand with more than 11 caps? <context>: CREATE TABLE table_name_1 (years_active VARCHAR, caps VARCHAR, country VARCHAR)
SELECT years_active FROM table_name_1 WHERE caps > 11 AND country = "new zealand"
17,935
<question>: How many goals did a player from France have? <context>: CREATE TABLE table_name_6 (goals VARCHAR, country VARCHAR)
SELECT goals FROM table_name_6 WHERE country = "france"
17,936
<question>: How many goals did a player active since 2006 have? <context>: CREATE TABLE table_name_4 (goals VARCHAR, years_active VARCHAR)
SELECT goals FROM table_name_4 WHERE years_active = "2006"
17,937
<question>: What is the transfer window of the Leeds United source with a move from Motherwell? <context>: CREATE TABLE table_name_52 (transfer_window VARCHAR, source VARCHAR, moving_from VARCHAR)
SELECT transfer_window FROM table_name_52 WHERE source = "leeds united" AND moving_from = "motherwell"
17,938
<question>: What is the source of a move from Swindon Town? <context>: CREATE TABLE table_name_43 (source VARCHAR, moving_from VARCHAR)
SELECT source FROM table_name_43 WHERE moving_from = "swindon town"
17,939
<question>: What is the name of the country that has a transfer window of winter with an end after 2009 and moving from Bolton Wanderers? <context>: CREATE TABLE table_name_45 (country VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, ends VARCHAR)
SELECT country FROM table_name_45 WHERE transfer_window = "winter" AND ends > 2009 AND moving_from = "bolton wanderers"
17,940
<question>: What is the transfer fee of the move from Port Vale? <context>: CREATE TABLE table_name_34 (transfer_fee VARCHAR, moving_from VARCHAR)
SELECT transfer_fee FROM table_name_34 WHERE moving_from = "port vale"
17,941
<question>: What is the type of the Leeds United source, winter transfer window and moving from Northampton town? <context>: CREATE TABLE table_name_65 (type VARCHAR, moving_from VARCHAR, source VARCHAR, transfer_window VARCHAR)
SELECT type FROM table_name_65 WHERE source = "leeds united" AND transfer_window = "winter" AND moving_from = "northampton town"
17,942
<question>: What is the source of the move from Port Vale? <context>: CREATE TABLE table_name_97 (source VARCHAR, moving_from VARCHAR)
SELECT source FROM table_name_97 WHERE moving_from = "port vale"
17,943
<question>: What is the average silver medals a team ranked 12 with less than 2 bronze has? <context>: CREATE TABLE table_name_28 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT AVG(silver) FROM table_name_28 WHERE rank = 12 AND bronze < 2
17,944
<question>: What is the average rank Finland, which has 1 bronze, more than 1 silver, and less than 0 gold, has? <context>: CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT AVG(rank) FROM table_name_6 WHERE bronze = 1 AND silver > 1 AND nation = "finland" AND gold < 0
17,945
<question>: What is the lowest amount of gold a team with less than 2 total medals, ranked 17, and more than 0 silver medals, has? <context>: CREATE TABLE table_name_62 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)
SELECT MIN(gold) FROM table_name_62 WHERE total < 2 AND rank = 17 AND silver > 0
17,946
<question>: Who is the captain of the manchester city team? <context>: CREATE TABLE table_name_51 (captain VARCHAR, team VARCHAR)
SELECT captain FROM table_name_51 WHERE team = "manchester city"
17,947
<question>: Which captain's manager is Joe Royle? <context>: CREATE TABLE table_name_49 (captain VARCHAR, manager VARCHAR)
SELECT captain FROM table_name_49 WHERE manager = "joe royle"
17,948
<question>: Name the average founded with joined less than 2008 <context>: CREATE TABLE table_name_88 (founded INTEGER, joined INTEGER)
SELECT AVG(founded) FROM table_name_88 WHERE joined < 2008
17,949
<question>: What was the role for Challenge TV? <context>: CREATE TABLE table_name_55 (role VARCHAR, broadcaster VARCHAR)
SELECT role FROM table_name_55 WHERE broadcaster = "challenge tv"
17,950
<question>: Who was the broadcaster in 2003? <context>: CREATE TABLE table_name_24 (broadcaster VARCHAR, year VARCHAR)
SELECT broadcaster FROM table_name_24 WHERE year = "2003"
17,951
<question>: What was the role for BBC1? <context>: CREATE TABLE table_name_20 (role VARCHAR, broadcaster VARCHAR)
SELECT role FROM table_name_20 WHERE broadcaster = "bbc1"
17,952
<question>: What was the title with episode 8? <context>: CREATE TABLE table_name_82 (title VARCHAR, episodes VARCHAR)
SELECT title FROM table_name_82 WHERE episodes = "8"
17,953
<question>: What was the title for Sky One in 2005? <context>: CREATE TABLE table_name_27 (title VARCHAR, broadcaster VARCHAR, year VARCHAR)
SELECT title FROM table_name_27 WHERE broadcaster = "sky one" AND year = "2005"
17,954
<question>: What was Yardley-BRM's points high after 1971? <context>: CREATE TABLE table_name_96 (points INTEGER, entrant VARCHAR, year VARCHAR)
SELECT MAX(points) FROM table_name_96 WHERE entrant = "yardley-brm" AND year > 1971
17,955
<question>: What year did Austria-Marlboro BRM get more than 0 points? <context>: CREATE TABLE table_name_99 (year INTEGER, entrant VARCHAR, points VARCHAR)
SELECT AVG(year) FROM table_name_99 WHERE entrant = "austria-marlboro brm" AND points > 0
17,956
<question>: Which entrant has a Mclaren m7c Chassis? <context>: CREATE TABLE table_name_62 (entrant VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_62 WHERE chassis = "mclaren m7c"
17,957
<question>: Which province has gmp for an IATA? <context>: CREATE TABLE table_name_73 (province_region VARCHAR, iata VARCHAR)
SELECT province_region FROM table_name_73 WHERE iata = "gmp"
17,958
<question>: Which airport is in Tokyo and has an ICAO of rjtt? <context>: CREATE TABLE table_name_73 (airport VARCHAR, city VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_73 WHERE city = "tokyo" AND icao = "rjtt"
17,959
<question>: Which country is the ICAO vvts? <context>: CREATE TABLE table_name_80 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_80 WHERE icao = "vvts"
17,960
<question>: What airport is in Vietnam? <context>: CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)
SELECT airport FROM table_name_77 WHERE country = "vietnam"
17,961
<question>: Which airport has an IATA of hgh? <context>: CREATE TABLE table_name_29 (airport VARCHAR, iata VARCHAR)
SELECT airport FROM table_name_29 WHERE iata = "hgh"
17,962
<question>: Which city has an IATA of tsa? <context>: CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)
SELECT city FROM table_name_69 WHERE iata = "tsa"
17,963
<question>: Where was the starting position when there were 182 laps? <context>: CREATE TABLE table_name_84 (start VARCHAR, laps VARCHAR)
SELECT start FROM table_name_84 WHERE laps = 182
17,964
<question>: How many laps were completed with a start of 33, and a finish of 18? <context>: CREATE TABLE table_name_67 (laps INTEGER, start VARCHAR, finish VARCHAR)
SELECT MAX(laps) FROM table_name_67 WHERE start = "33" AND finish = "18"
17,965
<question>: When completing 182 laps, what was the qual.? <context>: CREATE TABLE table_name_67 (qual VARCHAR, laps VARCHAR)
SELECT qual FROM table_name_67 WHERE laps = 182
17,966
<question>: What is the total number of laps that were completed in 1949? <context>: CREATE TABLE table_name_23 (laps VARCHAR, year VARCHAR)
SELECT COUNT(laps) FROM table_name_23 WHERE year = "1949"
17,967
<question>: What is the fewest number of laps completed by a rank 32? <context>: CREATE TABLE table_name_12 (laps INTEGER, rank VARCHAR)
SELECT MIN(laps) FROM table_name_12 WHERE rank = "32"
17,968
<question>: On what date was the individual time trial? <context>: CREATE TABLE table_name_55 (date VARCHAR, type VARCHAR)
SELECT date FROM table_name_55 WHERE type = "individual time trial"
17,969
<question>: When was tony parker (guard) born? <context>: CREATE TABLE table_name_31 (year_born INTEGER, position VARCHAR, player VARCHAR)
SELECT MAX(year_born) FROM table_name_31 WHERE position = "guard" AND player = "tony parker"
17,970
<question>: What team does tariq kirksay, a guard who is taller than 1.8M and born before 1982, represent? <context>: CREATE TABLE table_name_13 (current_club VARCHAR, player VARCHAR, year_born VARCHAR, height VARCHAR, position VARCHAR)
SELECT current_club FROM table_name_13 WHERE height > 1.8 AND position = "guard" AND year_born < 1982 AND player = "tariq kirksay"
17,971
<question>: What player is a center born in 1977? <context>: CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR, year_born VARCHAR)
SELECT player FROM table_name_79 WHERE position = "center" AND year_born = 1977
17,972
<question>: What is the extra result of the 4th game? <context>: CREATE TABLE table_name_37 (extra VARCHAR, result VARCHAR)
SELECT extra FROM table_name_37 WHERE result = "4th"
17,973
<question>: What extra is from after 2009? <context>: CREATE TABLE table_name_87 (extra VARCHAR, year INTEGER)
SELECT extra FROM table_name_87 WHERE year > 2009
17,974
<question>: Who was the Kit manufacturer that was has shirts sponsored by Walkers? <context>: CREATE TABLE table_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = "walkers"
17,975
<question>: Which team is the kit manufacturer Umbro, and the captain Gary Mabbutt? <context>: CREATE TABLE table_name_83 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)
SELECT team FROM table_name_83 WHERE kit_manufacturer = "umbro" AND captain = "gary mabbutt"
17,976
<question>: Who is the captain for the manufacturer Pony, and the manager Harry Redknapp? <context>: CREATE TABLE table_name_59 (captain VARCHAR, kit_manufacturer VARCHAR, manager VARCHAR)
SELECT captain FROM table_name_59 WHERE kit_manufacturer = "pony" AND manager = "harry redknapp"
17,977
<question>: Who is the shirt sponsor for the manufacturer Nike? <context>: CREATE TABLE table_name_54 (shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)
SELECT shirt_sponsor FROM table_name_54 WHERE kit_manufacturer = "nike"
17,978
<question>: Which team has the team captain Jon Newsome? <context>: CREATE TABLE table_name_81 (team VARCHAR, captain VARCHAR)
SELECT team FROM table_name_81 WHERE captain = "jon newsome"
17,979
<question>: What was the GSR number on the date 1883? <context>: CREATE TABLE table_name_50 (gsr_nos VARCHAR, date_made VARCHAR)
SELECT gsr_nos FROM table_name_50 WHERE date_made = "1883"
17,980
<question>: What was the quantity of the fleet information for DWWR 50 and 51? <context>: CREATE TABLE table_name_4 (quantity_made VARCHAR, fleet_numbers VARCHAR)
SELECT quantity_made FROM table_name_4 WHERE fleet_numbers = "dwwr 50 and 51"
17,981
<question>: What was the quantity for Inchicore of J7? <context>: CREATE TABLE table_name_3 (quantity_made VARCHAR, inchicore_class VARCHAR)
SELECT quantity_made FROM table_name_3 WHERE inchicore_class = "j7"
17,982
<question>: What's the highest round for a defensive tackle position? <context>: CREATE TABLE table_name_70 (round INTEGER, position VARCHAR)
SELECT MAX(round) FROM table_name_70 WHERE position = "defensive tackle"
17,983
<question>: What is the smallest round associated with Samuel Scheschuk? <context>: CREATE TABLE table_name_54 (round INTEGER, name VARCHAR)
SELECT MIN(round) FROM table_name_54 WHERE name = "samuel scheschuk"
17,984
<question>: How many people were in attendance on the day there was a 30-22 victory? <context>: CREATE TABLE table_name_13 (attendance VARCHAR, record VARCHAR)
SELECT COUNT(attendance) FROM table_name_13 WHERE record = "30-22"
17,985
<question>: Who lost on June 29? <context>: CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_84 WHERE date = "june 29"
17,986
<question>: What is the score with lost as the result? <context>: CREATE TABLE table_name_80 (score VARCHAR, result VARCHAR)
SELECT score FROM table_name_80 WHERE result = "lost"
17,987
<question>: Which date has china as the venue? <context>: CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_25 WHERE venue = "china"
17,988
<question>: Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date? <context>: CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR)
SELECT score FROM table_name_92 WHERE competition = "1997 dunhill cup malaysia" AND date = "february 23, 1997"
17,989
<question>: Which competition has 4-0 as the score? <context>: CREATE TABLE table_name_88 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_88 WHERE score = "4-0"
17,990
<question>: What score has october 16, 2000 as the date? <context>: CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_71 WHERE date = "october 16, 2000"
17,991
<question>: What is the result of the competition of 2000 afc asian cup group stages? <context>: CREATE TABLE table_name_22 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_22 WHERE competition = "2000 afc asian cup group stages"
17,992
<question>: What is the motive before 2007? <context>: CREATE TABLE table_name_25 (motive VARCHAR, year INTEGER)
SELECT motive FROM table_name_25 WHERE year < 2007
17,993
<question>: What is the result of the directorial debut of the year award? <context>: CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR)
SELECT result FROM table_name_77 WHERE category = "directorial debut of the year"
17,994
<question>: What is the category for the premios lo nuestro award? <context>: CREATE TABLE table_name_72 (category VARCHAR, award VARCHAR)
SELECT category FROM table_name_72 WHERE award = "premios lo nuestro"
17,995
<question>: What's the average number of Laps, that had a start of 25, with a Qual of 138.063? <context>: CREATE TABLE table_name_21 (laps INTEGER, start VARCHAR, qual VARCHAR)
SELECT AVG(laps) FROM table_name_21 WHERE start = "25" AND qual = "138.063"
17,996
<question>: What year had the Finish of 12? <context>: CREATE TABLE table_name_65 (year VARCHAR, finish VARCHAR)
SELECT year FROM table_name_65 WHERE finish = "12"
17,997
<question>: In what year did a Qual of 141.105 with a Start of 25 happen? <context>: CREATE TABLE table_name_69 (year VARCHAR, start VARCHAR, qual VARCHAR)
SELECT year FROM table_name_69 WHERE start = "25" AND qual = "141.105"
17,998
<question>: What year had the largest number of laps over 196? <context>: CREATE TABLE table_name_52 (year VARCHAR, laps INTEGER)
SELECT year FROM table_name_52 WHERE laps > 196
17,999
<question>: Who are the runners-up in 1996? <context>: CREATE TABLE table_name_28 (runners_up VARCHAR, year VARCHAR)
SELECT runners_up FROM table_name_28 WHERE year = "1996"