question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What are the death/2012 number when death/2013 is 140 and January–September 2013 is Moscow Oblast?
CREATE TABLE "table1_25703_1" ( "january_september_2013" text, "birth_2013" real, "birth_2012" real, "death_2013" real, "death_2012" text );
SELECT "death_2012" FROM "table1_25703_1" WHERE "death_2013"=140 AND "january_september_2013"='Moscow Oblast';
1-25703-1
How many figures for birth/2013 when January-September is Oryol Oblast?
CREATE TABLE "table1_25703_1" ( "january_september_2013" text, "birth_2013" real, "birth_2012" real, "death_2013" real, "death_2012" text );
SELECT COUNT("birth_2013") FROM "table1_25703_1" WHERE "january_september_2013"='Oryol Oblast';
1-25703-1
How many touchdowns did the player took which gained 25 points?
CREATE TABLE "michigan_65_ohio_wesleyan_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "touchdowns" FROM "michigan_65_ohio_wesleyan_0" WHERE "points"=25;
1-25711913-2
How many maximum points did Curtis scored?
CREATE TABLE "michigan_65_ohio_wesleyan_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MAX("points") FROM "michigan_65_ohio_wesleyan_0" WHERE "player"='Curtis';
1-25711913-2
How many touchdowns did the left guard took?
CREATE TABLE "michigan_65_ohio_wesleyan_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MAX("touchdowns") FROM "michigan_65_ohio_wesleyan_0" WHERE "position"='Left guard';
1-25711913-2
How many numbers were recorded on the fields goals of the Left End player?
CREATE TABLE "michigan_65_ohio_wesleyan_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT COUNT("field_goals") FROM "michigan_65_ohio_wesleyan_0" WHERE "position"='Left end';
1-25711913-2
What was the minimum touchdowns of the Fullback player?
CREATE TABLE "michigan_65_ohio_wesleyan_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("touchdowns") FROM "michigan_65_ohio_wesleyan_0" WHERE "position"='Fullback';
1-25711913-2
How many touchdowns did the fullback score?
CREATE TABLE "michigan_70_albion_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("touchdowns") FROM "michigan_70_albion_0" WHERE "position"='Fullback';
1-25711913-8
How many figures are provided for Weeks' field goals?
CREATE TABLE "michigan_70_albion_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT COUNT("field_goals") FROM "michigan_70_albion_0" WHERE "player"='Weeks';
1-25711913-8
What is the most points recorded for a right halfback?
CREATE TABLE "michigan_70_albion_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MAX("points") FROM "michigan_70_albion_0" WHERE "position"='Right halfback';
1-25711913-8
Was Magoffin a starting player?
CREATE TABLE "michigan_70_albion_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "starter" FROM "michigan_70_albion_0" WHERE "player"='Magoffin';
1-25711913-8
Which player was at position left tackle?
CREATE TABLE "michigan_70_albion_0" ( "player" text, "position" text, "starter" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "player" FROM "michigan_70_albion_0" WHERE "position"='Left tackle';
1-25711913-8
What is the original air date for the episode written by daniel dratch?
CREATE TABLE "table1_25716399_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_25716399_1" WHERE "written_by"='Daniel Dratch';
1-25716399-1
What season was an episode directed by wendey stanzler?
CREATE TABLE "table1_25716399_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT MAX("no_in_season") FROM "table1_25716399_1" WHERE "directed_by"='Wendey Stanzler';
1-25716399-1
What was the original air date where there were u.s. viewers (millions) is 5.60?
CREATE TABLE "table1_25716399_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_25716399_1" WHERE "u_s_viewers_millions"='5.60';
1-25716399-1
Who was the writer for season 14?
CREATE TABLE "table1_25716399_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_25716399_1" WHERE "no_in_season"=14;
1-25716399-1
Who wrote the episode where the original air date is july20,2007?
CREATE TABLE "table1_25716399_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_25716399_1" WHERE "original_air_date"='July20,2007';
1-25716399-1
what season was written by jonathan collier?
CREATE TABLE "table1_25716399_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT MAX("no_in_season") FROM "table1_25716399_1" WHERE "written_by"='Jonathan Collier';
1-25716399-1
How many episodes were written by Tom Scharpling and Daniel Dratch?
CREATE TABLE "table1_25716397_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text );
SELECT COUNT("no_in_season") FROM "table1_25716397_1" WHERE "written_by"='Tom Scharpling and Daniel Dratch';
1-25716397-1
How many people directed the episode that Joe Toplyn wrote?
CREATE TABLE "table1_25716397_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text );
SELECT COUNT("directed_by") FROM "table1_25716397_1" WHERE "written_by"='Joe Toplyn';
1-25716397-1
How many titles does the episode written by Joe Toplyn have?
CREATE TABLE "table1_25716397_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text );
SELECT COUNT("title") FROM "table1_25716397_1" WHERE "written_by"='Joe Toplyn';
1-25716397-1
How many directors of episode 55?
CREATE TABLE "table1_25716397_1" ( "series_no" real, "no_in_season" real, "title" text, "written_by" text, "directed_by" text, "original_air_date" text );
SELECT COUNT("directed_by") FROM "table1_25716397_1" WHERE "series_no"=55;
1-25716397-1
How many titles are there for the episode written by Tom Scharpling?
CREATE TABLE "table1_25716401_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("title") FROM "table1_25716401_1" WHERE "written_by"='Tom Scharpling';
1-25716401-1
Which episode number aired on 18 october 2012?
CREATE TABLE "red_dwarf_x" ( "episode_no" real, "airdate" text, "dave_viewers" real, "dave_rank" real, "rank_cable" real, "dave_ja_vu_viewers" real, "total_viewers" real );
SELECT MIN("episode_no") FROM "red_dwarf_x" WHERE "airdate"='18 October 2012';
1-25721-3
What is the lowest cable rank of an episode with 1464000 viewers?
CREATE TABLE "red_dwarf_x" ( "episode_no" real, "airdate" text, "dave_viewers" real, "dave_rank" real, "rank_cable" real, "dave_ja_vu_viewers" real, "total_viewers" real );
SELECT MIN("rank_cable") FROM "red_dwarf_x" WHERE "total_viewers"=1464000;
1-25721-3
What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?
CREATE TABLE "red_dwarf_x" ( "episode_no" real, "airdate" text, "dave_viewers" real, "dave_rank" real, "rank_cable" real, "dave_ja_vu_viewers" real, "total_viewers" real );
SELECT MAX("dave_viewers") FROM "red_dwarf_x" WHERE "dave_ja_vu_viewers"=119000;
1-25721-3
How many episodes aired on 25 october 2012?
CREATE TABLE "red_dwarf_x" ( "episode_no" real, "airdate" text, "dave_viewers" real, "dave_rank" real, "rank_cable" real, "dave_ja_vu_viewers" real, "total_viewers" real );
SELECT COUNT("total_viewers") FROM "red_dwarf_x" WHERE "airdate"='25 October 2012';
1-25721-3
What was the airdate of the episode with 106000 dave ja vu viewers?
CREATE TABLE "red_dwarf_x" ( "episode_no" real, "airdate" text, "dave_viewers" real, "dave_rank" real, "rank_cable" real, "dave_ja_vu_viewers" real, "total_viewers" real );
SELECT "airdate" FROM "red_dwarf_x" WHERE "dave_ja_vu_viewers"=106000;
1-25721-3
How many DVDs where were in the complete collection series 1-8 with extras?
CREATE TABLE "table1_25721_4" ( "release" text, "num_of_discs" real, "region_1" text, "region_2" text, "region_4" text );
SELECT "num_of_discs" FROM "table1_25721_4" WHERE "release"='The Complete Collection Series 1-8 with extras';
1-25721-4
Which release had 6 DVDs?
CREATE TABLE "table1_25721_4" ( "release" text, "num_of_discs" real, "region_1" text, "region_2" text, "region_4" text );
SELECT "release" FROM "table1_25721_4" WHERE "num_of_discs"=6;
1-25721-4
How many region 1's did back to earth have?
CREATE TABLE "table1_25721_4" ( "release" text, "num_of_discs" real, "region_1" text, "region_2" text, "region_4" text );
SELECT COUNT("region_1") FROM "table1_25721_4" WHERE "release"='Back to Earth';
1-25721-4
How many field goals did Walter Rheinschild have?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MAX("field_goals") FROM "scoring_leaders" WHERE "player"='Walter Rheinschild';
1-25724294-2
Jack Loell had how many extra points?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "extra_points" FROM "scoring_leaders" WHERE "player"='Jack Loell';
1-25724294-2
How many points did Donald Green score?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT COUNT("points") FROM "scoring_leaders" WHERE "player"='Donald Green';
1-25730209-2
How many field goals did Donald Green score?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT COUNT("field_goals") FROM "scoring_leaders" WHERE "player"='Donald Green';
1-25730209-2
What was the least amount of points scored?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("extra_points") FROM "scoring_leaders";
1-25730209-2
How many extra points did Stanfield Wells make?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT COUNT("extra_points") FROM "scoring_leaders" WHERE "player"='Stanfield Wells';
1-25730209-2
What are the most points listed?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MAX("points") FROM "scoring_leaders";
1-25730123-2
How many touchdowns were the when there was more than 1.0 extra point?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "touchdowns" FROM "scoring_leaders" WHERE "extra_points">1.0;
1-25730123-2
Name the player/s when there were 20 points with less than 1.0 extra point .
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "player" FROM "scoring_leaders" WHERE "extra_points"<1.0 AND "points"=20;
1-25730123-2
What were the least amount of field goals when Frederick L. Conklin played?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("field_goals") FROM "scoring_leaders" WHERE "player"='Frederick L. Conklin';
1-25730123-2
What is the least number of extra points?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("extra_points") FROM "scoring_leaders";
1-25730326-2
How many points did William Wasmund have?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "points" FROM "scoring_leaders" WHERE "player"='William Wasmund';
1-25730326-2
How many touchdowns did the player with 10 points have?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("touchdowns") FROM "scoring_leaders" WHERE "points"=10;
1-25730326-2
How many points does George M. Lawton have?
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MAX("points") FROM "scoring_leaders" WHERE "player"='George M. Lawton';
1-25730326-2
Name the player for 1 touchdowns
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT "player" FROM "scoring_leaders" WHERE "touchdowns"=1;
1-25730460-2
Name the least extra points
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("extra_points") FROM "scoring_leaders";
1-25730460-2
Name the least extra points
CREATE TABLE "scoring_leaders" ( "player" text, "touchdowns" real, "extra_points" real, "field_goals" real, "points" real );
SELECT MIN("extra_points") FROM "scoring_leaders";
1-25730460-2
Who directed episode number 2?
CREATE TABLE "series_1_2009" ( "no" real, "num" real, "episode" text, "writer" text, "director" text, "original_air_date" text, "viewing_figure" real );
SELECT "director" FROM "series_1_2009" WHERE "no"=2;
1-25737761-3
What was the episode number that had 797000 viewers?
CREATE TABLE "series_1_2009" ( "no" real, "num" real, "episode" text, "writer" text, "director" text, "original_air_date" text, "viewing_figure" real );
SELECT "no" FROM "series_1_2009" WHERE "viewing_figure"=797000;
1-25737761-3
Who directed the episode directed by colin teague?
CREATE TABLE "series_1_2009" ( "no" real, "num" real, "episode" text, "writer" text, "director" text, "original_air_date" text, "viewing_figure" real );
SELECT "writer" FROM "series_1_2009" WHERE "director"='Colin Teague';
1-25737761-3
How many episodes with the production code CA106 are there?
CREATE TABLE "table1_25740548_2" ( "series_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("written_by") FROM "table1_25740548_2" WHERE "production_code"='CA106';
1-25740548-2
Who was the director for episodes that were written be Matthew Lau?
CREATE TABLE "table1_25740548_2" ( "series_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "directed_by" FROM "table1_25740548_2" WHERE "written_by"='Matthew Lau';
1-25740548-2
How many episode were written by Brett Conrad?
CREATE TABLE "table1_25740548_2" ( "series_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("title") FROM "table1_25740548_2" WHERE "written_by"='Brett Conrad';
1-25740548-2
How many episodes were directed by Tim Matheson?
CREATE TABLE "table1_25740548_2" ( "series_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("original_air_date") FROM "table1_25740548_2" WHERE "directed_by"='Tim Matheson';
1-25740548-2
How many episodes were directed by Rod Hardy?
CREATE TABLE "table1_25740548_2" ( "series_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("original_air_date") FROM "table1_25740548_2" WHERE "directed_by"='Rod Hardy';
1-25740548-2
Who wrote the episode with 3.92 million US viewers?
CREATE TABLE "table1_25740548_3" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "written_by" FROM "table1_25740548_3" WHERE "u_s_viewers_million"='3.92';
1-25740548-3
How many original air dates are there for the episode with code CA210?
CREATE TABLE "table1_25740548_3" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("original_air_date") FROM "table1_25740548_3" WHERE "production_code"='CA210';
1-25740548-3
Who directed the episode "The Outsiders"?
CREATE TABLE "table1_25740548_3" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "directed_by" FROM "table1_25740548_3" WHERE "title"='\"The Outsiders\"';
1-25740548-3
How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1?
CREATE TABLE "weekly_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_timeslot" real, "rank_night" real );
SELECT COUNT("episode_number") FROM "weekly_ratings" WHERE "rating_share_18_49"='0.7/2' AND "rating"='2.1';
1-25751274-2
What is the lowest episode number that had a ratings/share (18-49) of 1.1/3?
CREATE TABLE "weekly_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_timeslot" real, "rank_night" real );
SELECT MIN("episode_number") FROM "weekly_ratings" WHERE "rating_share_18_49"='1.1/3';
1-25751274-2
What is the rating of the episode with a share of 4 and a rating/share (18-49) of 0.7/2?
CREATE TABLE "weekly_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_timeslot" real, "rank_night" real );
SELECT "rating" FROM "weekly_ratings" WHERE "share"=4 AND "rating_share_18_49"='0.7/2';
1-25751274-2
What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4?
CREATE TABLE "weekly_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_timeslot" real, "rank_night" real );
SELECT MIN("rank_night") FROM "weekly_ratings" WHERE "rating_share_18_49"='1.3/4';
1-25751274-2
What is the song released by Travis?
CREATE TABLE "top_10_singles" ( "entered_a" text, "weeks_in_top_10" real, "single" text, "artist" text, "peak" real, "peak_reached_a" text, "weeks_at_number_1" real );
SELECT "single" FROM "top_10_singles" WHERE "artist"='Travis';
1-25760427-2
error (see notes)
CREATE TABLE "top_10_singles" ( "entered_a" text, "weeks_in_top_10" real, "single" text, "artist" text, "peak" real, "peak_reached_a" text, "weeks_at_number_1" real );
SELECT MIN("weeks_at_number_1") FROM "top_10_singles";
1-25760427-2
What is the song by the musician panjabi mc?
CREATE TABLE "top_10_singles" ( "entered_a" text, "weeks_in_top_10" real, "single" text, "artist" text, "peak" real, "peak_reached_a" text, "weeks_at_number_1" real );
SELECT "single" FROM "top_10_singles" WHERE "artist"='Panjabi MC';
1-25760427-2
Where was the round 1 race?
CREATE TABLE "race_calendar_and_results" ( "round" real, "circuit" text, "location" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "location" FROM "race_calendar_and_results" WHERE "round"=1;
1-25773116-2
Who won the April 11 race?
CREATE TABLE "race_calendar_and_results" ( "round" real, "circuit" text, "location" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "winning_driver" FROM "race_calendar_and_results" WHERE "date"='April 11';
1-25773116-2
Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position?
CREATE TABLE "race_calendar_and_results" ( "round" real, "circuit" text, "location" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "location" FROM "race_calendar_and_results" WHERE "pole_position"='Daniel Erickson' AND "fastest_lap"='Cole Morgan';
1-25773116-2
How many rounds were played on May 8?
CREATE TABLE "race_calendar_and_results" ( "round" real, "circuit" text, "location" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT COUNT("round") FROM "race_calendar_and_results" WHERE "date"='May 8';
1-25773116-2
Who had pole position for the races in Braselton, Georgia where Victor Carbone had fastest lap?
CREATE TABLE "race_calendar_and_results" ( "round" real, "circuit" text, "location" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "pole_position" FROM "race_calendar_and_results" WHERE "fastest_lap"='Victor Carbone' AND "location"='Braselton, Georgia';
1-25773116-2
Where did Audette Racing win?
CREATE TABLE "race_calendar_and_results" ( "round" real, "circuit" text, "location" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "location" FROM "race_calendar_and_results" WHERE "winning_team"='Audette Racing';
1-25773116-2
Name the directors for peter gawler
CREATE TABLE "table1_25764073_3" ( "season_num" real, "episode_num" real, "title" text, "director_s" text, "writer_s" text, "original_air_date" text );
SELECT "director_s" FROM "table1_25764073_3" WHERE "writer_s"='Peter Gawler';
1-25764073-3
Name the least episode number for anne brooksbank and vicki madden
CREATE TABLE "table1_25764073_3" ( "season_num" real, "episode_num" real, "title" text, "director_s" text, "writer_s" text, "original_air_date" text );
SELECT MIN("episode_num") FROM "table1_25764073_3" WHERE "writer_s"='Anne Brooksbank and Vicki Madden';
1-25764073-3
Name the title for season number 35
CREATE TABLE "table1_25764073_3" ( "season_num" real, "episode_num" real, "title" text, "director_s" text, "writer_s" text, "original_air_date" text );
SELECT "title" FROM "table1_25764073_3" WHERE "season_num"=35;
1-25764073-3
What were the points per game in the selection where the rebounds per game were 15.0?
CREATE TABLE "conference_player_of_the_month_selection" ( "selection" real, "month" text, "season" text, "team_record" text, "points_per_game" text, "field_goal_percentage" text, "rebounds_per_game" text, "blocks_per_game" text );
SELECT "points_per_game" FROM "conference_player_of_the_month_selection" WHERE "rebounds_per_game"='15.0';
1-25774493-3
What were the blocks per game in the selection where the field goal percentage was .594 (2nd)?
CREATE TABLE "conference_player_of_the_month_selection" ( "selection" real, "month" text, "season" text, "team_record" text, "points_per_game" text, "field_goal_percentage" text, "rebounds_per_game" text, "blocks_per_game" text );
SELECT "blocks_per_game" FROM "conference_player_of_the_month_selection" WHERE "field_goal_percentage"='.594 (2nd)';
1-25774493-3
Name the name for company d
CREATE TABLE "formation_of_the_1st_arkansas_state_troo" ( "company" text, "name" text, "county" text, "militia_regiment" text, "commander" text, "organization_date" text );
SELECT "name" FROM "formation_of_the_1st_arkansas_state_troo" WHERE "company"='Company D';
1-25794010-1
Name the name for organization date being unknown
CREATE TABLE "formation_of_the_1st_arkansas_state_troo" ( "company" text, "name" text, "county" text, "militia_regiment" text, "commander" text, "organization_date" text );
SELECT "name" FROM "formation_of_the_1st_arkansas_state_troo" WHERE "organization_date"='Unknown';
1-25794010-1
Name the name for desha
CREATE TABLE "formation_of_the_1st_arkansas_state_troo" ( "company" text, "name" text, "county" text, "militia_regiment" text, "commander" text, "organization_date" text );
SELECT "name" FROM "formation_of_the_1st_arkansas_state_troo" WHERE "county"='Desha';
1-25794010-1
Name the company for desha county
CREATE TABLE "formation_of_the_1st_arkansas_state_troo" ( "company" text, "name" text, "county" text, "militia_regiment" text, "commander" text, "organization_date" text );
SELECT "company" FROM "formation_of_the_1st_arkansas_state_troo" WHERE "county"='Desha';
1-25794010-1
Who wrote the episode with series number 56?
CREATE TABLE "season_2_1956_57" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "writer_s" FROM "season_2_1956_57" WHERE "series_num"=56;
1-25800134-1
What is largest series number for the episode that aired February 16, 1957?
CREATE TABLE "season_2_1956_57" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT MAX("series_num") FROM "season_2_1956_57" WHERE "airdate"='February 16, 1957';
1-25800134-1
Who directed the episodes that aired December 15, 1956?
CREATE TABLE "season_2_1956_57" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "director" FROM "season_2_1956_57" WHERE "airdate"='December 15, 1956';
1-25800134-1
Who wrote the episode that aired December 1, 1956?
CREATE TABLE "season_2_1956_57" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "writer_s" FROM "season_2_1956_57" WHERE "airdate"='December 1, 1956';
1-25800134-1
Who was the writer of the episode that originally aired on October 14, 1968?
CREATE TABLE "season_14_1968_69" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "writer_s" FROM "season_14_1968_69" WHERE "airdate"='October 14, 1968';
1-25800134-13
What is the season # for the episode with air date february 2, 1970?
CREATE TABLE "season_15_1969_70" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT MAX("season_num") FROM "season_15_1969_70" WHERE "airdate"='February 2, 1970';
1-25800134-14
Who was the writer who wrote the episode that was aired on September 11, 1972?
CREATE TABLE "season_18_1972_73" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "writer_s" FROM "season_18_1972_73" WHERE "airdate"='September 11, 1972';
1-25800134-17
Who directed episode number 626 in the series?
CREATE TABLE "season_20_1974_75" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "director" FROM "season_20_1974_75" WHERE "series_num"=626;
1-25800134-19
Who are all the writers of episodes in season 24?
CREATE TABLE "season_3_1957_58" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "writer_s" FROM "season_3_1957_58" WHERE "season_num"=24;
1-25800134-2
What is the title of the episode that aired on May 10, 1958?
CREATE TABLE "season_3_1957_58" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "title" FROM "season_3_1957_58" WHERE "airdate"='May 10, 1958';
1-25800134-2
Who was the writer of episode 15?
CREATE TABLE "season_5_1959_60" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "writer_s" FROM "season_5_1959_60" WHERE "season_num"=15;
1-25800134-4
What is the title of #33?
CREATE TABLE "season_5_1959_60" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "title" FROM "season_5_1959_60" WHERE "season_num"=33;
1-25800134-4
How many directors worked on #158?
CREATE TABLE "season_5_1959_60" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT COUNT("director") FROM "season_5_1959_60" WHERE "series_num"=158;
1-25800134-4
How many writers were for season #1?
CREATE TABLE "season_4_1958_59" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT COUNT("writer_s") FROM "season_4_1958_59" WHERE "season_num"=1;
1-25800134-3
Who was the director for the episode on May 2, 1959?
CREATE TABLE "season_4_1958_59" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "airdate" text );
SELECT "director" FROM "season_4_1958_59" WHERE "airdate"='May 2, 1959';
1-25800134-3
Name the number in series for production code being 204
CREATE TABLE "table1_25810656_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "no_in_series" FROM "table1_25810656_3" WHERE "production_code"=204;
1-25810656-3
Name the number of title for number in series being 25
CREATE TABLE "table1_25810656_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("title") FROM "table1_25810656_3" WHERE "no_in_series"=25;
1-25810656-3
What was the latest stage won by Mikhail Ignatiev?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "young_riders_classification" text, "team_classification" text );
SELECT MAX("stage") FROM "classification_leadership" WHERE "winner"='Mikhail Ignatiev';
1-25802618-15
What is the summmary hearing when the definiton is listed at flying an aircraft so as to annoy any person?
CREATE TABLE "table1_25815180_1" ( "sec" real, "offence" text, "definition_example_or_notes" text, "civilian" text, "summary_hearing" text, "max_sentence_at_court_martial" text );
SELECT "summary_hearing" FROM "table1_25815180_1" WHERE "definition_example_or_notes"='Flying an aircraft so as to annoy any person';
1-25815180-1