question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
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)
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: 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"
After how many opponents was the overall record 1-0-0?
CREATE TABLE table_20928682_1 (opponents VARCHAR, record VARCHAR)
SELECT COUNT(opponents) FROM table_20928682_1 WHERE record = "1-0-0"
### Context: CREATE TABLE table_20928682_1 (opponents VARCHAR, record 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"
What was the record after the game in which the Hurricanes scored 24 points?
CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points VARCHAR)
SELECT record FROM table_20928682_1 WHERE hurricanes_points = 24
### Context: CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points 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
Which game number was played against Georgia?
CREATE TABLE table_20928682_1 (game INTEGER, opponent VARCHAR)
SELECT MIN(game) FROM table_20928682_1 WHERE opponent = "Georgia"
### Context: CREATE TABLE table_20928682_1 (game INTEGER, opponent VARCHAR) ### Question: Which game number was played against Georgia? ### Answer: 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)
SELECT COUNT(opponents) FROM table_20928682_1 WHERE opponent = "Tulane"
### Context: CREATE TABLE table_20928682_1 (opponents VARCHAR, opponent VARCHAR) ### Question: How many games were played against Tulane? ### Answer: 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)
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: 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"
What are the stations in Tarzana?
CREATE TABLE table_2093995_1 (stations VARCHAR, city__neighborhood VARCHAR)
SELECT stations FROM table_2093995_1 WHERE city__neighborhood = "Tarzana"
### Context: CREATE TABLE table_2093995_1 (stations VARCHAR, city__neighborhood VARCHAR) ### Question: What are the stations in Tarzana? ### Answer: 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)
SELECT COUNT(connections) FROM table_2093995_1 WHERE stations = "Tampa"
### Context: CREATE TABLE table_2093995_1 (connections VARCHAR, stations VARCHAR) ### Question: How many connection catagories are there for Tampa? ### Answer: 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)
SELECT stations FROM table_2093995_1 WHERE parking = "Park & Ride Lot"
### Context: CREATE TABLE table_2093995_1 (stations VARCHAR, parking VARCHAR) ### Question: Which station has park & ride lot parking? ### Answer: 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)
SELECT 3 AS _dart_average FROM table_20948329_1 WHERE high_checkout = 112
### Context: CREATE TABLE table_20948329_1 (high_checkout 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
How many 180s have legs won of 45?
CREATE TABLE table_20948329_1 (legs_won VARCHAR)
SELECT MAX(180 AS s) FROM table_20948329_1 WHERE legs_won = 45
### Context: CREATE TABLE table_20948329_1 (legs_won VARCHAR) ### Question: How many 180s have legs won of 45? ### Answer: 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)
SELECT COUNT(touchdowns) FROM table_20938922_2 WHERE yards = 145
### Context: CREATE TABLE table_20938922_2 (touchdowns VARCHAR, yards VARCHAR) ### Question: The player who had 145 yards had how many touchdowns? ### Answer: 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)
SELECT team FROM table_20938922_2 WHERE carries = 27
### Context: CREATE TABLE table_20938922_2 (team VARCHAR, carries VARCHAR) ### Question: Which team did the player have who had 27 total carries? ### Answer: 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)
SELECT opponent FROM table_20938922_2 WHERE week = 12
### Context: CREATE TABLE table_20938922_2 (opponent VARCHAR, week VARCHAR) ### Question: What was the player's team's opponent for Week 12? ### Answer: 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)
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: 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"
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)
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 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"
What is the production code of the episode written by Jack Carrerrow?
CREATE TABLE table_20967430_4 (prod_code VARCHAR, written_by VARCHAR)
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: 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"
How many episodes had a production code of 5m13?
CREATE TABLE table_20967430_4 (ep VARCHAR, prod_code VARCHAR)
SELECT COUNT(ep) FROM table_20967430_4 WHERE prod_code = "5M13"
### Context: CREATE TABLE table_20967430_4 (ep VARCHAR, prod_code VARCHAR) ### Question: How many episodes had a production code of 5m13? ### Answer: 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)
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 title that aired for november 08, 1985 ### Answer: 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)
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 production code for november 08, 1985 ### Answer: 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)
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 written by for production code 4g07 ### Answer: 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)
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: Name the least episode for november 29, 1985 ### Answer: 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)
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: 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"
When 5a06 is the production code what is the highest episode?
CREATE TABLE table_20967430_3 (ep INTEGER, prod_code VARCHAR)
SELECT MAX(ep) FROM table_20967430_3 WHERE prod_code = "5A06"
### Context: CREATE TABLE table_20967430_3 (ep INTEGER, prod_code 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"
When it is season 10 who are the writers?
CREATE TABLE table_20967430_3 (written_by VARCHAR, season VARCHAR)
SELECT written_by FROM table_20967430_3 WHERE season = 10
### Context: CREATE TABLE table_20967430_3 (written_by VARCHAR, season VARCHAR) ### Question: When it is season 10 who are the writers? ### Answer: 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)
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 VARCHAR, tour 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 = "Fren...
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)
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 VARCHAR) ### 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 = "Wa...
How many titles were directed by Alex Chapple?
CREATE TABLE table_21002034_4 (title VARCHAR, director VARCHAR)
SELECT COUNT(title) FROM table_21002034_4 WHERE director = "Alex Chapple"
### Context: CREATE TABLE table_21002034_4 (title VARCHAR, director VARCHAR) ### Question: How many titles were directed by Alex Chapple? ### Answer: 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)
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: 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"
How many millions viewers watched the episode that ran 23:25?
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"
### Context: CREATE TABLE table_2101431_1 (viewers__in_millions_ VARCHAR, run_time 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"
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)
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: 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"
Which episode was watched by 7.2 million viewers?
CREATE TABLE table_2101431_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
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: Which episode was watched by 7.2 million viewers? ### Answer: 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)
SELECT episode FROM table_2101431_1 WHERE run_time = "24:18"
### Context: CREATE TABLE table_2101431_1 (episode VARCHAR, run_time VARCHAR) ### Question: What episode had a run time of 24:18? ### Answer: 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)
SELECT MIN(valves) FROM table_21021796_1
### Context: CREATE TABLE table_21021796_1 (valves INTEGER) ### Question: What is the greatest number of valves? ### Answer: 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)
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: 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"
What is the displacement for torque of n·m (lb·ft) @1500 rpm?
CREATE TABLE table_21021796_1 (displacement VARCHAR, torque VARCHAR)
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: 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"
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)
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, applications 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 = ...
List the torque possible when the stroke is 88.4mm?
CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR)
SELECT torque FROM table_21021796_1 WHERE stroke = "88.4mm"
### Context: CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR) ### Question: List the torque possible when the stroke is 88.4mm? ### Answer: 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)
SELECT opponent FROM table_21007907_1 WHERE record = "7-1-0"
### Context: CREATE TABLE table_21007907_1 (opponent VARCHAR, record VARCHAR) ### Question: Name the opponent for 7-1-0 ### Answer: 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)
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 episode for run time 25:05 ### Answer: 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)
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 broadcast date for run timke of 25:04 ### Answer: 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)
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 archive for run time of 23:55 ### Answer: 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)
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 7.4 viewers ### Answer: 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)
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: Name the broadcast date for 6.0 viewers ### Answer: 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)
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: 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"
What episode had 9.7 million viewers?
CREATE TABLE table_2102714_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
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 episode had 9.7 million viewers? ### Answer: 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)
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 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"
What episode had a run time of 24:53?
CREATE TABLE table_2102714_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2102714_1 WHERE run_time = "24:53"
### Context: CREATE TABLE table_2102714_1 (episode 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"
What was the archive for the episode with a run time of 25:24?
CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2102714_1 WHERE run_time = "25:24"
### Context: CREATE TABLE table_2102714_1 (archive 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"
What is he archive for the episode with a run time of 24:05?
CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2102714_1 WHERE run_time = "24:05"
### 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"
Who directed episode number 23?
CREATE TABLE table_21025437_6 (directed_by VARCHAR, episode_no VARCHAR)
SELECT directed_by FROM table_21025437_6 WHERE episode_no = 23
### Context: CREATE TABLE table_21025437_6 (directed_by VARCHAR, episode_no VARCHAR) ### Question: Who directed episode number 23? ### Answer: 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)
SELECT MAX(game) FROM table_21034801_1 WHERE record = "4-0"
### Context: CREATE TABLE table_21034801_1 (game INTEGER, record 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"
How many opponents led to an exactly 7-0 record?
CREATE TABLE table_21034801_1 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_21034801_1 WHERE record = "7-0"
### Context: CREATE TABLE table_21034801_1 (opponent VARCHAR, 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"
What number was the game against Kansas State?
CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR)
SELECT game FROM table_21034801_1 WHERE opponent = "Kansas State"
### Context: CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR) ### Question: What number was the game against Kansas State? ### Answer: 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)
SELECT COUNT(episode) FROM table_2102898_1 WHERE run_time = "24:33"
### Context: CREATE TABLE table_2102898_1 (episode VARCHAR, run_time VARCHAR) ### Question: How many episodes ran 24:33? ### Answer: 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)
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 25april1970, how many people tuned in? ### Answer: 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)
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 28march1970, how many people tuned in? ### Answer: 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)
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: On broadcast date is 21march1970, how many people tuned in? ### Answer: 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)
SELECT archive FROM table_2102898_1 WHERE broadcast_date = "18April1970"
### Context: CREATE TABLE table_2102898_1 (archive 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"
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)
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 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
What is the total number of opponents played against the bears in game 4?
CREATE TABLE table_21035326_1 (opponents VARCHAR, game VARCHAR)
SELECT COUNT(opponents) FROM table_21035326_1 WHERE game = 4
### Context: CREATE TABLE table_21035326_1 (opponents VARCHAR, game 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
What opponent was playing against the Golden Bears when they scored 3 points?
CREATE TABLE table_21035326_1 (opponent VARCHAR, golden_bears_points VARCHAR)
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 opponent was playing against the Golden Bears when they scored 3 points? ### Answer: 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)
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 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"
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)
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_distinguished_service_medal VARCHAR, medal_of_honor 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_2104...
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)
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 VARCHAR) ### 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 Commendatio...
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)
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_distinguished_service_medal VARCHAR) ### 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 ...
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)
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_cross VARCHAR) ### 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 ...
How many figures are given for Walker's percentage in Kenosha county?
CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)
SELECT COUNT(walker__percentage) FROM table_21046399_3 WHERE county = "Kenosha"
### Context: CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR) ### 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"
What percentage did Walker win in Calumet county?
CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)
SELECT walker__percentage FROM table_21046399_3 WHERE county = "Calumet"
### 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"
How many total figures are given for Milwaukee county?
CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR)
SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = "Milwaukee"
### Context: CREATE TABLE table_21046399_3 (won_by 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"
What did they do in the game when their record was 3-2-1?
CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR)
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 in the game when their record was 3-2-1? ### Answer: 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)
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 Villanova? ### Answer: SELECT result FROM table_21058823_1 WHERE opponent = "Villanova"
What did they do against Memphis?
CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21058823_1 WHERE opponent = "Memphis"
### 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"
How many games did they play when their record 0-2-0?
CREATE TABLE table_21058823_1 (date VARCHAR, record VARCHAR)
SELECT COUNT(date) FROM table_21058823_1 WHERE record = "0-2-0"
### Context: CREATE TABLE table_21058823_1 (date VARCHAR, record 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"
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)
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: 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"
Name the episode for run time in 24:44
CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR)
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 episode for run time in 24:44 ### Answer: 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)
SELECT COUNT(episode) FROM table_2105721_1 WHERE run_time = "24:11"
### 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"
Who did the team play against when a record of 3-1, #16 was achieved?
CREATE TABLE table_21063459_1 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_21063459_1 WHERE record = "3-1, #16"
### Context: CREATE TABLE table_21063459_1 (opponent VARCHAR, record 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"
What was the result of the game against Mississippi State?
CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21063459_1 WHERE opponent = "Mississippi State"
### Context: CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR) ### Question: What was the result of the game against Mississippi State? ### Answer: 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)
SELECT opponent FROM table_21063459_1 WHERE result = "Loss"
### Context: CREATE TABLE table_21063459_1 (opponent VARCHAR, result 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"
What game did the Bruins play Santa Clara?
CREATE TABLE table_21058836_1 (game VARCHAR, opponent VARCHAR)
SELECT game FROM table_21058836_1 WHERE opponent = "Santa Clara"
### Context: CREATE TABLE table_21058836_1 (game VARCHAR, opponent VARCHAR) ### Question: What game did the Bruins play Santa Clara? ### Answer: 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)
SELECT opponents FROM table_21058836_1 WHERE opponent = "Santa Clara"
### Context: CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR) ### Question: Santa Clara was played how many times? ### Answer: 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)
SELECT result FROM table_21058836_1 WHERE opponents = 26
### Context: CREATE TABLE table_21058836_1 (result VARCHAR, opponents VARCHAR) ### Question: The game the Bruins scored 26 ,what was the result? ### Answer: 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)
SELECT record FROM table_21058836_1 WHERE game = 9
### Context: CREATE TABLE table_21058836_1 (record VARCHAR, game VARCHAR) ### Question: What was the record for game 9? ### Answer: 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)
SELECT opponent FROM table_21062353_1 WHERE game = 4
### Context: CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR) ### Question: Who were the opponents of the Wildcats in game 4? ### Answer: 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)
SELECT opponent FROM table_21062353_1 WHERE game = 8
### 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
What was the record of the Wildcats after playing Florida?
CREATE TABLE table_21062353_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_21062353_1 WHERE opponent = "Florida"
### Context: CREATE TABLE table_21062353_1 (record VARCHAR, opponent VARCHAR) ### Question: What was the record of the Wildcats after playing Florida? ### Answer: 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)
SELECT COUNT(wildcats_points) FROM table_21062353_1 WHERE game = 11
### Context: CREATE TABLE table_21062353_1 (wildcats_points VARCHAR, game 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
Name the number of black knights points for 3 game
CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR)
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 number of black knights points for 3 game ### Answer: 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)
SELECT opponents FROM table_21091145_1 WHERE game = 5
### Context: CREATE TABLE table_21091145_1 (opponents VARCHAR, game VARCHAR) ### Question: Name the opponents for game 5 ### Answer: 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)
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 result for 19 black knights points ### Answer: 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)
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 opponent for black knights points 27 ### Answer: 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)
SELECT date FROM table_21091157_1 WHERE game = 8
### Context: CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR) ### Question: Name the date for game 8 ### Answer: 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)
SELECT COUNT(date) FROM table_21091157_1 WHERE record = "1-0"
### Context: CREATE TABLE table_21091157_1 (date VARCHAR, record VARCHAR) ### Question: Name the number of date for 1-0 record ### Answer: 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)
SELECT game FROM table_21091157_1 WHERE record = "1-0"
### Context: CREATE TABLE table_21091157_1 (game VARCHAR, record VARCHAR) ### Question: Name the game for record 1-0 ### Answer: SELECT game FROM table_21091157_1 WHERE record = "1-0"
Name the most game
CREATE TABLE table_21091157_1 (game INTEGER)
SELECT MAX(game) FROM table_21091157_1
### Context: CREATE TABLE table_21091157_1 (game INTEGER) ### Question: Name the most game ### Answer: 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)
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 games have a record of 3-4-0? ### Answer: 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)
SELECT COUNT(date) FROM table_21091162_1 WHERE opponent = "Boston College"
### Context: CREATE TABLE table_21091162_1 (date VARCHAR, opponent VARCHAR) ### Question: How many dates have boston college as the opponent? ### Answer: 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)
SELECT MAX(game) FROM table_21091162_1 WHERE opponent = "Air Force"
### Context: CREATE TABLE table_21091162_1 (game INTEGER, opponent VARCHAR) ### Question: How many games have Air Force as the opponent? ### Answer: 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)
SELECT COUNT(record) FROM table_21091162_1 WHERE black_knights_points = 17
### Context: CREATE TABLE table_21091162_1 (record VARCHAR, black_knights_points VARCHAR) ### Question: How many records have black knights points as 17? ### Answer: SELECT COUNT(record) FROM table_21091162_1 WHERE black_knights_points = 17