question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many different pairs of people did the story and storyboard of the episode titled "Milo's big idea"?
CREATE TABLE "table1_28146944_2" ( "no_in_series" real, "title" text, "directed_by" text, "story_storyboards_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("story_storyboards_by") FROM "table1_28146944_2" WHERE "title"='\"Milo''s Big Idea\"';
1-28146944-2
Who directed the episode titled "Baldwin the Super FIsh"?
CREATE TABLE "table1_28146944_2" ( "no_in_series" real, "title" text, "directed_by" text, "story_storyboards_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_28146944_2" WHERE "title"='\"Baldwin the Super Fish\"';
1-28146944-2
What's the title of the episode with series number 36?
CREATE TABLE "table1_28146944_2" ( "no_in_series" real, "title" text, "directed_by" text, "story_storyboards_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_28146944_2" WHERE "no_in_series"=36;
1-28146944-2
when was the next coach appointed after niger tornadoes fired their coach?
CREATE TABLE "managerial_head_coach_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "incoming_manager" text, "date_of_appointment" text );
SELECT "date_of_appointment" FROM "managerial_head_coach_changes" WHERE "manner_of_departure"='fired' AND "team"='Niger Tornadoes';
1-28164986-4
how many managers left sunshine stars?
CREATE TABLE "managerial_head_coach_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "incoming_manager" text, "date_of_appointment" text );
SELECT COUNT("outgoing_manager") FROM "managerial_head_coach_changes" WHERE "team"='Sunshine Stars';
1-28164986-4
how many new managers replaced manager(s) who resigned?
CREATE TABLE "managerial_head_coach_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "incoming_manager" text, "date_of_appointment" text );
SELECT COUNT("incoming_manager") FROM "managerial_head_coach_changes" WHERE "manner_of_departure"='Resigned';
1-28164986-4
how many times did tunde abdulrahman leave the team?
CREATE TABLE "managerial_head_coach_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "incoming_manager" text, "date_of_appointment" text );
SELECT COUNT("date_of_vacancy") FROM "managerial_head_coach_changes" WHERE "outgoing_manager"='Tunde Abdulrahman';
1-28164986-4
How many platforms have celsius calibur as mystic arte?
CREATE TABLE "series_characters" ( "character" text, "game" text, "platform" text, "status" text, "mystic_arte" text, "character_voice" text );
SELECT COUNT("platform") FROM "series_characters" WHERE "mystic_arte"='Celsius Calibur';
1-28178595-2
Which character is yumi kakazu the character voice?
CREATE TABLE "series_characters" ( "character" text, "game" text, "platform" text, "status" text, "mystic_arte" text, "character_voice" text );
SELECT "character" FROM "series_characters" WHERE "character_voice"='Yumi Kakazu';
1-28178595-2
How many mystic arte have hisui (jadeite) hearts 1 as the character?
CREATE TABLE "series_characters" ( "character" text, "game" text, "platform" text, "status" text, "mystic_arte" text, "character_voice" text );
SELECT COUNT("mystic_arte") FROM "series_characters" WHERE "character"='Hisui (Jadeite) Hearts 1';
1-28178595-2
How many platforms have nanaly fletch as the character?
CREATE TABLE "series_characters" ( "character" text, "game" text, "platform" text, "status" text, "mystic_arte" text, "character_voice" text );
SELECT COUNT("platform") FROM "series_characters" WHERE "character"='Nanaly Fletch';
1-28178595-2
What is the status of the character keel (keele) zeibel?
CREATE TABLE "series_characters" ( "character" text, "game" text, "platform" text, "status" text, "mystic_arte" text, "character_voice" text );
SELECT "status" FROM "series_characters" WHERE "character"='Keel (Keele) Zeibel';
1-28178595-2
Which character is mio yasuda the character voice?
CREATE TABLE "series_characters" ( "character" text, "game" text, "platform" text, "status" text, "mystic_arte" text, "character_voice" text );
SELECT "character" FROM "series_characters" WHERE "character_voice"='Mio Yasuda';
1-28178595-2
What sesaon(s) did they have 254 goals against?
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text, "head_coaches" text );
SELECT "season" FROM "regular_season" WHERE "goals_against"=254;
1-2817196-1
What is the largest number of points in a season?
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text, "head_coaches" text );
SELECT MAX("points") FROM "regular_season";
1-2817196-1
What is the phonology used in the example streht > "straight"?
CREATE TABLE "diphthongs" ( "late_old_english_anglian" text, "early_middle_english" text, "late_middle_english" text, "early_modern_english" text, "modern_english" text, "example" text );
SELECT "early_middle_english" FROM "diphthongs" WHERE "example"='streht > \"straight\"';
1-28177800-5
What is the Anglian phonology used in the example dæg > "day"; grǣg > "gray"?
CREATE TABLE "diphthongs" ( "late_old_english_anglian" text, "early_middle_english" text, "late_middle_english" text, "early_modern_english" text, "modern_english" text, "example" text );
SELECT "late_old_english_anglian" FROM "diphthongs" WHERE "example"='dæg > \"day\"; grǣg > \"gray\"';
1-28177800-5
What is the modern English phonology used in the example weg > "way"; regn > "rain"?
CREATE TABLE "diphthongs" ( "late_old_english_anglian" text, "early_middle_english" text, "late_middle_english" text, "early_modern_english" text, "modern_english" text, "example" text );
SELECT "modern_english" FROM "diphthongs" WHERE "example"='weg > \"way\"; regn > \"rain\"';
1-28177800-5
What is the Early Modern English phonology used in the example bōg > "bough"; plōg > plōh > "plough"?
CREATE TABLE "diphthongs" ( "late_old_english_anglian" text, "early_middle_english" text, "late_middle_english" text, "early_modern_english" text, "modern_english" text, "example" text );
SELECT "early_modern_english" FROM "diphthongs" WHERE "example"='bōg > \"bough\"; plōg > plōh > \"plough\"';
1-28177800-5
What is the Late Middle English equivalent of the Anglian æg, ǣg?
CREATE TABLE "diphthongs" ( "late_old_english_anglian" text, "early_middle_english" text, "late_middle_english" text, "early_modern_english" text, "modern_english" text, "example" text );
SELECT "late_middle_english" FROM "diphthongs" WHERE "late_old_english_anglian"='æg, ǣg';
1-28177800-5
What is the example of the Early Modern English ( [x] → /f/) /ɔf/?
CREATE TABLE "diphthongs" ( "late_old_english_anglian" text, "early_middle_english" text, "late_middle_english" text, "early_modern_english" text, "modern_english" text, "example" text );
SELECT "example" FROM "diphthongs" WHERE "early_modern_english"='( [x] → /f/) /ɔf/';
1-28177800-5
List the numer of miles for 2010.
CREATE TABLE "table1_28178756_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "miles_km" FROM "table1_28178756_1" WHERE "year"=2010;
1-28178756-1
On what day did tommy ellis drive?
CREATE TABLE "table1_28178756_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "date" FROM "table1_28178756_1" WHERE "driver"='Tommy Ellis';
1-28178756-1
On what day did joe gibbs racing record a time of 1:53:26?
CREATE TABLE "table1_28178756_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "date" FROM "table1_28178756_1" WHERE "team"='Joe Gibbs Racing' AND "race_time"='1:53:26';
1-28178756-1
What is the average speed for filmar racing?
CREATE TABLE "table1_28178756_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "average_speed_mph" FROM "table1_28178756_1" WHERE "team"='FILMAR Racing';
1-28178756-1
List the race time for may 11.
CREATE TABLE "table1_28178756_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "race_time" FROM "table1_28178756_1" WHERE "date"='May 11';
1-28178756-1
What is the total number of modern grannies performed?
CREATE TABLE "series_1_round_summary_top_24" ( "name_name_of_act" text, "age_s" text, "genre" text, "act" text, "hometown" text, "semifinal_week" real, "position_reached" text );
SELECT COUNT("act") FROM "series_1_round_summary_top_24" WHERE "name_name_of_act"='Modern Grannies';
1-28180840-15
What is the name of the performance zhu xiaoming performed?
CREATE TABLE "series_1_round_summary_top_24" ( "name_name_of_act" text, "age_s" text, "genre" text, "act" text, "hometown" text, "semifinal_week" real, "position_reached" text );
SELECT "act" FROM "series_1_round_summary_top_24" WHERE "name_name_of_act"='Zhu Xiaoming';
1-28180840-15
How many performers are 29 that made it to the semi finals?
CREATE TABLE "series_1_round_summary_top_24" ( "name_name_of_act" text, "age_s" text, "genre" text, "act" text, "hometown" text, "semifinal_week" real, "position_reached" text );
SELECT "semifinal_week" FROM "series_1_round_summary_top_24" WHERE "age_s"='29';
1-28180840-15
What is the name of the zhou jinsong's hometown?
CREATE TABLE "series_1_round_summary_top_24" ( "name_name_of_act" text, "age_s" text, "genre" text, "act" text, "hometown" text, "semifinal_week" real, "position_reached" text );
SELECT "hometown" FROM "series_1_round_summary_top_24" WHERE "name_name_of_act"='Zhou Jinsong';
1-28180840-15
How many different production codes does the episode originally aired on October 18, 1984 have?
CREATE TABLE "table1_2818164_2" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("production_code") FROM "table1_2818164_2" WHERE "original_air_date"='October 18, 1984';
1-2818164-2
What's the title of the episode with production code 104?
CREATE TABLE "table1_2818164_2" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "title" FROM "table1_2818164_2" WHERE "production_code"=104;
1-2818164-2
How many different titles does the episode originally aired on September 27, 1984 have?
CREATE TABLE "table1_2818164_2" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("title") FROM "table1_2818164_2" WHERE "original_air_date"='September 27, 1984';
1-2818164-2
What's the production code of the episode originally aired on February 21, 1985?
CREATE TABLE "table1_2818164_2" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT MIN("production_code") FROM "table1_2818164_2" WHERE "original_air_date"='February 21, 1985';
1-2818164-2
When did the episode titled "Bad dreams" air for the first time?
CREATE TABLE "table1_2818164_2" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_2818164_2" WHERE "title"='\"Bad Dreams\"';
1-2818164-2
When did the episode titled "Vanessa's new class" air for the first time?
CREATE TABLE "table1_2818164_2" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_2818164_2" WHERE "title"='\"Vanessa''s New Class\"';
1-2818164-2
when roberts 86' is the scorer what is the round?
CREATE TABLE "table1_28181401_4" ( "date" text, "round" text, "opponent" text, "result" text, "venue" text, "scorers" text, "attendance" real, "match_report" text );
SELECT "round" FROM "table1_28181401_4" WHERE "scorers"='Roberts 86''';
1-28181401-4
When semi final (2nd leg) is the round what is the highest attendance?
CREATE TABLE "table1_28181401_4" ( "date" text, "round" text, "opponent" text, "result" text, "venue" text, "scorers" text, "attendance" real, "match_report" text );
SELECT MAX("attendance") FROM "table1_28181401_4" WHERE "round"='Semi Final (2nd leg)';
1-28181401-4
When Mark Stimson started his job in 2007-08 what posiiton was the team on the table
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "position_in_table" FROM "managerial_changes" WHERE "replaced_by"='Mark Stimson';
1-28181347-6
In football league one, what coach was hired as a replacement on 8 October 2007
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "replaced_by" FROM "managerial_changes" WHERE "date_of_vacancy"='8 October 2007';
1-28181347-6
One 6 November 2007 what was the manner of departure for the coach release in football league one?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "manner_of_departure" FROM "managerial_changes" WHERE "date_of_appointment"='6 November 2007';
1-28181347-6
What is the series number for the episode written by janet leahy?
CREATE TABLE "table1_2818164_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT MIN("no_in_series") FROM "table1_2818164_4" WHERE "written_by"='Janet Leahy';
1-2818164-4
What was the air date of the episode with the production code of 322?
CREATE TABLE "table1_2818164_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_2818164_4" WHERE "production_code"=322;
1-2818164-4
What is the series number for the episode directed by jay sandrich that aired October 23, 1986?
CREATE TABLE "table1_2818164_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT MIN("no_in_series") FROM "table1_2818164_4" WHERE "directed_by"='Jay Sandrich' AND "original_air_date"='October 23, 1986';
1-2818164-4
Who wrote the episode titled "man talk"?
CREATE TABLE "table1_2818164_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "written_by" FROM "table1_2818164_4" WHERE "title"='\"Man Talk\"';
1-2818164-4
Name the tries for when L is less than 2.0
CREATE TABLE "pool_3" ( "team" text, "p" real, "w" real, "d" real, "l" real, "tries_for" real, "tries_against" real, "try_diff" text, "points_for" real, "points_against" real, "points_diff" text, "pts" real );
SELECT "tries_for" FROM "pool_3" WHERE "l"<2.0;
1-28204447-3
Name the points for for when try diff is +19
CREATE TABLE "pool_3" ( "team" text, "p" real, "w" real, "d" real, "l" real, "tries_for" real, "tries_against" real, "try_diff" text, "points_for" real, "points_against" real, "points_diff" text, "pts" real );
SELECT "points_for" FROM "pool_3" WHERE "try_diff"='+19';
1-28204447-3
Name the most points for when tries against is 8
CREATE TABLE "pool_3" ( "team" text, "p" real, "w" real, "d" real, "l" real, "tries_for" real, "tries_against" real, "try_diff" text, "points_for" real, "points_against" real, "points_diff" text, "pts" real );
SELECT MAX("points_for") FROM "pool_3" WHERE "tries_against"=8;
1-28204447-3
What is the most recent year shown for Betty Stove?
CREATE TABLE "women_s_doubles_14_6_titles_8_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT MAX("year") FROM "women_s_doubles_14_6_titles_8_runner_ups";
1-2820584-2
Who was Betty's partner when the surface is hard?
CREATE TABLE "women_s_doubles_14_6_titles_8_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "partner" FROM "women_s_doubles_14_6_titles_8_runner_ups" WHERE "surface"='Hard';
1-2820584-2
What is the lowest number of drawn games by a team?
CREATE TABLE "table" ( "position" real, "club" text, "played" real, "won" real, "drawn" real, "lost" real, "pts_for" real, "pts_agst" real, "points" real, "percent" text );
SELECT MIN("drawn") FROM "table";
1-28201906-1
How many points did the team that won 5 games make?
CREATE TABLE "table" ( "position" real, "club" text, "played" real, "won" real, "drawn" real, "lost" real, "pts_for" real, "pts_agst" real, "points" real, "percent" text );
SELECT "pts_for" FROM "table" WHERE "won"=5;
1-28201906-1
How many points does the club that had 45 points against it have?
CREATE TABLE "table" ( "position" real, "club" text, "played" real, "won" real, "drawn" real, "lost" real, "pts_for" real, "pts_agst" real, "points" real, "percent" text );
SELECT "points" FROM "table" WHERE "pts_agst"=45;
1-28201906-1
When gray wolves is the team nickname how many institutions are there?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT COUNT("institution") FROM "division_ii" WHERE "team_nickname"='Gray Wolves';
1-28211213-2
When sylvania, oh is the location what is the team nickname?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "team_nickname" FROM "division_ii" WHERE "location"='Sylvania, OH';
1-28211213-2
When indianapolis, indiana is the location what is the institution?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "institution" FROM "division_ii" WHERE "location"='Indianapolis, Indiana';
1-28211213-2
When private/ nonsectarian is the the affiliation what is the team nickname?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "team_nickname" FROM "division_ii" WHERE "affiliation"='Private/ Nonsectarian';
1-28211213-2
4512 is the enrollment what is the team nickname?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "team_nickname" FROM "division_ii" WHERE "enrollment"=4512;
1-28211213-2
What championship was played with Allan Stone as a partner?
CREATE TABLE "mixed_doubles_13_4_titles_9_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "championship" FROM "mixed_doubles_13_4_titles_9_runner_ups" WHERE "partner"='Allan Stone';
1-2820584-3
How many different partners played in the finale in 1973?
CREATE TABLE "mixed_doubles_13_4_titles_9_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT COUNT("partner") FROM "mixed_doubles_13_4_titles_9_runner_ups" WHERE "year"=1973;
1-2820584-3
What was the score in the final played with Fred McNair as partner?
CREATE TABLE "mixed_doubles_13_4_titles_9_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "score_in_the_final" FROM "mixed_doubles_13_4_titles_9_runner_ups" WHERE "partner"='Fred McNair';
1-2820584-3
What was the orginal air date for episodes with production code 2acx12?
CREATE TABLE "episodes" ( "num_season_num" text, "no_episode_num" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "original_air_date" FROM "episodes" WHERE "prod_code"='2ACX12';
1-28210383-1
Who wrote the episode with production code 2acx12?
CREATE TABLE "episodes" ( "num_season_num" text, "no_episode_num" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "written_by" FROM "episodes" WHERE "prod_code"='2ACX12';
1-28210383-1
What numbered episode was directed by greg colton and written by patrick meighan?
CREATE TABLE "episodes" ( "num_season_num" text, "no_episode_num" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "no_episode_num" FROM "episodes" WHERE "directed_by"='Greg Colton' AND "written_by"='Patrick Meighan';
1-28210383-1
Who directed # (season #) is 1 ( 2 )?
CREATE TABLE "episodes" ( "num_season_num" text, "no_episode_num" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text );
SELECT "directed_by" FROM "episodes" WHERE "num_season_num"='1 ( 2 )';
1-28210383-1
Who is everyone on the men's doubles when men's singles is Ma Wenge?
CREATE TABLE "senior_events" ( "season" text, "host" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text );
SELECT "mens_doubles" FROM "senior_events" WHERE "mens_singles"='Ma Wenge';
1-28211988-1
Who are all men's doubles when men's singles is Jean-Michel Saive?
CREATE TABLE "senior_events" ( "season" text, "host" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text );
SELECT "mens_doubles" FROM "senior_events" WHERE "mens_singles"='Jean-Michel Saive';
1-28211988-1
Who are all men's doubles when men's singles is Jean-Michel Saive?
CREATE TABLE "senior_events" ( "season" text, "host" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text );
SELECT "mens_doubles" FROM "senior_events" WHERE "mens_singles"='Jean-Michel Saive';
1-28211988-1
Who are all hosts when men's singles is Ma Wenge?
CREATE TABLE "senior_events" ( "season" text, "host" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text );
SELECT "host" FROM "senior_events" WHERE "mens_singles"='Ma Wenge';
1-28211988-1
How many people are women's singles in the season of 2000/01?
CREATE TABLE "senior_events" ( "season" text, "host" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text );
SELECT COUNT("womens_singles") FROM "senior_events" WHERE "season"='2000/01';
1-28211988-1
Name the winners of the mens doubles in the season of 1963/64.
CREATE TABLE "senior_events" ( "season" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_doubles" FROM "senior_events" WHERE "season"='1963/64';
1-28211988-4
Who was the director of the episode with series number 116?
CREATE TABLE "table1_28212888_2" ( "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 "directed_by" FROM "table1_28212888_2" WHERE "no_in_series"=116;
1-28212888-2
Who's the writer of the episode titled "Safe Haven"?
CREATE TABLE "table1_28212888_2" ( "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 "written_by" FROM "table1_28212888_2" WHERE "title"='\"Safe Haven\"';
1-28212888-2
What's the title of the episode seen by 12.85 millions of people in the US?
CREATE TABLE "table1_28212888_2" ( "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 "title" FROM "table1_28212888_2" WHERE "u_s_viewers_millions"='12.85';
1-28212888-2
How many different people wrote the episode titled "Reflection of Desire"?
CREATE TABLE "table1_28212888_2" ( "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("written_by") FROM "table1_28212888_2" WHERE "title"='\"Reflection of Desire\"';
1-28212888-2
How many episodes had 11.86 million US viewers?
CREATE TABLE "season_3_2004" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT COUNT("no_in_series") FROM "season_3_2004" WHERE "u_s_viewers_millions"='11.86';
1-28215780-4
What is the title(s) of episodes written by aron eli coleite?
CREATE TABLE "season_3_2004" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "title" FROM "season_3_2004" WHERE "written_by"='Aron Eli Coleite';
1-28215780-4
What are the original air date(s) for episodes written by aron eli coleite?
CREATE TABLE "season_3_2004" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "original_air_date" FROM "season_3_2004" WHERE "written_by"='Aron Eli Coleite';
1-28215780-4
How many episodes were titled "second chances"?
CREATE TABLE "season_3_2004" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT COUNT("u_s_viewers_millions") FROM "season_3_2004" WHERE "title"='\"Second Chances\"';
1-28215780-4
how many producers are responsible for the song 'calling out to marlboro?
CREATE TABLE "discography_original_releases" ( "year" real, "song_s" text, "producer_s" text, "written_by" text, "artist" text, "title_label" text );
SELECT COUNT("producer_s") FROM "discography_original_releases" WHERE "song_s"='Calling Out to Marlboro';
1-28232443-1
what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records?
CREATE TABLE "discography_original_releases" ( "year" real, "song_s" text, "producer_s" text, "written_by" text, "artist" text, "title_label" text );
SELECT MIN("year") FROM "discography_original_releases" WHERE "artist"='Kid Creole and the Coconuts';
1-28232443-1
How many seasons are there with Formula Holden?
CREATE TABLE "overall_stats" ( "series" text, "seasons" real, "races" real, "poles" real, "wins" real, "podiums_non_win" real, "point_finishes_non_podium" real, "teams" real, "total_points" real, "championships" real, "best_finish_championship" text );
SELECT COUNT("seasons") FROM "overall_stats" WHERE "series"='Formula Holden';
1-2822193-1
How many poles are there with 2 races?
CREATE TABLE "overall_stats" ( "series" text, "seasons" real, "races" real, "poles" real, "wins" real, "podiums_non_win" real, "point_finishes_non_podium" real, "teams" real, "total_points" real, "championships" real, "best_finish_championship" text );
SELECT MAX("poles") FROM "overall_stats" WHERE "races"=2;
1-2822193-1
What's the most amount of point finishes for v8supercar?
CREATE TABLE "overall_stats" ( "series" text, "seasons" real, "races" real, "poles" real, "wins" real, "podiums_non_win" real, "point_finishes_non_podium" real, "teams" real, "total_points" real, "championships" real, "best_finish_championship" text );
SELECT MAX("point_finishes_non_podium") FROM "overall_stats" WHERE "series"='V8Supercar';
1-2822193-1
How many people had high rebounds in game 14?
CREATE TABLE "liga_acb" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_rebounds") FROM "liga_acb" WHERE "game"=14;
1-28220778-21
What is every score when the date is January 2?
CREATE TABLE "liga_acb" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "liga_acb" WHERE "date"='January 2';
1-28220778-21
What was the highest number of students in attendance for the university of north texas?
CREATE TABLE "division_i" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT MAX("enrollment") FROM "division_i" WHERE "institution"='University of North Texas';
1-28243691-1
What is the mascot for texas tech university?
CREATE TABLE "division_i" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "team_nickname" FROM "division_i" WHERE "institution"='Texas Tech University';
1-28243691-1
What is the total enrollment for private/ disciples of christ?
CREATE TABLE "division_i" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "enrollment" FROM "division_i" WHERE "affiliation"='Private/ Disciples of Christ';
1-28243691-1
How many mascotts are there for college station, texas
CREATE TABLE "division_i" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT COUNT("team_nickname") FROM "division_i" WHERE "location"='College Station, Texas';
1-28243691-1
List the highest number of students in attendance for the institution that started in 1923.
CREATE TABLE "division_i" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT MAX("enrollment") FROM "division_i" WHERE "founded"=1923;
1-28243691-1
How many next in lines had heirs of Archduke Karl?
CREATE TABLE "heirs_to_the_austrian_empire" ( "emperor" text, "heir" text, "relationship_to_emperor_and_status" text, "became_heir" text, "ceased_to_be_heir" text, "next_in_line" text );
SELECT COUNT("next_in_line") FROM "heirs_to_the_austrian_empire" WHERE "heir"='Archduke Karl';
1-28241890-2
Which team has a song based on "wee deoch an doris"?
CREATE TABLE "notes" ( "club_name" text, "name_of_team_song" text, "basis_for_team_song" text, "first_used_as_team_song" text, "writer_composer" text );
SELECT "club_name" FROM "notes" WHERE "basis_for_team_song"='\"Wee Deoch an Doris\"';
1-28243323-1
Name the team that has a song writer named larry spokes.
CREATE TABLE "notes" ( "club_name" text, "name_of_team_song" text, "basis_for_team_song" text, "first_used_as_team_song" text, "writer_composer" text );
SELECT "club_name" FROM "notes" WHERE "writer_composer"='Larry Spokes';
1-28243323-1
How man teams have a writer named harry angus?
CREATE TABLE "notes" ( "club_name" text, "name_of_team_song" text, "basis_for_team_song" text, "first_used_as_team_song" text, "writer_composer" text );
SELECT COUNT("name_of_team_song") FROM "notes" WHERE "writer_composer"='Harry Angus';
1-28243323-1
Name the team anthem that was written by quentin eyers and les kaczmarek.
CREATE TABLE "notes" ( "club_name" text, "name_of_team_song" text, "basis_for_team_song" text, "first_used_as_team_song" text, "writer_composer" text );
SELECT "name_of_team_song" FROM "notes" WHERE "writer_composer"='Quentin Eyers and Les Kaczmarek';
1-28243323-1
How many team songs does fremantle have?
CREATE TABLE "notes" ( "club_name" text, "name_of_team_song" text, "basis_for_team_song" text, "first_used_as_team_song" text, "writer_composer" text );
SELECT COUNT("basis_for_team_song") FROM "notes" WHERE "club_name"='Fremantle';
1-28243323-1
What is the name of the team song written by ken walther?
CREATE TABLE "notes" ( "club_name" text, "name_of_team_song" text, "basis_for_team_song" text, "first_used_as_team_song" text, "writer_composer" text );
SELECT "basis_for_team_song" FROM "notes" WHERE "writer_composer"='Ken Walther';
1-28243323-1
In how many different years was the team nicknamed Comets founded?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT COUNT("founded") FROM "division_ii" WHERE "team_nickname"='Comets';
1-28243691-2
What's the nickname of the team with enrollment of 40747?
CREATE TABLE "division_ii" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text );
SELECT "team_nickname" FROM "division_ii" WHERE "enrollment"=40747;
1-28243691-2