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