question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
On how many different dates was the race at the Silverstone circuit?
CREATE TABLE "calendar" ( "round" real, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_drivers" text, "winning_team" text );
SELECT COUNT("date") FROM "calendar" WHERE "circuit"='Silverstone';
1-22334183-3
When was the circuit Donington Park?
CREATE TABLE "calendar" ( "round" real, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_drivers" text, "winning_team" text );
SELECT "date" FROM "calendar" WHERE "circuit"='Donington Park';
1-22334183-3
What is the weight is the name is Stuart Craig?
CREATE TABLE "roster" ( "name" text, "position" text, "height" text, "weight" text, "date_of_birth" text, "home_team" text );
SELECT "weight" FROM "roster" WHERE "name"='Stuart Craig';
1-22344463-2
If the name is Timo Higgins, what is the total date of birth amount?
CREATE TABLE "roster" ( "name" text, "position" text, "height" text, "weight" text, "date_of_birth" text, "home_team" text );
SELECT COUNT("date_of_birth") FROM "roster" WHERE "name"='Timo Higgins';
1-22344463-2
If the height is 181cm, what was the position?
CREATE TABLE "roster" ( "name" text, "position" text, "height" text, "weight" text, "date_of_birth" text, "home_team" text );
SELECT "position" FROM "roster" WHERE "height"='181cm';
1-22344463-2
If the home team is UMBC and the weight is 78kg, what the the name total number?
CREATE TABLE "roster" ( "name" text, "position" text, "height" text, "weight" text, "date_of_birth" text, "home_team" text );
SELECT COUNT("name") FROM "roster" WHERE "weight"='78kg' AND "home_team"='UMBC';
1-22344463-2
If the height is 185cm and the home team is Heaton Mersey, what is the date of birth?
CREATE TABLE "roster" ( "name" text, "position" text, "height" text, "weight" text, "date_of_birth" text, "home_team" text );
SELECT "date_of_birth" FROM "roster" WHERE "height"='185cm' AND "home_team"='Heaton Mersey';
1-22344463-2
How many viewers tuned in for season 2?
CREATE TABLE "table1_22347090_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_22347090_4" WHERE "no_in_season"=2;
1-22347090-4
Who directed the episode that has 3x6752 listed as the production code?
CREATE TABLE "table1_22347090_4" ( "no_in_series" real, "no_in_season" 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_22347090_4" WHERE "production_code"='3X6752';
1-22347090-4
Which series number had 1.98 million viewers?
CREATE TABLE "table1_22347090_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT MIN("no_in_series") FROM "table1_22347090_4" WHERE "u_s_viewers_million"='1.98';
1-22347090-4
Name the viewers for production code for 3x6704
CREATE TABLE "table1_22347090_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_22347090_5" WHERE "production_code"='3X6704';
1-22347090-5
Name the viewers for production code being 3x6706
CREATE TABLE "table1_22347090_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_22347090_5" WHERE "production_code"='3X6706';
1-22347090-5
Name the title that got 1.54 viewers
CREATE TABLE "table1_22347090_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_22347090_5" WHERE "u_s_viewers_million"='1.54';
1-22347090-5
Name the number of number in season for 26
CREATE TABLE "table1_22347090_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("no_in_season") FROM "table1_22347090_5" WHERE "no_in_series"=26;
1-22347090-5
Who wrote the episode that has a production code 3x7557?
CREATE TABLE "table1_22347090_6" ( "no_in_series" real, "no_in_season" 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_22347090_6" WHERE "production_code"='3X7557';
1-22347090-6
How many directors are there for the episode that had 1.59 million U.S. viewers?
CREATE TABLE "table1_22347090_6" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("directed_by") FROM "table1_22347090_6" WHERE "u_s_viewers_million"='1.59';
1-22347090-6
What is the production code for the episode that had 1.32 million U.S. viewers?
CREATE TABLE "table1_22347090_6" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "production_code" FROM "table1_22347090_6" WHERE "u_s_viewers_million"='1.32';
1-22347090-6
What episode number in the series had a production code of 3x7554?
CREATE TABLE "table1_22347090_6" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT MIN("no_in_series") FROM "table1_22347090_6" WHERE "production_code"='3X7554';
1-22347090-6
What is the name of episode number 41 in the series?
CREATE TABLE "table1_22347090_6" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_22347090_6" WHERE "no_in_series"=41;
1-22347090-6
Who has the minimum number of silver?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("silver") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-20
Who is the athlete who's rank is 8 and competed in the olympics during 1948–1952?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT "athlete" FROM "list_of_olympic_medalists_in_athletics_m" WHERE "rank"=8 AND "olympics"='1948–1952';
1-22355-20
What is the nation who won 1 bronze in the Olympics during 1924–1928?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT "nation" FROM "list_of_olympic_medalists_in_athletics_m" WHERE "olympics"='1924–1928' AND "bronze"=1;
1-22355-20
Who is the athlete from the nation of Ethiopia (eth) who had a rank bigger than 7.0?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT "athlete" FROM "list_of_olympic_medalists_in_athletics_m" WHERE "nation"='Ethiopia (ETH)' AND "rank">7.0;
1-22355-20
What is the maximum number of golds?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MAX("gold") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-26
What is the smallest amount of silver?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("silver") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-29
Name the nation for abdon pamich category:articles with hcards
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT "nation" FROM "list_of_olympic_medalists_in_athletics_m" WHERE "athlete"='Abdon Pamich Category:Articles with hCards';
1-22355-44
Name the silver for ronald weigel category:articles with hcards
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MAX("silver") FROM "list_of_olympic_medalists_in_athletics_m" WHERE "athlete"='Ronald Weigel Category:Articles with hCards';
1-22355-44
What's the minimal rank of a athlete shown in the chart?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("rank") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-5
which is the minimun amount of gold medals?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("gold") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-35
which is the minimun amount of silver medals?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("silver") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-35
What is the lowest overall number for total(min. 2 medals)?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("total_min_2_medals") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-65
What is the maximum rank of the nation that won 4 gold medals?
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MAX("rank") FROM "list_of_olympic_medalists_in_athletics_m" WHERE "gold"=4;
1-22355-62
Name the most rank
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MAX("rank") FROM "list_of_olympic_medalists_in_athletics_m";
1-22355-68
Name the most rank for 2 gold
CREATE TABLE "list_of_olympic_medalists_in_athletics_m" ( "rank" real, "athlete" text, "nation" text, "olympics" text, "gold" real, "silver" real, "bronze" real, "total_min_2_medals" real );
SELECT MIN("rank") FROM "list_of_olympic_medalists_in_athletics_m" WHERE "gold"=2;
1-22355-68
Name the most total
CREATE TABLE "table1_22360_3" ( "discipline" text, "contested" text, "number_of_olympiads" real, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MAX("total") FROM "table1_22360_3";
1-22360-3
Name the silver for baseball
CREATE TABLE "table1_22360_3" ( "discipline" text, "contested" text, "number_of_olympiads" real, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("silver") FROM "table1_22360_3" WHERE "discipline"='Baseball';
1-22360-3
Name the discipline for bronze being 0
CREATE TABLE "table1_22360_3" ( "discipline" text, "contested" text, "number_of_olympiads" real, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT "discipline" FROM "table1_22360_3" WHERE "bronze"=0;
1-22360-3
Name the most tier 1 capital for irish nationwide
CREATE TABLE "table1_22368322_2" ( "institution" text, "date_of_report" text, "s_risk_weighted_asset_million" real, "tier_1_capital_million" real, "tier_1_ratio" text );
SELECT MAX("tier_1_capital_million") FROM "table1_22368322_2" WHERE "institution"='Irish Nationwide';
1-22368322-2
Name the institution for tier 1 capital 1394
CREATE TABLE "table1_22368322_2" ( "institution" text, "date_of_report" text, "s_risk_weighted_asset_million" real, "tier_1_capital_million" real, "tier_1_ratio" text );
SELECT "institution" FROM "table1_22368322_2" WHERE "tier_1_capital_million"=1394;
1-22368322-2
Name the tier 1 ratio for irish life and permanent
CREATE TABLE "table1_22368322_2" ( "institution" text, "date_of_report" text, "s_risk_weighted_asset_million" real, "tier_1_capital_million" real, "tier_1_ratio" text );
SELECT "tier_1_ratio" FROM "table1_22368322_2" WHERE "institution"='Irish Life and Permanent';
1-22368322-2
Name the total number of tier 1 capital for allied irish banks
CREATE TABLE "table1_22368322_2" ( "institution" text, "date_of_report" text, "s_risk_weighted_asset_million" real, "tier_1_capital_million" real, "tier_1_ratio" text );
SELECT COUNT("tier_1_capital_million") FROM "table1_22368322_2" WHERE "institution"='Allied Irish Banks';
1-22368322-2
Name the date of report for tier 1 ratio being 3.9%
CREATE TABLE "table1_22368322_2" ( "institution" text, "date_of_report" text, "s_risk_weighted_asset_million" real, "tier_1_capital_million" real, "tier_1_ratio" text );
SELECT "date_of_report" FROM "table1_22368322_2" WHERE "tier_1_ratio"='3.9%';
1-22368322-2
What season ended on April 18?
CREATE TABLE "division_i" ( "no" real, "season" text, "championship" real, "no_of_teams" real, "start_reg_season" text, "finish_incl_championship" text, "top_record" text, "national_champion" text );
SELECT "season" FROM "division_i" WHERE "finish_incl_championship"='April 18';
1-22383603-1
When did the season start that ended with the top record of Lindenwood (20–0–0)?
CREATE TABLE "division_i" ( "no" real, "season" text, "championship" real, "no_of_teams" real, "start_reg_season" text, "finish_incl_championship" text, "top_record" text, "national_champion" text );
SELECT "start_reg_season" FROM "division_i" WHERE "top_record"='Lindenwood (20–0–0)';
1-22383603-1
What is the year range of season 4?
CREATE TABLE "division_i" ( "no" real, "season" text, "championship" real, "no_of_teams" real, "start_reg_season" text, "finish_incl_championship" text, "top_record" text, "national_champion" text );
SELECT "season" FROM "division_i" WHERE "no"=4;
1-22383603-1
When is the finish of the season that started on September 25?
CREATE TABLE "division_i" ( "no" real, "season" text, "championship" real, "no_of_teams" real, "start_reg_season" text, "finish_incl_championship" text, "top_record" text, "national_champion" text );
SELECT "finish_incl_championship" FROM "division_i" WHERE "start_reg_season"='September 25';
1-22383603-1
On what air date were there 2.15 million u.s. viewers?
CREATE TABLE "table1_22380270_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_22380270_1" WHERE "u_s_viewers_millions"='2.15';
1-22380270-1
How many u.s. views were there for the epidosde titled, "now you lift your eyes to the sun"?
CREATE TABLE "table1_22380270_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "u_s_viewers_millions" FROM "table1_22380270_1" WHERE "title"='\"Now You Lift Your Eyes to the Sun\"';
1-22380270-1
Who was the writer for the episode with 2.15 million u.s.viewers?
CREATE TABLE "table1_22380270_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_22380270_1" WHERE "u_s_viewers_millions"='2.15';
1-22380270-1
Who walked in space from STS-101 Eva 1?
CREATE TABLE "table1_22385461_1" ( "num" text, "spacecraft" text, "spacewalkers" text, "start_utc" text, "end_utc" text, "duration" text );
SELECT "spacewalkers" FROM "table1_22385461_1" WHERE "spacecraft"='STS-101 EVA 1';
1-22385461-1
What is the end (UTC) if the duration is 6 hours, 55 minutes?
CREATE TABLE "table1_22385461_8" ( "num" text, "spacecraft" text, "spacewalkers" text, "start_utc" text, "end_utc" text, "duration" text );
SELECT "end_utc" FROM "table1_22385461_8" WHERE "duration"='6 hours, 55 minutes';
1-22385461-8
If the end (UTC) is January 31, 2007 23:09, what is the name of the spacewalkers?
CREATE TABLE "table1_22385461_8" ( "num" text, "spacecraft" text, "spacewalkers" text, "start_utc" text, "end_utc" text, "duration" text );
SELECT "spacewalkers" FROM "table1_22385461_8" WHERE "end_utc"='January 31, 2007 23:09';
1-22385461-8
What are the names of the spacewalkers for end (UTC) October 30, 2007 15:53?
CREATE TABLE "table1_22385461_8" ( "num" text, "spacecraft" text, "spacewalkers" text, "start_utc" text, "end_utc" text, "duration" text );
SELECT "spacewalkers" FROM "table1_22385461_8" WHERE "end_utc"='October 30, 2007 15:53';
1-22385461-8
Which position is player bernie doan?
CREATE TABLE "draft_picks" ( "pick_num" real, "player" text, "position" text, "nationality" text, "nhl_team" text, "college_junior_club_team" text );
SELECT "position" FROM "draft_picks" WHERE "player"='Bernie Doan';
1-22402438-7
How many pick # are there for the goaltender position?
CREATE TABLE "draft_picks" ( "pick_num" real, "player" text, "position" text, "nationality" text, "nhl_team" text, "college_junior_club_team" text );
SELECT MIN("pick_num") FROM "draft_picks" WHERE "position"='Goaltender';
1-22402438-7
How many college/junior/clubteams have John garrett as the player?
CREATE TABLE "draft_picks" ( "pick_num" real, "player" text, "position" text, "nationality" text, "nhl_team" text, "college_junior_club_team" text );
SELECT COUNT("college_junior_club_team") FROM "draft_picks" WHERE "player"='John Garrett';
1-22402438-7
Who is the player with the pick# 80?
CREATE TABLE "draft_picks" ( "pick_num" real, "player" text, "position" text, "nationality" text, "nhl_team" text, "college_junior_club_team" text );
SELECT "player" FROM "draft_picks" WHERE "pick_num"=80;
1-22402438-7
Which nationality is player John Garrett?
CREATE TABLE "draft_picks" ( "pick_num" real, "player" text, "position" text, "nationality" text, "nhl_team" text, "college_junior_club_team" text );
SELECT "nationality" FROM "draft_picks" WHERE "player"='John Garrett';
1-22402438-7
what team had ricardo serrano for combativity prize?
CREATE TABLE "jersey_progress" ( "stage_winner" text, "general_classification" text, "sprints_classification" text, "mountains_classification" text, "youth_classification" text, "team_classification" text, "combativity_prize" text );
SELECT "team_classification" FROM "jersey_progress" WHERE "combativity_prize"='Ricardo Serrano';
1-22410316-17
How many production stage managers worked with Gabriel di Chiara as the Male Rep?
CREATE TABLE "past_board_members" ( "year" text, "chairman" text, "artistic_director" text, "performance_liaison" text, "secretary" text, "business_manager" text, "production_stagemanager" text, "dramaturge" text, "public_relations" text, "first_second_year_rep" text, "male_rep" text );
SELECT COUNT("production_stagemanager") FROM "past_board_members" WHERE "male_rep"='Gabriel Di Chiara';
1-22410780-1
How many production stage managers worked with secretary Rachel Hartmann?
CREATE TABLE "past_board_members" ( "year" text, "chairman" text, "artistic_director" text, "performance_liaison" text, "secretary" text, "business_manager" text, "production_stagemanager" text, "dramaturge" text, "public_relations" text, "first_second_year_rep" text, "male_rep" text );
SELECT COUNT("production_stagemanager") FROM "past_board_members" WHERE "secretary"='Rachel Hartmann';
1-22410780-1
Who were the performance liaisons for the dramaturge Chrisena Ricci?
CREATE TABLE "past_board_members" ( "year" text, "chairman" text, "artistic_director" text, "performance_liaison" text, "secretary" text, "business_manager" text, "production_stagemanager" text, "dramaturge" text, "public_relations" text, "first_second_year_rep" text, "male_rep" text );
SELECT "performance_liaison" FROM "past_board_members" WHERE "dramaturge"='Chrisena Ricci';
1-22410780-1
Who was the first/second year rep. when the performance liaison was Kira Josephson?
CREATE TABLE "past_board_members" ( "year" text, "chairman" text, "artistic_director" text, "performance_liaison" text, "secretary" text, "business_manager" text, "production_stagemanager" text, "dramaturge" text, "public_relations" text, "first_second_year_rep" text, "male_rep" text );
SELECT "first_second_year_rep" FROM "past_board_members" WHERE "performance_liaison"='Kira Josephson';
1-22410780-1
What year were the first/second year reps Katie Pautler and Devery North?
CREATE TABLE "past_board_members" ( "year" text, "chairman" text, "artistic_director" text, "performance_liaison" text, "secretary" text, "business_manager" text, "production_stagemanager" text, "dramaturge" text, "public_relations" text, "first_second_year_rep" text, "male_rep" text );
SELECT "year" FROM "past_board_members" WHERE "first_second_year_rep"='Katie Pautler and Devery North';
1-22410780-1
Who was the male rep. when Caroline Rhoads was the artistic director?
CREATE TABLE "past_board_members" ( "year" text, "chairman" text, "artistic_director" text, "performance_liaison" text, "secretary" text, "business_manager" text, "production_stagemanager" text, "dramaturge" text, "public_relations" text, "first_second_year_rep" text, "male_rep" text );
SELECT "male_rep" FROM "past_board_members" WHERE "artistic_director"='Caroline Rhoads';
1-22410780-1
How many different drivers were there for the team when the manufacturer was Toyota?
CREATE TABLE "table1_2241101_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT COUNT("driver") FROM "table1_2241101_1" WHERE "manufacturer"='Toyota';
1-2241101-1
In how many different years did the race happen on February 27?
CREATE TABLE "table1_2241101_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT COUNT("year") FROM "table1_2241101_1" WHERE "date"='February 27';
1-2241101-1
What team had average speed of 107.063 mph?
CREATE TABLE "table1_2241101_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "team" FROM "table1_2241101_1" WHERE "average_speed_mph"='107.063';
1-2241101-1
What was the report for 2010?
CREATE TABLE "table1_2241101_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "report" FROM "table1_2241101_1" WHERE "year"=2010;
1-2241101-1
Name the total number of race time for kevin harvick
CREATE TABLE "table1_2241259_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT COUNT("race_time") FROM "table1_2241259_1" WHERE "driver"='Kevin Harvick';
1-2241259-1
What manufacturer made the car that won in 2004?
CREATE TABLE "table1_2241841_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "manufacturer" FROM "table1_2241841_1" WHERE "year"='2004';
1-2241841-1
How many wins are with Dodge vehicles?
CREATE TABLE "table1_2241841_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT COUNT("miles_km") FROM "table1_2241841_1" WHERE "manufacturer"='Dodge';
1-2241841-1
Who made the car that won the race on May 21?
CREATE TABLE "table1_2241841_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "manufacturer" FROM "table1_2241841_1" WHERE "date"='May 21';
1-2241841-1
In the race with a winning time of 4:17:18, how many laps were run?
CREATE TABLE "table1_2241841_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "laps" FROM "table1_2241841_1" WHERE "race_time"='4:17:18';
1-2241841-1
What team set a 3:15:43 winning time?
CREATE TABLE "table1_2241841_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "team" FROM "table1_2241841_1" WHERE "race_time"='3:15:43';
1-2241841-1
How many different cities are represented by contestants whose height stands at 1.80?
CREATE TABLE "delegates" ( "province_community" text, "contestant" text, "age" real, "height" text, "hometown" text, "geographical_regions" text );
SELECT COUNT("hometown") FROM "delegates" WHERE "height"='1.80';
1-22447251-2
How tall is contestant Alexandra Díaz Bello?
CREATE TABLE "delegates" ( "province_community" text, "contestant" text, "age" real, "height" text, "hometown" text, "geographical_regions" text );
SELECT "height" FROM "delegates" WHERE "contestant"='Alexandra Díaz Bello';
1-22447251-2
Which contestant hails from Dajabón?
CREATE TABLE "delegates" ( "province_community" text, "contestant" text, "age" real, "height" text, "hometown" text, "geographical_regions" text );
SELECT "contestant" FROM "delegates" WHERE "province_community"='Dajabón';
1-22447251-2
Which province is Villa Bisonó in?
CREATE TABLE "delegates" ( "province_community" text, "contestant" text, "age" real, "height" text, "hometown" text, "geographical_regions" text );
SELECT "province_community" FROM "delegates" WHERE "hometown"='Villa Bisonó';
1-22447251-2
How old is contestant Valerie Chardonnens Vargas?
CREATE TABLE "delegates" ( "province_community" text, "contestant" text, "age" real, "height" text, "hometown" text, "geographical_regions" text );
SELECT MAX("age") FROM "delegates" WHERE "contestant"='Valerie Chardonnens Vargas';
1-22447251-2
Who was the origianal south korean performer when Adebayo Bolaji performed in Manchester?
CREATE TABLE "principal_roles_and_cast_members" ( "character" text, "original_manchester_performer" text, "original_west_end_performer" text, "original_broadway_performer" text, "original_uk_tour_performer" text, "original_non_equity_us_tour_performer" text, "original_italian_tour_performer" text, "orig...
SELECT "original_south_korean_performer" FROM "principal_roles_and_cast_members" WHERE "original_manchester_performer"='Adebayo Bolaji';
1-22460085-1
What character did Lisa Davina Phillip portray?
CREATE TABLE "principal_roles_and_cast_members" ( "character" text, "original_manchester_performer" text, "original_west_end_performer" text, "original_broadway_performer" text, "original_uk_tour_performer" text, "original_non_equity_us_tour_performer" text, "original_italian_tour_performer" text, "orig...
SELECT "character" FROM "principal_roles_and_cast_members" WHERE "original_manchester_performer"='Lisa Davina Phillip';
1-22460085-1
Who was the Broadway equivalent of Sharon D. Clarke's character?
CREATE TABLE "principal_roles_and_cast_members" ( "character" text, "original_manchester_performer" text, "original_west_end_performer" text, "original_broadway_performer" text, "original_uk_tour_performer" text, "original_non_equity_us_tour_performer" text, "original_italian_tour_performer" text, "orig...
SELECT "original_broadway_performer" FROM "principal_roles_and_cast_members" WHERE "original_west_end_performer"='Sharon D. Clarke';
1-22460085-1
What character did Moya Angela portray?
CREATE TABLE "principal_roles_and_cast_members" ( "character" text, "original_manchester_performer" text, "original_west_end_performer" text, "original_broadway_performer" text, "original_uk_tour_performer" text, "original_non_equity_us_tour_performer" text, "original_italian_tour_performer" text, "orig...
SELECT "character" FROM "principal_roles_and_cast_members" WHERE "original_broadway_performer"='Moya Angela';
1-22460085-1
What character did Richard Fleeshman portray?
CREATE TABLE "principal_roles_and_cast_members" ( "character" text, "original_manchester_performer" text, "original_west_end_performer" text, "original_broadway_performer" text, "original_uk_tour_performer" text, "original_non_equity_us_tour_performer" text, "original_italian_tour_performer" text, "orig...
SELECT "character" FROM "principal_roles_and_cast_members" WHERE "original_west_end_performer"='Richard Fleeshman';
1-22460085-1
Who was the Manchester performer of Lisa Davina Phillip's character?
CREATE TABLE "principal_roles_and_cast_members" ( "character" text, "original_manchester_performer" text, "original_west_end_performer" text, "original_broadway_performer" text, "original_uk_tour_performer" text, "original_non_equity_us_tour_performer" text, "original_italian_tour_performer" text, "orig...
SELECT "original_manchester_performer" FROM "principal_roles_and_cast_members" WHERE "original_west_end_performer"='Lisa Davina Phillip';
1-22460085-1
Name the european tier for rick springfield
CREATE TABLE "guitar_hero_on_tour_setlist" ( "year" real, "song_title" text, "artist" text, "master_recording" text, "na_uk_aus_jpn_nl_tier" text, "european_tier" text );
SELECT "european_tier" FROM "guitar_hero_on_tour_setlist" WHERE "artist"='Rick Springfield';
1-22457674-1
Name the song title for europe
CREATE TABLE "guitar_hero_on_tour_setlist" ( "year" real, "song_title" text, "artist" text, "master_recording" text, "na_uk_aus_jpn_nl_tier" text, "european_tier" text );
SELECT "song_title" FROM "guitar_hero_on_tour_setlist" WHERE "artist"='Europe';
1-22457674-1
Name the number of master recording for doobie brothers the doobie brothers
CREATE TABLE "guitar_hero_on_tour_setlist" ( "year" real, "song_title" text, "artist" text, "master_recording" text, "na_uk_aus_jpn_nl_tier" text, "european_tier" text );
SELECT COUNT("master_recording") FROM "guitar_hero_on_tour_setlist" WHERE "artist"='Doobie Brothers The Doobie Brothers';
1-22457674-1
Name the master recording for europe
CREATE TABLE "guitar_hero_on_tour_setlist" ( "year" real, "song_title" text, "artist" text, "master_recording" text, "na_uk_aus_jpn_nl_tier" text, "european_tier" text );
SELECT "master_recording" FROM "guitar_hero_on_tour_setlist" WHERE "artist"='Europe';
1-22457674-1
what is the date for when the georgian name is ცხოვრება და უწყება ბაგრატონიანთა?
CREATE TABLE "table1_22464685_1" ( "english_name" text, "georgian_name" text, "transliteration" text, "date" text, "author" text, "period_covered" text );
SELECT "date" FROM "table1_22464685_1" WHERE "georgian_name"='ცხოვრება და უწყება ბაგრატონიანთა';
1-22464685-1
what is the transliteration during the period covered is 1125-1223?
CREATE TABLE "table1_22464685_1" ( "english_name" text, "georgian_name" text, "transliteration" text, "date" text, "author" text, "period_covered" text );
SELECT "transliteration" FROM "table1_22464685_1" WHERE "period_covered"='1125-1223';
1-22464685-1
Who is the auther when the english name was histories and eulogies of the sovereigns?
CREATE TABLE "table1_22464685_1" ( "english_name" text, "georgian_name" text, "transliteration" text, "date" text, "author" text, "period_covered" text );
SELECT "author" FROM "table1_22464685_1" WHERE "english_name"='Histories and Eulogies of the Sovereigns';
1-22464685-1
who is the auther when the transliteration is lasha-giorgis droindeli matiane?
CREATE TABLE "table1_22464685_1" ( "english_name" text, "georgian_name" text, "transliteration" text, "date" text, "author" text, "period_covered" text );
SELECT "author" FROM "table1_22464685_1" WHERE "transliteration"='lasha-giorgis droindeli matiane';
1-22464685-1
what is the transliteration where the period covered is 1125-1223?
CREATE TABLE "table1_22464685_1" ( "english_name" text, "georgian_name" text, "transliteration" text, "date" text, "author" text, "period_covered" text );
SELECT "transliteration" FROM "table1_22464685_1" WHERE "period_covered"='1125-1223';
1-22464685-1
in which state where John Laurance (f) as a vacator?
CREATE TABLE "table1_224840_3" ( "state_class" text, "vacator" text, "reason_for_change" text, "successor" text, "date_of_successors_formal_installation" text );
SELECT "state_class" FROM "table1_224840_3" WHERE "vacator"='John Laurance (F)';
1-224840-3
when the vacator was Henry Latimer (f), what were the causes for modification?
CREATE TABLE "table1_224840_3" ( "state_class" text, "vacator" text, "reason_for_change" text, "successor" text, "date_of_successors_formal_installation" text );
SELECT "reason_for_change" FROM "table1_224840_3" WHERE "vacator"='Henry Latimer (F)';
1-224840-3
how many times has Aaron Ogden (f), been a successor and has had a formal installation?
CREATE TABLE "table1_224840_3" ( "state_class" text, "vacator" text, "reason_for_change" text, "successor" text, "date_of_successors_formal_installation" text );
SELECT COUNT("date_of_successors_formal_installation") FROM "table1_224840_3" WHERE "successor"='Aaron Ogden (F)';
1-224840-3
How many 5th venue cities were there when Doha was the 1st venue city?
CREATE TABLE "list_of_fina_diving_world_series" ( "year" real, "1st_venue" text, "2nd_venue" text, "3rd_venue" text, "4th_venue" text, "5th_venue" text );
SELECT COUNT("5th_venue") FROM "list_of_fina_diving_world_series" WHERE "1st_venue"='Doha';
1-22482077-1
When Qingdao was the 1st venue city, how many 2nd venue cities were there?
CREATE TABLE "list_of_fina_diving_world_series" ( "year" real, "1st_venue" text, "2nd_venue" text, "3rd_venue" text, "4th_venue" text, "5th_venue" text );
SELECT COUNT("2nd_venue") FROM "list_of_fina_diving_world_series" WHERE "1st_venue"='Qingdao';
1-22482077-1