text stringlengths 114 1.06k |
|---|
### question: How many 125cc winners were in the same events as when the Moto2 winner was Shoya Tomizawa? ### answer: SELECT COUNT(125 AS cc_winner) FROM table_20935975_1 WHERE moto2_winner = "Shoya Tomizawa" ### context: CREATE TABLE table_20935975_1 (moto2_winner VARCHAR) |
### question: After how many opponents was the overall record 1-0-0? ### answer: SELECT COUNT(opponents) FROM table_20928682_1 WHERE record = "1-0-0" ### context: CREATE TABLE table_20928682_1 (opponents VARCHAR, record VARCHAR) |
### question: What was the record after the game in which the Hurricanes scored 24 points? ### answer: SELECT record FROM table_20928682_1 WHERE hurricanes_points = 24 ### context: CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points VARCHAR) |
### question: Which game number was played against Georgia? ### answer: SELECT MIN(game) FROM table_20928682_1 WHERE opponent = "Georgia" ### context: CREATE TABLE table_20928682_1 (game INTEGER, opponent VARCHAR) |
### question: How many games were played against Tulane? ### answer: SELECT COUNT(opponents) FROM table_20928682_1 WHERE opponent = "Tulane" ### context: CREATE TABLE table_20928682_1 (opponents VARCHAR, opponent VARCHAR) |
### question: How much parking is in Van Nuys at the Sepulveda station? ### answer: SELECT parking FROM table_2093995_1 WHERE city__neighborhood = "Van Nuys" AND stations = "Sepulveda" ### context: CREATE TABLE table_2093995_1 (parking VARCHAR, city__neighborhood VARCHAR, stations VARCHAR) |
### question: What are the stations in Tarzana? ### answer: SELECT stations FROM table_2093995_1 WHERE city__neighborhood = "Tarzana" ### context: CREATE TABLE table_2093995_1 (stations VARCHAR, city__neighborhood VARCHAR) |
### question: How many connection catagories are there for Tampa? ### answer: SELECT COUNT(connections) FROM table_2093995_1 WHERE stations = "Tampa" ### context: CREATE TABLE table_2093995_1 (connections VARCHAR, stations VARCHAR) |
### question: Which station has park & ride lot parking? ### answer: SELECT stations FROM table_2093995_1 WHERE parking = "Park & Ride Lot" ### context: CREATE TABLE table_2093995_1 (stations VARCHAR, parking VARCHAR) |
### question: What is the 3-dart average with a high checkout of 112? ### answer: SELECT 3 AS _dart_average FROM table_20948329_1 WHERE high_checkout = 112 ### context: CREATE TABLE table_20948329_1 (high_checkout VARCHAR) |
### question: How many 180s have legs won of 45? ### answer: SELECT MAX(180 AS s) FROM table_20948329_1 WHERE legs_won = 45 ### context: CREATE TABLE table_20948329_1 (legs_won VARCHAR) |
### question: The player who had 145 yards had how many touchdowns? ### answer: SELECT COUNT(touchdowns) FROM table_20938922_2 WHERE yards = 145 ### context: CREATE TABLE table_20938922_2 (touchdowns VARCHAR, yards VARCHAR) |
### question: Which team did the player have who had 27 total carries? ### answer: SELECT team FROM table_20938922_2 WHERE carries = 27 ### context: CREATE TABLE table_20938922_2 (team VARCHAR, carries VARCHAR) |
### question: What was the player's team's opponent for Week 12? ### answer: SELECT opponent FROM table_20938922_2 WHERE week = 12 ### context: CREATE TABLE table_20938922_2 (opponent VARCHAR, week VARCHAR) |
### question: Who directed the episode that originally aired on March 18, 1988? ### answer: SELECT directed_by FROM table_20967430_4 WHERE original_air_date = "March 18, 1988" ### context: CREATE TABLE table_20967430_4 (directed_by VARCHAR, original_air_date VARCHAR) |
### question: What was the name of the episode that aired originally on March 11, 1988? ### answer: SELECT title FROM table_20967430_4 WHERE original_air_date = "March 11, 1988" ### context: CREATE TABLE table_20967430_4 (title VARCHAR, original_air_date VARCHAR) |
### question: What is the production code of the episode written by Jack Carrerrow? ### answer: SELECT prod_code FROM table_20967430_4 WHERE written_by = "Jack Carrerrow" ### context: CREATE TABLE table_20967430_4 (prod_code VARCHAR, written_by VARCHAR) |
### question: How many episodes had a production code of 5m13? ### answer: SELECT COUNT(ep) FROM table_20967430_4 WHERE prod_code = "5M13" ### context: CREATE TABLE table_20967430_4 (ep VARCHAR, prod_code VARCHAR) |
### question: Name the title that aired for november 08, 1985 ### answer: SELECT title FROM table_20967430_2 WHERE original_air_date = "November 08, 1985" ### context: CREATE TABLE table_20967430_2 (title VARCHAR, original_air_date VARCHAR) |
### question: Name the production code for november 08, 1985 ### answer: SELECT prod_code FROM table_20967430_2 WHERE original_air_date = "November 08, 1985" ### context: CREATE TABLE table_20967430_2 (prod_code VARCHAR, original_air_date VARCHAR) |
### question: Name the written by for production code 4g07 ### answer: SELECT written_by FROM table_20967430_2 WHERE prod_code = "4G07" ### context: CREATE TABLE table_20967430_2 (written_by VARCHAR, prod_code VARCHAR) |
### question: Name the least episode for november 29, 1985 ### answer: SELECT MIN(ep) FROM table_20967430_2 WHERE original_air_date = "November 29, 1985" ### context: CREATE TABLE table_20967430_2 (ep INTEGER, original_air_date VARCHAR) |
### question: What was the final score when tracy austin was runner up? ### answer: SELECT score_in_final FROM table_20986710_1 WHERE runner_up = "Tracy Austin" ### context: CREATE TABLE table_20986710_1 (score_in_final VARCHAR, runner_up VARCHAR) |
### question: When 5a06 is the production code what is the highest episode? ### answer: SELECT MAX(ep) FROM table_20967430_3 WHERE prod_code = "5A06" ### context: CREATE TABLE table_20967430_3 (ep INTEGER, prod_code VARCHAR) |
### question: When it is season 10 who are the writers? ### answer: SELECT written_by FROM table_20967430_3 WHERE season = 10 ### context: CREATE TABLE table_20967430_3 (written_by VARCHAR, season VARCHAR) |
### question: when womens singles is wang yihan and tour is french super series, what were the men's singles? ### answer: SELECT mens_singles FROM table_21001903_2 WHERE womens_singles = "Wang Yihan" AND tour = "French Super Series" ### context: CREATE TABLE table_21001903_2 (mens_singles VARCHAR, womens_singles VARCHA... |
### question: when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour? ### answer: SELECT tour FROM table_21001903_2 WHERE mixed_doubles = "Zheng Bo Ma Jin" AND womens_singles = "Wang Yihan" ### context: CREATE TABLE table_21001903_2 (tour VARCHAR, mixed_doubles VARCHAR, womens_singles... |
### question: How many titles were directed by Alex Chapple? ### answer: SELECT COUNT(title) FROM table_21002034_4 WHERE director = "Alex Chapple" ### context: CREATE TABLE table_21002034_4 (title VARCHAR, director VARCHAR) |
### question: Name the most number for air date 2009/12/29 ### answer: SELECT MAX(_number) FROM table_21002034_7 WHERE air_date_netherlands_yyyy_mm_dd = "2009/12/29" ### context: CREATE TABLE table_21002034_7 (_number INTEGER, air_date_netherlands_yyyy_mm_dd VARCHAR) |
### question: How many millions viewers watched the episode that ran 23:25? ### answer: SELECT viewers__in_millions_ FROM table_2101431_1 WHERE run_time = "23:25" ### context: CREATE TABLE table_2101431_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR) |
### question: What is the broadcast date of the episode on 16mm t/r that ran 23:25? ### answer: SELECT broadcast_date FROM table_2101431_1 WHERE archive = "16mm t/r" AND run_time = "23:25" ### context: CREATE TABLE table_2101431_1 (broadcast_date VARCHAR, archive VARCHAR, run_time VARCHAR) |
### question: Which episode was watched by 7.2 million viewers? ### answer: SELECT episode FROM table_2101431_1 WHERE viewers__in_millions_ = "7.2" ### context: CREATE TABLE table_2101431_1 (episode VARCHAR, viewers__in_millions_ VARCHAR) |
### question: What episode had a run time of 24:18? ### answer: SELECT episode FROM table_2101431_1 WHERE run_time = "24:18" ### context: CREATE TABLE table_2101431_1 (episode VARCHAR, run_time VARCHAR) |
### question: What is the greatest number of valves? ### answer: SELECT MIN(valves) FROM table_21021796_1 ### context: CREATE TABLE table_21021796_1 (valves INTEGER) |
### question: For the 1999 w210 e-class , 2000 w203 c-class, what is the stroke? ### answer: SELECT stroke FROM table_21021796_1 WHERE applications = "1999 W210 E-Class , 2000 W203 C-Class" ### context: CREATE TABLE table_21021796_1 (stroke VARCHAR, applications VARCHAR) |
### question: What is the displacement for torque of n·m (lb·ft) @1500 rpm? ### answer: SELECT displacement FROM table_21021796_1 WHERE torque = "N·m (lb·ft) @1500 rpm" ### context: CREATE TABLE table_21021796_1 (displacement VARCHAR, torque VARCHAR) |
### question: If torque is n·m (lb·ft) @1600–2400 rpm and applications is 2000 w90x sprinter, what is the power? ### answer: SELECT power FROM table_21021796_1 WHERE torque = "N·m (lb·ft) @1600–2400 rpm" AND applications = "2000 W90x Sprinter" ### context: CREATE TABLE table_21021796_1 (power VARCHAR, torque VARCHAR, a... |
### question: List the torque possible when the stroke is 88.4mm? ### answer: SELECT torque FROM table_21021796_1 WHERE stroke = "88.4mm" ### context: CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR) |
### question: Name the opponent for 7-1-0 ### answer: SELECT opponent FROM table_21007907_1 WHERE record = "7-1-0" ### context: CREATE TABLE table_21007907_1 (opponent VARCHAR, record VARCHAR) |
### question: Name the episode for run time 25:05 ### answer: SELECT episode FROM table_2102782_1 WHERE run_time = "25:05" ### context: CREATE TABLE table_2102782_1 (episode VARCHAR, run_time VARCHAR) |
### question: Name the broadcast date for run timke of 25:04 ### answer: SELECT broadcast_date FROM table_2102782_1 WHERE run_time = "25:04" ### context: CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, run_time VARCHAR) |
### question: Name the archive for run time of 23:55 ### answer: SELECT archive FROM table_2102782_1 WHERE run_time = "23:55" ### context: CREATE TABLE table_2102782_1 (archive VARCHAR, run_time VARCHAR) |
### question: Name the broadcast date for 7.4 viewers ### answer: SELECT broadcast_date FROM table_2102782_1 WHERE viewers__in_millions_ = "7.4" ### context: CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) |
### question: Name the broadcast date for 6.0 viewers ### answer: SELECT broadcast_date FROM table_2102782_1 WHERE viewers__in_millions_ = "6.0" ### context: CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) |
### question: How many episodes were written by Kirstie Falkous & John Regier? ### answer: SELECT COUNT(episode_no) FROM table_21025437_2 WHERE written_by = "Kirstie Falkous & John Regier" ### context: CREATE TABLE table_21025437_2 (episode_no VARCHAR, written_by VARCHAR) |
### question: What episode had 9.7 million viewers? ### answer: SELECT episode FROM table_2102714_1 WHERE viewers__in_millions_ = "9.7" ### context: CREATE TABLE table_2102714_1 (episode VARCHAR, viewers__in_millions_ VARCHAR) |
### question: What date was an episode broadcasted on that had a run time of 24:40? ### answer: SELECT broadcast_date FROM table_2102714_1 WHERE run_time = "24:40" ### context: CREATE TABLE table_2102714_1 (broadcast_date VARCHAR, run_time VARCHAR) |
### question: What episode had a run time of 24:53? ### answer: SELECT episode FROM table_2102714_1 WHERE run_time = "24:53" ### context: CREATE TABLE table_2102714_1 (episode VARCHAR, run_time VARCHAR) |
### question: What was the archive for the episode with a run time of 25:24? ### answer: SELECT archive FROM table_2102714_1 WHERE run_time = "25:24" ### context: CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR) |
### question: What is he archive for the episode with a run time of 24:05? ### answer: SELECT archive FROM table_2102714_1 WHERE run_time = "24:05" ### context: CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR) |
### question: Who directed episode number 23? ### answer: SELECT directed_by FROM table_21025437_6 WHERE episode_no = 23 ### context: CREATE TABLE table_21025437_6 (directed_by VARCHAR, episode_no VARCHAR) |
### question: What was the numer of the game when the record was 4-0? ### answer: SELECT MAX(game) FROM table_21034801_1 WHERE record = "4-0" ### context: CREATE TABLE table_21034801_1 (game INTEGER, record VARCHAR) |
### question: How many opponents led to an exactly 7-0 record? ### answer: SELECT COUNT(opponent) FROM table_21034801_1 WHERE record = "7-0" ### context: CREATE TABLE table_21034801_1 (opponent VARCHAR, record VARCHAR) |
### question: What number was the game against Kansas State? ### answer: SELECT game FROM table_21034801_1 WHERE opponent = "Kansas State" ### context: CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR) |
### question: How many episodes ran 24:33? ### answer: SELECT COUNT(episode) FROM table_2102898_1 WHERE run_time = "24:33" ### context: CREATE TABLE table_2102898_1 (episode VARCHAR, run_time VARCHAR) |
### question: On broadcast date is 25april1970, how many people tuned in? ### answer: SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = "25April1970" ### context: CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR) |
### question: On broadcast date is 28march1970, how many people tuned in? ### answer: SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = "28March1970" ### context: CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR) |
### question: On broadcast date is 21march1970, how many people tuned in? ### answer: SELECT COUNT(viewers__in_millions_) FROM table_2102898_1 WHERE broadcast_date = "21March1970" ### context: CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR) |
### question: What is the archive of the show that aired on 18april1970? ### answer: SELECT archive FROM table_2102898_1 WHERE broadcast_date = "18April1970" ### context: CREATE TABLE table_2102898_1 (archive VARCHAR, broadcast_date VARCHAR) |
### question: What was the least amount of points scored by the golden bears when the opponent scored 15 points? ### answer: SELECT MIN(golden_bears_points) FROM table_21035326_1 WHERE opponents = 15 ### context: CREATE TABLE table_21035326_1 (golden_bears_points INTEGER, opponents VARCHAR) |
### question: What is the total number of opponents played against the bears in game 4? ### answer: SELECT COUNT(opponents) FROM table_21035326_1 WHERE game = 4 ### context: CREATE TABLE table_21035326_1 (opponents VARCHAR, game VARCHAR) |
### question: What opponent was playing against the Golden Bears when they scored 3 points? ### answer: SELECT opponent FROM table_21035326_1 WHERE golden_bears_points = 3 ### context: CREATE TABLE table_21035326_1 (opponent VARCHAR, golden_bears_points VARCHAR) |
### question: What is the Medal of Honor with Army Distinguished Service Medal? ### answer: SELECT medal_of_honor FROM table_2104176_1 WHERE air_force_cross = "Army Distinguished Service Medal" ### context: CREATE TABLE table_2104176_1 (medal_of_honor VARCHAR, air_force_cross VARCHAR) |
### question: WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal? ### answer: SELECT homeland_security_distinguished_service_medal FROM table_2104176_1 WHERE medal_of_honor = "Coast Guard Medal" ### context: CREATE TABLE table_2104176_1 (homeland_security_distinguishe... |
### question: What is the distinguished service cross when the navy cross is Coast Guard commendation medal? ### answer: SELECT distinguished_service_cross FROM table_2104176_1 WHERE navy_cross = "Coast Guard Commendation Medal" ### context: CREATE TABLE table_2104176_1 (distinguished_service_cross VARCHAR, navy_cross ... |
### question: What is the air force cross when you recieve the Aerial achievement medal? ### answer: SELECT air_force_cross FROM table_2104176_1 WHERE homeland_security_distinguished_service_medal = "Aerial Achievement Medal" ### context: CREATE TABLE table_2104176_1 (air_force_cross VARCHAR, homeland_security_distingu... |
### question: What is the coast guard cross when you recieve the navy distinguished service medal? ### answer: SELECT coast_guard_cross FROM table_2104176_1 WHERE distinguished_service_cross = "Navy Distinguished Service Medal" ### context: CREATE TABLE table_2104176_1 (coast_guard_cross VARCHAR, distinguished_service_... |
### question: How many figures are given for Walker's percentage in Kenosha county? ### answer: SELECT COUNT(walker__percentage) FROM table_21046399_3 WHERE county = "Kenosha" ### context: CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR) |
### question: What percentage did Walker win in Calumet county? ### answer: SELECT walker__percentage FROM table_21046399_3 WHERE county = "Calumet" ### context: CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR) |
### question: How many total figures are given for Milwaukee county? ### answer: SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = "Milwaukee" ### context: CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR) |
### question: What did they do in the game when their record was 3-2-1? ### answer: SELECT result FROM table_21058823_1 WHERE record = "3-2-1" ### context: CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR) |
### question: What did they do against Villanova? ### answer: SELECT result FROM table_21058823_1 WHERE opponent = "Villanova" ### context: CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR) |
### question: What did they do against Memphis? ### answer: SELECT result FROM table_21058823_1 WHERE opponent = "Memphis" ### context: CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR) |
### question: How many games did they play when their record 0-2-0? ### answer: SELECT COUNT(date) FROM table_21058823_1 WHERE record = "0-2-0" ### context: CREATE TABLE table_21058823_1 (date VARCHAR, record VARCHAR) |
### question: When did the episode seen by is 2.267 million people get aired? ### answer: SELECT au_air_date FROM table_21055055_2 WHERE viewers__m_ = "2.267" ### context: CREATE TABLE table_21055055_2 (au_air_date VARCHAR, viewers__m_ VARCHAR) |
### question: Name the episode for run time in 24:44 ### answer: SELECT episode FROM table_2105721_1 WHERE run_time = "24:44" ### context: CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR) |
### question: Name the total episode for runtime of 24:11 ### answer: SELECT COUNT(episode) FROM table_2105721_1 WHERE run_time = "24:11" ### context: CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR) |
### question: Who did the team play against when a record of 3-1, #16 was achieved? ### answer: SELECT opponent FROM table_21063459_1 WHERE record = "3-1, #16" ### context: CREATE TABLE table_21063459_1 (opponent VARCHAR, record VARCHAR) |
### question: What was the result of the game against Mississippi State? ### answer: SELECT result FROM table_21063459_1 WHERE opponent = "Mississippi State" ### context: CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR) |
### question: Who did the team play against in the game that resulted with a loss? ### answer: SELECT opponent FROM table_21063459_1 WHERE result = "Loss" ### context: CREATE TABLE table_21063459_1 (opponent VARCHAR, result VARCHAR) |
### question: What game did the Bruins play Santa Clara? ### answer: SELECT game FROM table_21058836_1 WHERE opponent = "Santa Clara" ### context: CREATE TABLE table_21058836_1 (game VARCHAR, opponent VARCHAR) |
### question: Santa Clara was played how many times? ### answer: SELECT opponents FROM table_21058836_1 WHERE opponent = "Santa Clara" ### context: CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR) |
### question: The game the Bruins scored 26 ,what was the result? ### answer: SELECT result FROM table_21058836_1 WHERE opponents = 26 ### context: CREATE TABLE table_21058836_1 (result VARCHAR, opponents VARCHAR) |
### question: What was the record for game 9? ### answer: SELECT record FROM table_21058836_1 WHERE game = 9 ### context: CREATE TABLE table_21058836_1 (record VARCHAR, game VARCHAR) |
### question: Who were the opponents of the Wildcats in game 4? ### answer: SELECT opponent FROM table_21062353_1 WHERE game = 4 ### context: CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR) |
### question: Who were the the opponents of the Wildcats for game 8 of the season? ### answer: SELECT opponent FROM table_21062353_1 WHERE game = 8 ### context: CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR) |
### question: What was the record of the Wildcats after playing Florida? ### answer: SELECT record FROM table_21062353_1 WHERE opponent = "Florida" ### context: CREATE TABLE table_21062353_1 (record VARCHAR, opponent VARCHAR) |
### question: How many times did the Wildcats play a game 11 regardless of points scored? ### answer: SELECT COUNT(wildcats_points) FROM table_21062353_1 WHERE game = 11 ### context: CREATE TABLE table_21062353_1 (wildcats_points VARCHAR, game VARCHAR) |
### question: Name the number of black knights points for 3 game ### answer: SELECT COUNT(black_knights_points) FROM table_21091145_1 WHERE game = 3 ### context: CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR) |
### question: Name the opponents for game 5 ### answer: SELECT opponents FROM table_21091145_1 WHERE game = 5 ### context: CREATE TABLE table_21091145_1 (opponents VARCHAR, game VARCHAR) |
### question: Name the result for 19 black knights points ### answer: SELECT result FROM table_21091145_1 WHERE black_knights_points = 19 ### context: CREATE TABLE table_21091145_1 (result VARCHAR, black_knights_points VARCHAR) |
### question: Name the opponent for black knights points 27 ### answer: SELECT opponent FROM table_21091145_1 WHERE black_knights_points = 27 ### context: CREATE TABLE table_21091145_1 (opponent VARCHAR, black_knights_points VARCHAR) |
### question: Name the date for game 8 ### answer: SELECT date FROM table_21091157_1 WHERE game = 8 ### context: CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR) |
### question: Name the number of date for 1-0 record ### answer: SELECT COUNT(date) FROM table_21091157_1 WHERE record = "1-0" ### context: CREATE TABLE table_21091157_1 (date VARCHAR, record VARCHAR) |
### question: Name the game for record 1-0 ### answer: SELECT game FROM table_21091157_1 WHERE record = "1-0" ### context: CREATE TABLE table_21091157_1 (game VARCHAR, record VARCHAR) |
### question: Name the most game ### answer: SELECT MAX(game) FROM table_21091157_1 ### context: CREATE TABLE table_21091157_1 (game INTEGER) |
### question: How many games have a record of 3-4-0? ### answer: SELECT MAX(game) FROM table_21091162_1 WHERE record = "3-4-0" ### context: CREATE TABLE table_21091162_1 (game INTEGER, record VARCHAR) |
### question: How many dates have boston college as the opponent? ### answer: SELECT COUNT(date) FROM table_21091162_1 WHERE opponent = "Boston College" ### context: CREATE TABLE table_21091162_1 (date VARCHAR, opponent VARCHAR) |
### question: How many games have Air Force as the opponent? ### answer: SELECT MAX(game) FROM table_21091162_1 WHERE opponent = "Air Force" ### context: CREATE TABLE table_21091162_1 (game INTEGER, opponent VARCHAR) |
### question: How many records have black knights points as 17? ### answer: SELECT COUNT(record) FROM table_21091162_1 WHERE black_knights_points = 17 ### context: CREATE TABLE table_21091162_1 (record VARCHAR, black_knights_points VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.