Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
34,400
<question>: How many 125cc winners were in the same events as when the Moto2 winner was Shoya Tomizawa? <context>: CREATE TABLE table_20935975_1 (moto2_winner VARCHAR)
SELECT COUNT(125 AS cc_winner) FROM table_20935975_1 WHERE moto2_winner = "Shoya Tomizawa"
34,401
<question>: After how many opponents was the overall record 1-0-0? <context>: CREATE TABLE table_20928682_1 (opponents VARCHAR, record VARCHAR)
SELECT COUNT(opponents) FROM table_20928682_1 WHERE record = "1-0-0"
34,402
<question>: What was the record after the game in which the Hurricanes scored 24 points? <context>: CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points VARCHAR)
SELECT record FROM table_20928682_1 WHERE hurricanes_points = 24
34,403
<question>: Which game number was played against Georgia? <context>: CREATE TABLE table_20928682_1 (game INTEGER, opponent VARCHAR)
SELECT MIN(game) FROM table_20928682_1 WHERE opponent = "Georgia"
34,404
<question>: How many games were played against Tulane? <context>: CREATE TABLE table_20928682_1 (opponents VARCHAR, opponent VARCHAR)
SELECT COUNT(opponents) FROM table_20928682_1 WHERE opponent = "Tulane"
34,405
<question>: How much parking is in Van Nuys at the Sepulveda station? <context>: CREATE TABLE table_2093995_1 (parking VARCHAR, city__neighborhood VARCHAR, stations VARCHAR)
SELECT parking FROM table_2093995_1 WHERE city__neighborhood = "Van Nuys" AND stations = "Sepulveda"
34,406
<question>: What are the stations in Tarzana? <context>: CREATE TABLE table_2093995_1 (stations VARCHAR, city__neighborhood VARCHAR)
SELECT stations FROM table_2093995_1 WHERE city__neighborhood = "Tarzana"
34,407
<question>: How many connection catagories are there for Tampa? <context>: CREATE TABLE table_2093995_1 (connections VARCHAR, stations VARCHAR)
SELECT COUNT(connections) FROM table_2093995_1 WHERE stations = "Tampa"
34,408
<question>: Which station has park & ride lot parking? <context>: CREATE TABLE table_2093995_1 (stations VARCHAR, parking VARCHAR)
SELECT stations FROM table_2093995_1 WHERE parking = "Park & Ride Lot"
34,409
<question>: What is the 3-dart average with a high checkout of 112? <context>: CREATE TABLE table_20948329_1 (high_checkout VARCHAR)
SELECT 3 AS _dart_average FROM table_20948329_1 WHERE high_checkout = 112
34,410
<question>: How many 180s have legs won of 45? <context>: CREATE TABLE table_20948329_1 (legs_won VARCHAR)
SELECT MAX(180 AS s) FROM table_20948329_1 WHERE legs_won = 45
34,411
<question>: The player who had 145 yards had how many touchdowns? <context>: CREATE TABLE table_20938922_2 (touchdowns VARCHAR, yards VARCHAR)
SELECT COUNT(touchdowns) FROM table_20938922_2 WHERE yards = 145
34,412
<question>: Which team did the player have who had 27 total carries? <context>: CREATE TABLE table_20938922_2 (team VARCHAR, carries VARCHAR)
SELECT team FROM table_20938922_2 WHERE carries = 27
34,413
<question>: What was the player's team's opponent for Week 12? <context>: CREATE TABLE table_20938922_2 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_20938922_2 WHERE week = 12
34,414
<question>: Who directed the episode that originally aired on March 18, 1988? <context>: CREATE TABLE table_20967430_4 (directed_by VARCHAR, original_air_date VARCHAR)
SELECT directed_by FROM table_20967430_4 WHERE original_air_date = "March 18, 1988"
34,415
<question>: What was the name of the episode that aired originally on March 11, 1988? <context>: CREATE TABLE table_20967430_4 (title VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_20967430_4 WHERE original_air_date = "March 11, 1988"
34,416
<question>: What is the production code of the episode written by Jack Carrerrow? <context>: CREATE TABLE table_20967430_4 (prod_code VARCHAR, written_by VARCHAR)
SELECT prod_code FROM table_20967430_4 WHERE written_by = "Jack Carrerrow"
34,417
<question>: How many episodes had a production code of 5m13? <context>: CREATE TABLE table_20967430_4 (ep VARCHAR, prod_code VARCHAR)
SELECT COUNT(ep) FROM table_20967430_4 WHERE prod_code = "5M13"
34,418
<question>: Name the title that aired for november 08, 1985 <context>: CREATE TABLE table_20967430_2 (title VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_20967430_2 WHERE original_air_date = "November 08, 1985"
34,419
<question>: Name the production code for november 08, 1985 <context>: CREATE TABLE table_20967430_2 (prod_code VARCHAR, original_air_date VARCHAR)
SELECT prod_code FROM table_20967430_2 WHERE original_air_date = "November 08, 1985"
34,420
<question>: Name the written by for production code 4g07 <context>: CREATE TABLE table_20967430_2 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_20967430_2 WHERE prod_code = "4G07"
34,421
<question>: Name the least episode for november 29, 1985 <context>: CREATE TABLE table_20967430_2 (ep INTEGER, original_air_date VARCHAR)
SELECT MIN(ep) FROM table_20967430_2 WHERE original_air_date = "November 29, 1985"
34,422
<question>: What was the final score when tracy austin was runner up? <context>: CREATE TABLE table_20986710_1 (score_in_final VARCHAR, runner_up VARCHAR)
SELECT score_in_final FROM table_20986710_1 WHERE runner_up = "Tracy Austin"
34,423
<question>: When 5a06 is the production code what is the highest episode? <context>: CREATE TABLE table_20967430_3 (ep INTEGER, prod_code VARCHAR)
SELECT MAX(ep) FROM table_20967430_3 WHERE prod_code = "5A06"
34,424
<question>: When it is season 10 who are the writers? <context>: CREATE TABLE table_20967430_3 (written_by VARCHAR, season VARCHAR)
SELECT written_by FROM table_20967430_3 WHERE season = 10
34,425
<question>: when womens singles is wang yihan and tour is french super series, what were the men's singles? <context>: CREATE TABLE table_21001903_2 (mens_singles VARCHAR, womens_singles VARCHAR, tour VARCHAR)
SELECT mens_singles FROM table_21001903_2 WHERE womens_singles = "Wang Yihan" AND tour = "French Super Series"
34,426
<question>: when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour? <context>: CREATE TABLE table_21001903_2 (tour VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)
SELECT tour FROM table_21001903_2 WHERE mixed_doubles = "Zheng Bo Ma Jin" AND womens_singles = "Wang Yihan"
34,427
<question>: How many titles were directed by Alex Chapple? <context>: CREATE TABLE table_21002034_4 (title VARCHAR, director VARCHAR)
SELECT COUNT(title) FROM table_21002034_4 WHERE director = "Alex Chapple"
34,428
<question>: Name the most number for air date 2009/12/29 <context>: CREATE TABLE table_21002034_7 (_number INTEGER, air_date_netherlands_yyyy_mm_dd VARCHAR)
SELECT MAX(_number) FROM table_21002034_7 WHERE air_date_netherlands_yyyy_mm_dd = "2009/12/29"
34,429
<question>: How many millions viewers watched the episode that ran 23:25? <context>: CREATE TABLE table_2101431_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT viewers__in_millions_ FROM table_2101431_1 WHERE run_time = "23:25"
34,430
<question>: What is the broadcast date of the episode on 16mm t/r that ran 23:25? <context>: CREATE TABLE table_2101431_1 (broadcast_date VARCHAR, archive VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_2101431_1 WHERE archive = "16mm t/r" AND run_time = "23:25"
34,431
<question>: Which episode was watched by 7.2 million viewers? <context>: CREATE TABLE table_2101431_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
SELECT episode FROM table_2101431_1 WHERE viewers__in_millions_ = "7.2"
34,432
<question>: What episode had a run time of 24:18? <context>: CREATE TABLE table_2101431_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2101431_1 WHERE run_time = "24:18"
34,433
<question>: What is the greatest number of valves? <context>: CREATE TABLE table_21021796_1 (valves INTEGER)
SELECT MIN(valves) FROM table_21021796_1
34,434
<question>: For the 1999 w210 e-class , 2000 w203 c-class, what is the stroke? <context>: CREATE TABLE table_21021796_1 (stroke VARCHAR, applications VARCHAR)
SELECT stroke FROM table_21021796_1 WHERE applications = "1999 W210 E-Class , 2000 W203 C-Class"
34,435
<question>: What is the displacement for torque of n·m (lb·ft) @1500 rpm? <context>: CREATE TABLE table_21021796_1 (displacement VARCHAR, torque VARCHAR)
SELECT displacement FROM table_21021796_1 WHERE torque = "N·m (lb·ft) @1500 rpm"
34,436
<question>: If torque is n·m (lb·ft) @1600–2400 rpm and applications is 2000 w90x sprinter, what is the power? <context>: CREATE TABLE table_21021796_1 (power VARCHAR, torque VARCHAR, applications VARCHAR)
SELECT power FROM table_21021796_1 WHERE torque = "N·m (lb·ft) @1600–2400 rpm" AND applications = "2000 W90x Sprinter"
34,437
<question>: List the torque possible when the stroke is 88.4mm? <context>: CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR)
SELECT torque FROM table_21021796_1 WHERE stroke = "88.4mm"
34,438
<question>: Name the opponent for 7-1-0 <context>: CREATE TABLE table_21007907_1 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_21007907_1 WHERE record = "7-1-0"
34,439
<question>: Name the episode for run time 25:05 <context>: CREATE TABLE table_2102782_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2102782_1 WHERE run_time = "25:05"
34,440
<question>: Name the broadcast date for run timke of 25:04 <context>: CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_2102782_1 WHERE run_time = "25:04"
34,441
<question>: Name the archive for run time of 23:55 <context>: CREATE TABLE table_2102782_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2102782_1 WHERE run_time = "23:55"
34,442
<question>: Name the broadcast date for 7.4 viewers <context>: CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_2102782_1 WHERE viewers__in_millions_ = "7.4"
34,443
<question>: Name the broadcast date for 6.0 viewers <context>: CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_2102782_1 WHERE viewers__in_millions_ = "6.0"
34,444
<question>: How many episodes were written by Kirstie Falkous & John Regier? <context>: CREATE TABLE table_21025437_2 (episode_no VARCHAR, written_by VARCHAR)
SELECT COUNT(episode_no) FROM table_21025437_2 WHERE written_by = "Kirstie Falkous & John Regier"
34,445
<question>: What episode had 9.7 million viewers? <context>: CREATE TABLE table_2102714_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
SELECT episode FROM table_2102714_1 WHERE viewers__in_millions_ = "9.7"
34,446
<question>: What date was an episode broadcasted on that had a run time of 24:40? <context>: CREATE TABLE table_2102714_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_2102714_1 WHERE run_time = "24:40"
34,447
<question>: What episode had a run time of 24:53? <context>: CREATE TABLE table_2102714_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2102714_1 WHERE run_time = "24:53"
34,448
<question>: What was the archive for the episode with a run time of 25:24? <context>: CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2102714_1 WHERE run_time = "25:24"
34,449
<question>: What is he archive for the episode with a run time of 24:05? <context>: CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2102714_1 WHERE run_time = "24:05"
34,450
<question>: Who directed episode number 23? <context>: CREATE TABLE table_21025437_6 (directed_by VARCHAR, episode_no VARCHAR)
SELECT directed_by FROM table_21025437_6 WHERE episode_no = 23
34,451
<question>: What was the numer of the game when the record was 4-0? <context>: CREATE TABLE table_21034801_1 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_21034801_1 WHERE record = "4-0"
34,452
<question>: How many opponents led to an exactly 7-0 record? <context>: CREATE TABLE table_21034801_1 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_21034801_1 WHERE record = "7-0"
34,453
<question>: What number was the game against Kansas State? <context>: CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR)
SELECT game FROM table_21034801_1 WHERE opponent = "Kansas State"
34,454
<question>: How many episodes ran 24:33? <context>: CREATE TABLE table_2102898_1 (episode VARCHAR, run_time VARCHAR)
SELECT COUNT(episode) FROM table_2102898_1 WHERE run_time = "24:33"
34,455
<question>: On broadcast date is 25april1970, how many people tuned in? <context>: CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)
SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = "25April1970"
34,456
<question>: On broadcast date is 28march1970, how many people tuned in? <context>: CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)
SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = "28March1970"
34,457
<question>: On broadcast date is 21march1970, how many people tuned in? <context>: CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)
SELECT COUNT(viewers__in_millions_) FROM table_2102898_1 WHERE broadcast_date = "21March1970"
34,458
<question>: What is the archive of the show that aired on 18april1970? <context>: CREATE TABLE table_2102898_1 (archive VARCHAR, broadcast_date VARCHAR)
SELECT archive FROM table_2102898_1 WHERE broadcast_date = "18April1970"
34,459
<question>: What was the least amount of points scored by the golden bears when the opponent scored 15 points? <context>: CREATE TABLE table_21035326_1 (golden_bears_points INTEGER, opponents VARCHAR)
SELECT MIN(golden_bears_points) FROM table_21035326_1 WHERE opponents = 15
34,460
<question>: What is the total number of opponents played against the bears in game 4? <context>: CREATE TABLE table_21035326_1 (opponents VARCHAR, game VARCHAR)
SELECT COUNT(opponents) FROM table_21035326_1 WHERE game = 4
34,461
<question>: What opponent was playing against the Golden Bears when they scored 3 points? <context>: CREATE TABLE table_21035326_1 (opponent VARCHAR, golden_bears_points VARCHAR)
SELECT opponent FROM table_21035326_1 WHERE golden_bears_points = 3
34,462
<question>: What is the Medal of Honor with Army Distinguished Service Medal? <context>: CREATE TABLE table_2104176_1 (medal_of_honor VARCHAR, air_force_cross VARCHAR)
SELECT medal_of_honor FROM table_2104176_1 WHERE air_force_cross = "Army Distinguished Service Medal"
34,463
<question>: WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal? <context>: CREATE TABLE table_2104176_1 (homeland_security_distinguished_service_medal VARCHAR, medal_of_honor VARCHAR)
SELECT homeland_security_distinguished_service_medal FROM table_2104176_1 WHERE medal_of_honor = "Coast Guard Medal"
34,464
<question>: What is the distinguished service cross when the navy cross is Coast Guard commendation medal? <context>: CREATE TABLE table_2104176_1 (distinguished_service_cross VARCHAR, navy_cross VARCHAR)
SELECT distinguished_service_cross FROM table_2104176_1 WHERE navy_cross = "Coast Guard Commendation Medal"
34,465
<question>: What is the air force cross when you recieve the Aerial achievement medal? <context>: CREATE TABLE table_2104176_1 (air_force_cross VARCHAR, homeland_security_distinguished_service_medal VARCHAR)
SELECT air_force_cross FROM table_2104176_1 WHERE homeland_security_distinguished_service_medal = "Aerial Achievement Medal"
34,466
<question>: What is the coast guard cross when you recieve the navy distinguished service medal? <context>: CREATE TABLE table_2104176_1 (coast_guard_cross VARCHAR, distinguished_service_cross VARCHAR)
SELECT coast_guard_cross FROM table_2104176_1 WHERE distinguished_service_cross = "Navy Distinguished Service Medal"
34,467
<question>: How many figures are given for Walker's percentage in Kenosha county? <context>: CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)
SELECT COUNT(walker__percentage) FROM table_21046399_3 WHERE county = "Kenosha"
34,468
<question>: What percentage did Walker win in Calumet county? <context>: CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)
SELECT walker__percentage FROM table_21046399_3 WHERE county = "Calumet"
34,469
<question>: How many total figures are given for Milwaukee county? <context>: CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR)
SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = "Milwaukee"
34,470
<question>: What did they do in the game when their record was 3-2-1? <context>: CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR)
SELECT result FROM table_21058823_1 WHERE record = "3-2-1"
34,471
<question>: What did they do against Villanova? <context>: CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21058823_1 WHERE opponent = "Villanova"
34,472
<question>: What did they do against Memphis? <context>: CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21058823_1 WHERE opponent = "Memphis"
34,473
<question>: How many games did they play when their record 0-2-0? <context>: CREATE TABLE table_21058823_1 (date VARCHAR, record VARCHAR)
SELECT COUNT(date) FROM table_21058823_1 WHERE record = "0-2-0"
34,474
<question>: When did the episode seen by is 2.267 million people get aired? <context>: CREATE TABLE table_21055055_2 (au_air_date VARCHAR, viewers__m_ VARCHAR)
SELECT au_air_date FROM table_21055055_2 WHERE viewers__m_ = "2.267"
34,475
<question>: Name the episode for run time in 24:44 <context>: CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2105721_1 WHERE run_time = "24:44"
34,476
<question>: Name the total episode for runtime of 24:11 <context>: CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR)
SELECT COUNT(episode) FROM table_2105721_1 WHERE run_time = "24:11"
34,477
<question>: Who did the team play against when a record of 3-1, #16 was achieved? <context>: CREATE TABLE table_21063459_1 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_21063459_1 WHERE record = "3-1, #16"
34,478
<question>: What was the result of the game against Mississippi State? <context>: CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21063459_1 WHERE opponent = "Mississippi State"
34,479
<question>: Who did the team play against in the game that resulted with a loss? <context>: CREATE TABLE table_21063459_1 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_21063459_1 WHERE result = "Loss"
34,480
<question>: What game did the Bruins play Santa Clara? <context>: CREATE TABLE table_21058836_1 (game VARCHAR, opponent VARCHAR)
SELECT game FROM table_21058836_1 WHERE opponent = "Santa Clara"
34,481
<question>: Santa Clara was played how many times? <context>: CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR)
SELECT opponents FROM table_21058836_1 WHERE opponent = "Santa Clara"
34,482
<question>: The game the Bruins scored 26 ,what was the result? <context>: CREATE TABLE table_21058836_1 (result VARCHAR, opponents VARCHAR)
SELECT result FROM table_21058836_1 WHERE opponents = 26
34,483
<question>: What was the record for game 9? <context>: CREATE TABLE table_21058836_1 (record VARCHAR, game VARCHAR)
SELECT record FROM table_21058836_1 WHERE game = 9
34,484
<question>: Who were the opponents of the Wildcats in game 4? <context>: CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_21062353_1 WHERE game = 4
34,485
<question>: Who were the the opponents of the Wildcats for game 8 of the season? <context>: CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_21062353_1 WHERE game = 8
34,486
<question>: What was the record of the Wildcats after playing Florida? <context>: CREATE TABLE table_21062353_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_21062353_1 WHERE opponent = "Florida"
34,487
<question>: How many times did the Wildcats play a game 11 regardless of points scored? <context>: CREATE TABLE table_21062353_1 (wildcats_points VARCHAR, game VARCHAR)
SELECT COUNT(wildcats_points) FROM table_21062353_1 WHERE game = 11
34,488
<question>: Name the number of black knights points for 3 game <context>: CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR)
SELECT COUNT(black_knights_points) FROM table_21091145_1 WHERE game = 3
34,489
<question>: Name the opponents for game 5 <context>: CREATE TABLE table_21091145_1 (opponents VARCHAR, game VARCHAR)
SELECT opponents FROM table_21091145_1 WHERE game = 5
34,490
<question>: Name the result for 19 black knights points <context>: CREATE TABLE table_21091145_1 (result VARCHAR, black_knights_points VARCHAR)
SELECT result FROM table_21091145_1 WHERE black_knights_points = 19
34,491
<question>: Name the opponent for black knights points 27 <context>: CREATE TABLE table_21091145_1 (opponent VARCHAR, black_knights_points VARCHAR)
SELECT opponent FROM table_21091145_1 WHERE black_knights_points = 27
34,492
<question>: Name the date for game 8 <context>: CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR)
SELECT date FROM table_21091157_1 WHERE game = 8
34,493
<question>: Name the number of date for 1-0 record <context>: CREATE TABLE table_21091157_1 (date VARCHAR, record VARCHAR)
SELECT COUNT(date) FROM table_21091157_1 WHERE record = "1-0"
34,494
<question>: Name the game for record 1-0 <context>: CREATE TABLE table_21091157_1 (game VARCHAR, record VARCHAR)
SELECT game FROM table_21091157_1 WHERE record = "1-0"
34,495
<question>: Name the most game <context>: CREATE TABLE table_21091157_1 (game INTEGER)
SELECT MAX(game) FROM table_21091157_1
34,496
<question>: How many games have a record of 3-4-0? <context>: CREATE TABLE table_21091162_1 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_21091162_1 WHERE record = "3-4-0"
34,497
<question>: How many dates have boston college as the opponent? <context>: CREATE TABLE table_21091162_1 (date VARCHAR, opponent VARCHAR)
SELECT COUNT(date) FROM table_21091162_1 WHERE opponent = "Boston College"
34,498
<question>: How many games have Air Force as the opponent? <context>: CREATE TABLE table_21091162_1 (game INTEGER, opponent VARCHAR)
SELECT MAX(game) FROM table_21091162_1 WHERE opponent = "Air Force"
34,499
<question>: How many records have black knights points as 17? <context>: CREATE TABLE table_21091162_1 (record VARCHAR, black_knights_points VARCHAR)
SELECT COUNT(record) FROM table_21091162_1 WHERE black_knights_points = 17