question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What was the name of the episode that aired originally on March 11, 1988?
CREATE TABLE "table1_20967430_4" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "title" FROM "table1_20967430_4" WHERE "original_air_date"='March 11, 1988';
1-20967430-4
What is the production code of the episode written by Jack Carrerrow?
CREATE TABLE "table1_20967430_4" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "prod_code" FROM "table1_20967430_4" WHERE "written_by"='Jack Carrerrow';
1-20967430-4
How many episodes had a production code of 5m13?
CREATE TABLE "table1_20967430_4" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT COUNT("ep") FROM "table1_20967430_4" WHERE "prod_code"='5M13';
1-20967430-4
Name the title that aired for november 08, 1985
CREATE TABLE "table1_20967430_2" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "title" FROM "table1_20967430_2" WHERE "original_air_date"='November 08, 1985';
1-20967430-2
Name the production code for november 08, 1985
CREATE TABLE "table1_20967430_2" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "prod_code" FROM "table1_20967430_2" WHERE "original_air_date"='November 08, 1985';
1-20967430-2
Name the written by for production code 4g07
CREATE TABLE "table1_20967430_2" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "written_by" FROM "table1_20967430_2" WHERE "prod_code"='4G07';
1-20967430-2
Name the least episode for november 29, 1985
CREATE TABLE "table1_20967430_2" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT MIN("ep") FROM "table1_20967430_2" WHERE "original_air_date"='November 29, 1985';
1-20967430-2
What was the final score when tracy austin was runner up?
CREATE TABLE "singles" ( "series_year" real, "series_ending_tournament" text, "location" text, "surface" text, "champion" text, "runner_up" text, "score_in_final" text );
SELECT "score_in_final" FROM "singles" WHERE "runner_up"='Tracy Austin';
1-20986710-1
When "jobless" is the title who are the writers?
CREATE TABLE "table1_20967430_3" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "written_by" FROM "table1_20967430_3" WHERE "title"='\"Jobless\"';
1-20967430-3
When 5a06 is the production code what is the highest episode?
CREATE TABLE "table1_20967430_3" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT MAX("ep") FROM "table1_20967430_3" WHERE "prod_code"='5A06';
1-20967430-3
When it is season 10 who are the writers?
CREATE TABLE "table1_20967430_3" ( "ep" real, "season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "written_by" FROM "table1_20967430_3" WHERE "season"=10;
1-20967430-3
when womens singles is wang yihan and tour is french super series, what were the men's singles?
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "winners" WHERE "womens_singles"='Wang Yihan' AND "tour"='French Super Series';
1-21001903-2
when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour?
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "tour" FROM "winners" WHERE "mixed_doubles"='Zheng Bo Ma Jin' AND "womens_singles"='Wang Yihan';
1-21001903-2
How many titles were directed by Alex Chapple?
CREATE TABLE "season_3" ( "episode_num" real, "episode" real, "title" text, "director" text, "writer" text, "original_airdate" text, "u_s_airdate" text );
SELECT COUNT("title") FROM "season_3" WHERE "director"='Alex Chapple';
1-21002034-4
Who is the director of the "Adam's Family"?
CREATE TABLE "season_3" ( "episode_num" real, "episode" real, "title" text, "director" text, "writer" text, "original_airdate" text, "u_s_airdate" text );
SELECT "director" FROM "season_3" WHERE "title"='\"Adam''s Family\"';
1-21002034-4
What was the us airdate for "Bear Breasts"?
CREATE TABLE "season_3" ( "episode_num" real, "episode" real, "title" text, "director" text, "writer" text, "original_airdate" text, "u_s_airdate" text );
SELECT "u_s_airdate" FROM "season_3" WHERE "title"='\"Bear Breasts\"';
1-21002034-4
What was the USA airdate for "Jenny From the Block"?
CREATE TABLE "season_3" ( "episode_num" real, "episode" real, "title" text, "director" text, "writer" text, "original_airdate" text, "u_s_airdate" text );
SELECT "u_s_airdate" FROM "season_3" WHERE "title"='\"Jenny from the Block\"';
1-21002034-4
Name the most number for air date 2009/12/29
CREATE TABLE "season_2" ( "num" real, "episode" text, "air_date_canada_yyyy_mm_dd" text, "viewers_canada" real, "air_date_netherlands_yyyy_mm_dd" text, "viewers_netherlands" real );
SELECT MAX("num") FROM "season_2" WHERE "air_date_netherlands_yyyy_mm_dd"='2009/12/29';
1-21002034-7
How many millions viewers watched the episode that ran 23:25?
CREATE TABLE "table1_2101431_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "viewers_in_millions" FROM "table1_2101431_1" WHERE "run_time"='23:25';
1-2101431-1
What is the broadcast date of the episode on 16mm t/r that ran 23:25?
CREATE TABLE "table1_2101431_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2101431_1" WHERE "archive"='16mm t/r' AND "run_time"='23:25';
1-2101431-1
Which episode was watched by 7.2 million viewers?
CREATE TABLE "table1_2101431_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2101431_1" WHERE "viewers_in_millions"='7.2';
1-2101431-1
What episode had a run time of 24:18?
CREATE TABLE "table1_2101431_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2101431_1" WHERE "run_time"='24:18';
1-2101431-1
What is the greatest number of valves?
CREATE TABLE "technical_specifications" ( "displacement" text, "bore" text, "stroke" text, "cylinders" text, "valves" real, "power" text, "torque" text, "applications" text );
SELECT MIN("valves") FROM "technical_specifications";
1-21021796-1
For the 1999 w210 e-class , 2000 w203 c-class, what is the stroke?
CREATE TABLE "technical_specifications" ( "displacement" text, "bore" text, "stroke" text, "cylinders" text, "valves" real, "power" text, "torque" text, "applications" text );
SELECT "stroke" FROM "technical_specifications" WHERE "applications"='1999 W210 E-Class , 2000 W203 C-Class';
1-21021796-1
What is the displacement for torque of n·m (lb·ft) @1500 rpm?
CREATE TABLE "technical_specifications" ( "displacement" text, "bore" text, "stroke" text, "cylinders" text, "valves" real, "power" text, "torque" text, "applications" text );
SELECT "displacement" FROM "technical_specifications" WHERE "torque"='N·m (lb·ft) @1500 rpm';
1-21021796-1
If torque is n·m (lb·ft) @1600–2400 rpm and applications is 2000 w90x sprinter, what is the power?
CREATE TABLE "technical_specifications" ( "displacement" text, "bore" text, "stroke" text, "cylinders" text, "valves" real, "power" text, "torque" text, "applications" text );
SELECT "power" FROM "technical_specifications" WHERE "torque"='N·m (lb·ft) @1600–2400 rpm' AND "applications"='2000 W90x Sprinter';
1-21021796-1
List the torque possible when the stroke is 88.4mm?
CREATE TABLE "technical_specifications" ( "displacement" text, "bore" text, "stroke" text, "cylinders" text, "valves" real, "power" text, "torque" text, "applications" text );
SELECT "torque" FROM "technical_specifications" WHERE "stroke"='88.4mm';
1-21021796-1
Name the opponent for 7-1-0
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "sun_devils_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "record"='7-1-0';
1-21007907-1
Name the episode for run time 25:05
CREATE TABLE "table1_2102782_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2102782_1" WHERE "run_time"='25:05';
1-2102782-1
Name the broadcast date for run timke of 25:04
CREATE TABLE "table1_2102782_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2102782_1" WHERE "run_time"='25:04';
1-2102782-1
Name the archive for run time of 23:55
CREATE TABLE "table1_2102782_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "archive" FROM "table1_2102782_1" WHERE "run_time"='23:55';
1-2102782-1
Name the broadcast date for 7.4 viewers
CREATE TABLE "table1_2102782_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2102782_1" WHERE "viewers_in_millions"='7.4';
1-2102782-1
Name the broadcast date for 6.0 viewers
CREATE TABLE "table1_2102782_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2102782_1" WHERE "viewers_in_millions"='6.0';
1-2102782-1
What was the episode number for "Going Bodmin"?
CREATE TABLE "table1_21025437_2" ( "episode_no" real, "title" text, "directed_by" text, "written_by" text, "viewers_millions" text, "original_airdate" text );
SELECT MAX("episode_no") FROM "table1_21025437_2" WHERE "title"='\"Going Bodmin\"';
1-21025437-2
When did "Going Bodmin" originally air?
CREATE TABLE "table1_21025437_2" ( "episode_no" real, "title" text, "directed_by" text, "written_by" text, "viewers_millions" text, "original_airdate" text );
SELECT "original_airdate" FROM "table1_21025437_2" WHERE "title"='\"Going Bodmin\"';
1-21025437-2
How many episodes were written by Kirstie Falkous & John Regier?
CREATE TABLE "table1_21025437_2" ( "episode_no" real, "title" text, "directed_by" text, "written_by" text, "viewers_millions" text, "original_airdate" text );
SELECT COUNT("episode_no") FROM "table1_21025437_2" WHERE "written_by"='Kirstie Falkous & John Regier';
1-21025437-2
How many episodes were titled "Going Bodmin"?
CREATE TABLE "table1_21025437_2" ( "episode_no" real, "title" text, "directed_by" text, "written_by" text, "viewers_millions" text, "original_airdate" text );
SELECT "episode_no" FROM "table1_21025437_2" WHERE "title"='\"Going Bodmin\"';
1-21025437-2
What episode had 9.7 million viewers?
CREATE TABLE "table1_2102714_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2102714_1" WHERE "viewers_in_millions"='9.7';
1-2102714-1
What date was an episode broadcasted on that had a run time of 24:40?
CREATE TABLE "table1_2102714_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2102714_1" WHERE "run_time"='24:40';
1-2102714-1
What episode had a run time of 24:53?
CREATE TABLE "table1_2102714_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2102714_1" WHERE "run_time"='24:53';
1-2102714-1
What was the archive for the episode with a run time of 25:24?
CREATE TABLE "table1_2102714_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "archive" FROM "table1_2102714_1" WHERE "run_time"='25:24';
1-2102714-1
What is he archive for the episode with a run time of 24:05?
CREATE TABLE "table1_2102714_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "archive" FROM "table1_2102714_1" WHERE "run_time"='24:05';
1-2102714-1
Who directed the episode "the departed"?
CREATE TABLE "table1_21025437_6" ( "episode_no" real, "series_no" real, "title" text, "directed_by" text, "written_by" text, "viewers_millions" text, "original_airdate" text );
SELECT "directed_by" FROM "table1_21025437_6" WHERE "title"='\"The Departed\"';
1-21025437-6
Who directed episode number 23?
CREATE TABLE "table1_21025437_6" ( "episode_no" real, "series_no" real, "title" text, "directed_by" text, "written_by" text, "viewers_millions" text, "original_airdate" text );
SELECT "directed_by" FROM "table1_21025437_6" WHERE "episode_no"=23;
1-21025437-6
What was the numer of the game when the record was 4-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "sun_devils_points" real, "opponents" real, "record" text );
SELECT MAX("game") FROM "schedule" WHERE "record"='4-0';
1-21034801-1
How many opponents led to an exactly 7-0 record?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "sun_devils_points" real, "opponents" real, "record" text );
SELECT COUNT("opponent") FROM "schedule" WHERE "record"='7-0';
1-21034801-1
What number was the game against Kansas State?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "sun_devils_points" real, "opponents" real, "record" text );
SELECT "game" FROM "schedule" WHERE "opponent"='Kansas State';
1-21034801-1
How many episodes ran 24:33?
CREATE TABLE "table1_2102898_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT COUNT("episode") FROM "table1_2102898_1" WHERE "run_time"='24:33';
1-2102898-1
On broadcast date is 25april1970, how many people tuned in?
CREATE TABLE "table1_2102898_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "viewers_in_millions" FROM "table1_2102898_1" WHERE "broadcast_date"='25April1970';
1-2102898-1
On broadcast date is 28march1970, how many people tuned in?
CREATE TABLE "table1_2102898_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "viewers_in_millions" FROM "table1_2102898_1" WHERE "broadcast_date"='28March1970';
1-2102898-1
On broadcast date is 21march1970, how many people tuned in?
CREATE TABLE "table1_2102898_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT COUNT("viewers_in_millions") FROM "table1_2102898_1" WHERE "broadcast_date"='21March1970';
1-2102898-1
What is the archive of the show that aired on 18april1970?
CREATE TABLE "table1_2102898_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "archive" FROM "table1_2102898_1" WHERE "broadcast_date"='18April1970';
1-2102898-1
What was the least amount of points scored by the golden bears when the opponent scored 15 points?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "golden_bears_points" real, "opponents" real, "record" text );
SELECT MIN("golden_bears_points") FROM "schedule" WHERE "opponents"=15;
1-21035326-1
What is the total number of opponents played against the bears in game 4?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "golden_bears_points" real, "opponents" real, "record" text );
SELECT COUNT("opponents") FROM "schedule" WHERE "game"=4;
1-21035326-1
What opponent was playing against the Golden Bears when they scored 3 points?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "golden_bears_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "golden_bears_points"=3;
1-21035326-1
What is the Medal of Honor with Army Distinguished Service Medal?
CREATE TABLE "table1_2104176_1" ( "medal_of_honor" text, "coast_guard_cross" text, "navy_cross" text, "distinguished_service_cross" text, "air_force_cross" text, "homeland_security_distinguished_service_medal" text );
SELECT "medal_of_honor" FROM "table1_2104176_1" WHERE "air_force_cross"='Army Distinguished Service Medal';
1-2104176-1
WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal?
CREATE TABLE "table1_2104176_1" ( "medal_of_honor" text, "coast_guard_cross" text, "navy_cross" text, "distinguished_service_cross" text, "air_force_cross" text, "homeland_security_distinguished_service_medal" text );
SELECT "homeland_security_distinguished_service_medal" FROM "table1_2104176_1" WHERE "medal_of_honor"='Coast Guard Medal';
1-2104176-1
What is the distinguished service cross when the navy cross is Coast Guard commendation medal?
CREATE TABLE "table1_2104176_1" ( "medal_of_honor" text, "coast_guard_cross" text, "navy_cross" text, "distinguished_service_cross" text, "air_force_cross" text, "homeland_security_distinguished_service_medal" text );
SELECT "distinguished_service_cross" FROM "table1_2104176_1" WHERE "navy_cross"='Coast Guard Commendation Medal';
1-2104176-1
What is the air force cross when you recieve the Aerial achievement medal?
CREATE TABLE "table1_2104176_1" ( "medal_of_honor" text, "coast_guard_cross" text, "navy_cross" text, "distinguished_service_cross" text, "air_force_cross" text, "homeland_security_distinguished_service_medal" text );
SELECT "air_force_cross" FROM "table1_2104176_1" WHERE "homeland_security_distinguished_service_medal"='Aerial Achievement Medal';
1-2104176-1
What is the coast guard cross when you recieve the navy distinguished service medal?
CREATE TABLE "table1_2104176_1" ( "medal_of_honor" text, "coast_guard_cross" text, "navy_cross" text, "distinguished_service_cross" text, "air_force_cross" text, "homeland_security_distinguished_service_medal" text );
SELECT "coast_guard_cross" FROM "table1_2104176_1" WHERE "distinguished_service_cross"='Navy Distinguished Service Medal';
1-2104176-1
How many figures are given for Walker's percentage in Kenosha county?
CREATE TABLE "county_results" ( "county" text, "won_by" text, "walker_pct" real, "walker_votes" real, "barrett_pct" real, "barrett_votes" real );
SELECT COUNT("walker_pct") FROM "county_results" WHERE "county"='Kenosha';
1-21046399-3
What percentage did Walker win in Calumet county?
CREATE TABLE "county_results" ( "county" text, "won_by" text, "walker_pct" real, "walker_votes" real, "barrett_pct" real, "barrett_votes" real );
SELECT "walker_pct" FROM "county_results" WHERE "county"='Calumet';
1-21046399-3
How many total figures are given for Milwaukee county?
CREATE TABLE "county_results" ( "county" text, "won_by" text, "walker_pct" real, "walker_votes" real, "barrett_pct" real, "barrett_votes" real );
SELECT COUNT("won_by") FROM "county_results" WHERE "county"='Milwaukee';
1-21046399-3
What did they do in the game when their record was 3-2-1?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "record"='3-2-1';
1-21058823-1
What did they do against Villanova?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "opponent"='Villanova';
1-21058823-1
What did they do against Memphis?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "opponent"='Memphis';
1-21058823-1
How many games did they play when their record 0-2-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT COUNT("date") FROM "schedule" WHERE "record"='0-2-0';
1-21058823-1
When did the episode seen by is 2.267 million people get aired?
CREATE TABLE "table1_21055055_2" ( "num" real, "episode" text, "au_air_date" text, "timeslot" text, "viewers_m" text, "nightly_rank_num" real, "weekly_rank_num" real );
SELECT "au_air_date" FROM "table1_21055055_2" WHERE "viewers_m"='2.267';
1-21055055-2
Name the episode for run time in 24:44
CREATE TABLE "table1_2105721_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2105721_1" WHERE "run_time"='24:44';
1-2105721-1
Name the total episode for runtime of 24:11
CREATE TABLE "table1_2105721_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT COUNT("episode") FROM "table1_2105721_1" WHERE "run_time"='24:11';
1-2105721-1
Who did the team play against when a record of 3-1, #16 was achieved?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "record"='3-1, #16';
1-21063459-1
What was the result of the game against Mississippi State?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "opponent"='Mississippi State';
1-21063459-1
Who did the team play against in the game that resulted with a loss?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "result"='Loss';
1-21063459-1
What game did the Bruins play Santa Clara?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT "game" FROM "schedule" WHERE "opponent"='Santa Clara';
1-21058836-1
Santa Clara was played how many times?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT "opponents" FROM "schedule" WHERE "opponent"='Santa Clara';
1-21058836-1
The game the Bruins scored 26 ,what was the result?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "opponents"=26;
1-21058836-1
What was the record for game 9?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT "record" FROM "schedule" WHERE "game"=9;
1-21058836-1
Who were the opponents of the Wildcats in game 4?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "game"=4;
1-21062353-1
Who were the the opponents of the Wildcats for game 8 of the season?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "game"=8;
1-21062353-1
What was the record of the Wildcats after playing Florida?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT "record" FROM "schedule" WHERE "opponent"='Florida';
1-21062353-1
How many times did the Wildcats play a game 11 regardless of points scored?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "wildcats_points" real, "opponents" real, "record" text );
SELECT COUNT("wildcats_points") FROM "schedule" WHERE "game"=11;
1-21062353-1
Name the number of black knights points for 3 game
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT COUNT("black_knights_points") FROM "schedule" WHERE "game"=3;
1-21091145-1
Name the opponents for game 5
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "opponents" FROM "schedule" WHERE "game"=5;
1-21091145-1
Name the result for 19 black knights points
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "black_knights_points"=19;
1-21091145-1
Name the opponent for black knights points 27
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "black_knights_points"=27;
1-21091145-1
Name the date for game 8
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "date" FROM "schedule" WHERE "game"=8;
1-21091157-1
Name the number of date for 1-0 record
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT COUNT("date") FROM "schedule" WHERE "record"='1-0';
1-21091157-1
Name the game for record 1-0
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "game" FROM "schedule" WHERE "record"='1-0';
1-21091157-1
Name the most game
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT MAX("game") FROM "schedule";
1-21091157-1
How many games have a record of 3-4-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT MAX("game") FROM "schedule" WHERE "record"='3-4-0';
1-21091162-1
How many dates have boston college as the opponent?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT COUNT("date") FROM "schedule" WHERE "opponent"='Boston College';
1-21091162-1
How many games have Air Force as the opponent?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT MAX("game") FROM "schedule" WHERE "opponent"='Air Force';
1-21091162-1
How many records have black knights points as 17?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT COUNT("record") FROM "schedule" WHERE "black_knights_points"=17;
1-21091162-1
Which opponent has a record of 6-2?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "orangemen_points" real, "opponents" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "record"='6-2';
1-21091127-1
How many results have a game of 5?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "orangemen_points" real, "opponents" real, "record" text );
SELECT COUNT("result") FROM "schedule" WHERE "game"=5;
1-21091127-1
What is the run time for the episode with 7.9 million viewers?
CREATE TABLE "table1_2108684_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "run_time" FROM "table1_2108684_1" WHERE "viewers_in_millions"='7.9';
1-2108684-1
What episode had a run time of 23:38?
CREATE TABLE "table1_2108684_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2108684_1" WHERE "run_time"='23:38';
1-2108684-1
How many million viewers watched the episode with a run time of 25:22?
CREATE TABLE "table1_2108684_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "viewers_in_millions" FROM "table1_2108684_1" WHERE "run_time"='25:22';
1-2108684-1
Name the date for result loss for duke
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "date" FROM "schedule" WHERE "result"='Loss' AND "opponent"='Duke';
1-21092444-1
Name the opponents for record of 2-1
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "opponents" FROM "schedule" WHERE "record"='2-1';
1-21092444-1