Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
32,400
<question>: What seasons had a finale on May 25, 2004? <context>: CREATE TABLE table_175980_2 (season VARCHAR, finale VARCHAR)
SELECT season FROM table_175980_2 WHERE finale = "May 25, 2004"
32,401
<question>: What seasons had a ranking of #47? <context>: CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR)
SELECT season FROM table_175980_2 WHERE ranking = "#47"
32,402
<question>: What are all values for viewers for 1st season? <context>: CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, season VARCHAR)
SELECT viewers__in_millions_ FROM table_175980_2 WHERE season = "1st"
32,403
<question>: What is the withdraw date for secr no. 771? <context>: CREATE TABLE table_17607663_1 (date_withdrawn VARCHAR, secr_no VARCHAR)
SELECT date_withdrawn FROM table_17607663_1 WHERE secr_no = 771
32,404
<question>: Who is the builder for br no. 31779? <context>: CREATE TABLE table_17607663_1 (builder VARCHAR, br_no VARCHAR)
SELECT builder FROM table_17607663_1 WHERE br_no = 31779
32,405
<question>: what ist he country where the loan club is fulham? <context>: CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR)
SELECT country FROM table_17596418_5 WHERE loan_club = "Fulham"
32,406
<question>: what ist he total number of ages where the start date is 6 november? <context>: CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR)
SELECT COUNT(age) FROM table_17596418_5 WHERE started = "6 November"
32,407
<question>: What was the name of eipsode 618? <context>: CREATE TABLE table_17624965_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_17624965_1 WHERE production_code = 618
32,408
<question>: How many episodes did Alison Maclean direct? <context>: CREATE TABLE table_17624965_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_17624965_1 WHERE directed_by = "Alison Maclean"
32,409
<question>: Name the high points for may 29 <context>: CREATE TABLE table_17622423_12 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17622423_12 WHERE date = "May 29"
32,410
<question>: Name the date for series 2-2 <context>: CREATE TABLE table_17622423_12 (date VARCHAR, series VARCHAR)
SELECT date FROM table_17622423_12 WHERE series = "2-2"
32,411
<question>: Name the high assists for may 21 <context>: CREATE TABLE table_17622423_12 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17622423_12 WHERE date = "May 21"
32,412
<question>: How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers? <context>: CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR)
SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = "Darren Flutie, Eric Tillman and Greg Frers"
32,413
<question>: Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving? <context>: CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR)
SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving"
32,414
<question>: Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving? <context>: CREATE TABLE table_17628022_2 (pregame_host VARCHAR, sideline_reporters VARCHAR)
SELECT pregame_host FROM table_17628022_2 WHERE sideline_reporters = "Steve Armitage and Brenda Irving"
32,415
<question>: Who did pregame analysis in 2002? <context>: CREATE TABLE table_17628022_2 (pregame_analysts VARCHAR, year VARCHAR)
SELECT pregame_analysts FROM table_17628022_2 WHERE year = 2002
32,416
<question>: Name the state for lake county <context>: CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR)
SELECT state FROM table_1762887_1 WHERE county = "Lake county"
32,417
<question>: What is the lowest season? <context>: CREATE TABLE table_17632217_1 (season INTEGER)
SELECT MIN(season) FROM table_17632217_1
32,418
<question>: How many values for number of clubs have Shandong as the runner-up? <context>: CREATE TABLE table_17632217_1 (number_of_clubs VARCHAR, runners_up VARCHAR)
SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = "Shandong"
32,419
<question>: How many total wins with Shanghai as runner-up? <context>: CREATE TABLE table_17632217_1 (total_wins VARCHAR, runners_up VARCHAR)
SELECT COUNT(total_wins) FROM table_17632217_1 WHERE runners_up = "Shanghai"
32,420
<question>: Name the club for when tries for is 32 <context>: CREATE TABLE table_17625749_1 (club VARCHAR, tries_for VARCHAR)
SELECT club FROM table_17625749_1 WHERE tries_for = "32"
32,421
<question>: Name the number of lost where tries for is 109 <context>: CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR)
SELECT COUNT(lost) FROM table_17625749_1 WHERE tries_for = "109"
32,422
<question>: Name the won when tries against is 72 <context>: CREATE TABLE table_17625749_1 (won VARCHAR, tries_against VARCHAR)
SELECT won FROM table_17625749_1 WHERE tries_against = "72"
32,423
<question>: Name the points aginst when drawn is 1 and points is 51 <context>: CREATE TABLE table_17625749_1 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT points_against FROM table_17625749_1 WHERE drawn = "1" AND points = "51"
32,424
<question>: Name the original air date for number in season being 1 <context>: CREATE TABLE table_17625876_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_17625876_1 WHERE no_in_season = 1
32,425
<question>: How many were won when 5 were lost? <context>: CREATE TABLE table_17625749_3 (won VARCHAR, lost VARCHAR)
SELECT won FROM table_17625749_3 WHERE lost = "5"
32,426
<question>: How many were drawn when 13 were lost? <context>: CREATE TABLE table_17625749_3 (drawn VARCHAR, lost VARCHAR)
SELECT drawn FROM table_17625749_3 WHERE lost = "13"
32,427
<question>: How many points are there for 63 tries against? <context>: CREATE TABLE table_17625749_3 (points_for VARCHAR, tries_against VARCHAR)
SELECT points_for FROM table_17625749_3 WHERE tries_against = "63"
32,428
<question>: What is the try bonus when the tries against are 17? <context>: CREATE TABLE table_17625749_3 (try_bonus VARCHAR, tries_against VARCHAR)
SELECT try_bonus FROM table_17625749_3 WHERE tries_against = "17"
32,429
<question>: How many tries for are there when 11 were won? <context>: CREATE TABLE table_17625749_3 (tries_for VARCHAR, won VARCHAR)
SELECT tries_for FROM table_17625749_3 WHERE won = "11"
32,430
<question>: How many points categories are there when the losing bonus is 2 and points for are 642? <context>: CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = "2" AND points_for = "642"
32,431
<question>: How many people wrote the episode that had 6.34 million viewers? <context>: CREATE TABLE table_17641206_2 (written_by VARCHAR, viewership VARCHAR)
SELECT COUNT(written_by) FROM table_17641206_2 WHERE viewership = "6.34 million"
32,432
<question>: What was the title of the episode with 5.04 million viewers? <context>: CREATE TABLE table_17641206_4 (original_title VARCHAR, viewership VARCHAR)
SELECT original_title FROM table_17641206_4 WHERE viewership = "5.04 million"
32,433
<question>: What was the first airdate with a viewership of 4.77 million? <context>: CREATE TABLE table_17641206_4 (original_airdate VARCHAR, viewership VARCHAR)
SELECT original_airdate FROM table_17641206_4 WHERE viewership = "4.77 million"
32,434
<question>: How many episodes of 30 minutes were written by John Sullivan? <context>: CREATE TABLE table_17641206_4 (duration VARCHAR, written_by VARCHAR)
SELECT COUNT(duration) FROM table_17641206_4 WHERE written_by = "John Sullivan"
32,435
<question>: Who was the director when the writer was John Sullivan? <context>: CREATE TABLE table_17641206_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_17641206_4 WHERE written_by = "John Sullivan"
32,436
<question>: What are the movies that are written and dircted by john sullivan with the airdate of 15january2009. <context>: CREATE TABLE table_17641206_8 (directed_by VARCHAR, written_by VARCHAR, original_airdate VARCHAR)
SELECT directed_by FROM table_17641206_8 WHERE written_by = "John Sullivan" AND original_airdate = "15January2009"
32,437
<question>: How many episodes aired on 22january2009 <context>: CREATE TABLE table_17641206_8 (episode VARCHAR, original_airdate VARCHAR)
SELECT COUNT(episode) FROM table_17641206_8 WHERE original_airdate = "22January2009"
32,438
<question>: Name the least transfers out when transfers is 21 <context>: CREATE TABLE table_17650725_1 (transfers_out INTEGER, total_transfers VARCHAR)
SELECT MIN(transfers_out) FROM table_17650725_1 WHERE total_transfers = 21
32,439
<question>: Name the least total transfers for romania <context>: CREATE TABLE table_17650725_1 (total_transfers INTEGER, country VARCHAR)
SELECT MIN(total_transfers) FROM table_17650725_1 WHERE country = "Romania"
32,440
<question>: Name the least internal transfers <context>: CREATE TABLE table_17650725_1 (internal_transfers INTEGER)
SELECT MIN(internal_transfers) FROM table_17650725_1
32,441
<question>: How many status are there for Moncton? <context>: CREATE TABLE table_176529_2 (status VARCHAR, official_name VARCHAR)
SELECT COUNT(status) FROM table_176529_2 WHERE official_name = "Moncton"
32,442
<question>: What is the census ranking of the location with population of 959? <context>: CREATE TABLE table_176529_2 (census_ranking VARCHAR, population VARCHAR)
SELECT census_ranking FROM table_176529_2 WHERE population = 959
32,443
<question>: What is the name of the place with 582.20 square km area? <context>: CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_176529_2 WHERE area_km_2 = "582.20"
32,444
<question>: What is the name of the place where area is 578.28 square km? <context>: CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_176529_2 WHERE area_km_2 = "578.28"
32,445
<question>: If the points is 20, what was the team name? <context>: CREATE TABLE table_17693171_1 (team VARCHAR, points VARCHAR)
SELECT team FROM table_17693171_1 WHERE points = "20"
32,446
<question>: What is the time/retired if the driver is Marco Andretti? <context>: CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_17693171_1 WHERE driver = "Marco Andretti"
32,447
<question>: If the laps is 191, what is the maximum laps led? <context>: CREATE TABLE table_17693171_1 (laps INTEGER)
SELECT MAX(laps) AS Led FROM table_17693171_1 WHERE laps = 191
32,448
<question>: What is the time/retired if the driver is Ed Carpenter? <context>: CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_17693171_1 WHERE driver = "Ed Carpenter"
32,449
<question>: If the time/retired is +1 lap, what is the amount of maximum laps? <context>: CREATE TABLE table_17693171_1 (laps INTEGER, time_retired VARCHAR)
SELECT MAX(laps) FROM table_17693171_1 WHERE time_retired = "+1 lap"
32,450
<question>: If the driver is Milka Duno, what is the name of the team? <context>: CREATE TABLE table_17693171_1 (team VARCHAR, driver VARCHAR)
SELECT team FROM table_17693171_1 WHERE driver = "Milka Duno"
32,451
<question>: How many stages were won by Robbie McEwen? <context>: CREATE TABLE table_17672470_19 (stage VARCHAR, winner VARCHAR)
SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = "Robbie McEwen"
32,452
<question>: How many car numbers were listed for Rusty Wallace? <context>: CREATE TABLE table_1769428_2 (car__number VARCHAR, winning_driver VARCHAR)
SELECT COUNT(car__number) FROM table_1769428_2 WHERE winning_driver = "Rusty Wallace"
32,453
<question>: In what season did Rusty Wallace win? <context>: CREATE TABLE table_1769428_2 (season INTEGER, winning_driver VARCHAR)
SELECT MAX(season) FROM table_1769428_2 WHERE winning_driver = "Rusty Wallace"
32,454
<question>: What was the represented team on June 27? <context>: CREATE TABLE table_1769428_2 (team VARCHAR, date VARCHAR)
SELECT team FROM table_1769428_2 WHERE date = "June 27"
32,455
<question>: Who was the winning driver for Hendrick Motorsports in a Chevrolet Impala SS? <context>: CREATE TABLE table_1769428_2 (winning_driver VARCHAR, team VARCHAR, make VARCHAR)
SELECT winning_driver FROM table_1769428_2 WHERE team = "Hendrick Motorsports" AND make = "Chevrolet Impala SS"
32,456
<question>: When 45 is the goals for and 10 is the drawn what is the lost? <context>: CREATE TABLE table_17718005_2 (lost VARCHAR, drawn VARCHAR, goals_for VARCHAR)
SELECT lost FROM table_17718005_2 WHERE drawn = 10 AND goals_for = 45
32,457
<question>: When +10 is the goal difference what is the goals for? <context>: CREATE TABLE table_17718005_2 (goals_for VARCHAR, goal_difference VARCHAR)
SELECT goals_for FROM table_17718005_2 WHERE goal_difference = "+10"
32,458
<question>: When ellesmere port & neston is the team what are the points 1? <context>: CREATE TABLE table_17718005_2 (points_1 VARCHAR, team VARCHAR)
SELECT points_1 FROM table_17718005_2 WHERE team = "Ellesmere Port & Neston"
32,459
<question>: When 2005 is the season how many drivers are there? <context>: CREATE TABLE table_1771753_3 (driver VARCHAR, season VARCHAR)
SELECT COUNT(driver) FROM table_1771753_3 WHERE season = "2005"
32,460
<question>: When tony kanaan is the driver what is the average speed miles per hour? <context>: CREATE TABLE table_1771753_3 (average_speed__mph_ VARCHAR, driver VARCHAR)
SELECT average_speed__mph_ FROM table_1771753_3 WHERE driver = "Tony Kanaan"
32,461
<question>: When 169.182 is the average speed miles per hour what is the chassis? <context>: CREATE TABLE table_1771753_3 (chassis VARCHAR, average_speed__mph_ VARCHAR)
SELECT chassis FROM table_1771753_3 WHERE average_speed__mph_ = "169.182"
32,462
<question>: When 1:34:01 is the race time what is the miles in kilometers? <context>: CREATE TABLE table_1771753_3 (miles__km_ VARCHAR, race_time VARCHAR)
SELECT miles__km_ FROM table_1771753_3 WHERE race_time = "1:34:01"
32,463
<question>: When 228 is the lap and chip ganassi racing is the team what is the race time? <context>: CREATE TABLE table_1771753_3 (race_time VARCHAR, team VARCHAR, laps VARCHAR)
SELECT race_time FROM table_1771753_3 WHERE team = "Chip Ganassi Racing" AND laps = "228"
32,464
<question>: What tie number featured Chelsea as the home team? <context>: CREATE TABLE table_17736890_5 (tie_no INTEGER, home_team VARCHAR)
SELECT MIN(tie_no) FROM table_17736890_5 WHERE home_team = "Chelsea"
32,465
<question>: In what tie were Leeds United the away team? <context>: CREATE TABLE table_17736890_5 (tie_no INTEGER, away_team VARCHAR)
SELECT MAX(tie_no) FROM table_17736890_5 WHERE away_team = "Leeds United"
32,466
<question>: Who was the home team when Burnley were the away team? <context>: CREATE TABLE table_17736890_5 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_17736890_5 WHERE away_team = "Burnley"
32,467
<question>: what is the lowest year represented? <context>: CREATE TABLE table_177273_2 (year INTEGER)
SELECT MIN(year) FROM table_177273_2
32,468
<question>: What was the score when Françoise Dürr was partner? <context>: CREATE TABLE table_177273_2 (score VARCHAR, partner VARCHAR)
SELECT score FROM table_177273_2 WHERE partner = "Françoise Dürr"
32,469
<question>: What was the outcome in 1975? <context>: CREATE TABLE table_177273_2 (outcome VARCHAR, year VARCHAR)
SELECT outcome FROM table_177273_2 WHERE year = 1975
32,470
<question>: On what surface was the game played with a score of 6–4, 6–4? <context>: CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_177273_2 WHERE score = "6–4, 6–4"
32,471
<question>: What is the year of appearance for the Prince Albert Raiders? <context>: CREATE TABLE table_17751942_4 (years_of_appearance VARCHAR, team VARCHAR)
SELECT years_of_appearance FROM table_17751942_4 WHERE team = "Prince Albert Raiders"
32,472
<question>: How many wins do the Erie Otters have? <context>: CREATE TABLE table_17751942_4 (wins VARCHAR, team VARCHAR)
SELECT wins FROM table_17751942_4 WHERE team = "Erie Otters"
32,473
<question>: What is the final win percentage of the Sault Ste. Marie Greyhounds? <context>: CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)
SELECT final_win__percentage FROM table_17751942_4 WHERE team = "Sault Ste. Marie Greyhounds"
32,474
<question>: What is the total number of semi-final losses for the Kitchener Rangers? <context>: CREATE TABLE table_17751942_4 (final_losses VARCHAR, Semi INTEGER, team VARCHAR)
SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = "Kitchener Rangers"
32,475
<question>: How many wins do the Red Deer Rebels have? <context>: CREATE TABLE table_17751942_4 (wins INTEGER, team VARCHAR)
SELECT MAX(wins) FROM table_17751942_4 WHERE team = "Red Deer Rebels"
32,476
<question>: What is the record for November 26, 1961? <context>: CREATE TABLE table_17765888_1 (record VARCHAR, date VARCHAR)
SELECT record FROM table_17765888_1 WHERE date = "November 26, 1961"
32,477
<question>: What was the game site against the Dallas Texans? <context>: CREATE TABLE table_17765888_1 (game_site VARCHAR, opponent VARCHAR)
SELECT game_site FROM table_17765888_1 WHERE opponent = "Dallas Texans"
32,478
<question>: In how many years was Tom Fleming the final television commentator? <context>: CREATE TABLE table_17766232_7 (year_s_ VARCHAR, final_television_commentator VARCHAR)
SELECT COUNT(year_s_) FROM table_17766232_7 WHERE final_television_commentator = "Tom Fleming"
32,479
<question>: What was the latest year that Colin Berry was the spokesperson? <context>: CREATE TABLE table_17766232_7 (year_s_ INTEGER, spokesperson VARCHAR)
SELECT MAX(year_s_) FROM table_17766232_7 WHERE spokesperson = "Colin Berry"
32,480
<question>: Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray? <context>: CREATE TABLE table_17766232_7 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, final_television_commentator VARCHAR)
SELECT semi_final_television_commentator FROM table_17766232_7 WHERE spokesperson = "Colin Berry" AND final_television_commentator = "Pete Murray"
32,481
<question>: Who was the radio commentator when the final television commentator was John Dunn? <context>: CREATE TABLE table_17766232_7 (radio_commentator VARCHAR, final_television_commentator VARCHAR)
SELECT radio_commentator FROM table_17766232_7 WHERE final_television_commentator = "John Dunn"
32,482
<question>: What is the latest year that the final television commentator was David Jacobs? <context>: CREATE TABLE table_17766232_7 (year_s_ INTEGER, final_television_commentator VARCHAR)
SELECT MAX(year_s_) FROM table_17766232_7 WHERE final_television_commentator = "David Jacobs"
32,483
<question>: What was their record when the attendance at the game was 14489? <context>: CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_17765264_1 WHERE attendance = 14489
32,484
<question>: When did they play at the Cotton Bowl? <context>: CREATE TABLE table_17765264_1 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_17765264_1 WHERE game_site = "Cotton Bowl"
32,485
<question>: What is the percentage of this constellation abbreviated as 'nor'? <context>: CREATE TABLE table_177766_1 (per­cent­age VARCHAR, abbre­viation VARCHAR)
SELECT per­cent­age FROM table_177766_1 WHERE abbre­viation = "Nor"
32,486
<question>: This constellation, abbreviated as 'oph' has how many right ascension (in hm)? <context>: CREATE TABLE table_177766_1 (right_ascension__hm_ VARCHAR, abbre­viation VARCHAR)
SELECT COUNT(right_ascension__hm_) FROM table_177766_1 WHERE abbre­viation = "Oph"
32,487
<question>: What is the name of this constellation with an area of 245.375 sq. deg.? <context>: CREATE TABLE table_177766_1 (constellation VARCHAR, area__sqdeg_ VARCHAR)
SELECT constellation FROM table_177766_1 WHERE area__sqdeg_ = "245.375"
32,488
<question>: This constellation with a ranking of 51 has how many percentages on record? <context>: CREATE TABLE table_177766_1 (per VARCHAR, rank VARCHAR)
SELECT COUNT(per) AS ­cent­age FROM table_177766_1 WHERE rank = 51
32,489
<question>: What is the percentage of this constellation with an area of 248.885 sq. deg.? <context>: CREATE TABLE table_177766_1 (per­cent­age VARCHAR, area__sqdeg_ VARCHAR)
SELECT per­cent­age FROM table_177766_1 WHERE area__sqdeg_ = "248.885"
32,490
<question>: Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r <context>: CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)
SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = "6.4" AND archive = "16mm t/r"
32,491
<question>: Name the archive where run time 24:04 <context>: CREATE TABLE table_1776943_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_1776943_1 WHERE run_time = "24:04"
32,492
<question>: On November 1, 1964, where was the game site? <context>: CREATE TABLE table_17781394_1 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_17781394_1 WHERE date = "November 1, 1964"
32,493
<question>: How many people attended the Week 8 game when Denver played Buffalo? <context>: CREATE TABLE table_17778417_1 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_17778417_1 WHERE week = 8
32,494
<question>: How many times did the Denver Broncos face the Dallas Texans this season? <context>: CREATE TABLE table_17778417_1 (record VARCHAR, opponent VARCHAR)
SELECT COUNT(record) FROM table_17778417_1 WHERE opponent = "Dallas Texans"
32,495
<question>: What year was the winning race time 1:55:13? <context>: CREATE TABLE table_17801022_1 (year INTEGER, race_time VARCHAR)
SELECT MAX(year) FROM table_17801022_1 WHERE race_time = "1:55:13"
32,496
<question>: For races with an average speed of 113.835 mph, what are the winning race times? <context>: CREATE TABLE table_17801022_1 (race_time VARCHAR, average_speed__mph_ VARCHAR)
SELECT race_time FROM table_17801022_1 WHERE average_speed__mph_ = "113.835"
32,497
<question>: What manufacturer won the race on November 2? <context>: CREATE TABLE table_17801022_1 (manufacturer VARCHAR, date VARCHAR)
SELECT manufacturer FROM table_17801022_1 WHERE date = "November 2"
32,498
<question>: What date did Jamie McMurray win the race? <context>: CREATE TABLE table_17801022_1 (date VARCHAR, driver VARCHAR)
SELECT date FROM table_17801022_1 WHERE driver = "Jamie McMurray"
32,499
<question>: What was the date of the race with a winning time of 1:55:13? <context>: CREATE TABLE table_17801022_1 (date VARCHAR, race_time VARCHAR)
SELECT date FROM table_17801022_1 WHERE race_time = "1:55:13"