question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Name the 8 pm when time is thursday
CREATE TABLE "night" ( "time" text, "06_00_pm" text, "07_00_pm" text, "08_00_pm" text, "09_00_pm" text, "10_00_pm" text, "10_30_pm" text, "11_00_pm" text );
SELECT "08_00_pm" FROM "night" WHERE "time"='Thursday';
1-15535243-4
What channel tv (dt) plays the KPIX station?
CREATE TABLE "television_stations" ( "city_of_license_market" text, "station" text, "channel_tv_dt" text, "years_owned" text, "current_affiliation" text );
SELECT "channel_tv_dt" FROM "television_stations" WHERE "station"='KPIX';
1-1553485-1
Which city of license/market has 3 (26) as their channel tv (dt)?
CREATE TABLE "television_stations" ( "city_of_license_market" text, "station" text, "channel_tv_dt" text, "years_owned" text, "current_affiliation" text );
SELECT "city_of_license_market" FROM "television_stations" WHERE "channel_tv_dt"='3 (26)';
1-1553485-1
Which channel tv (dt) plays in San Francisco - Oakland - San Jose?
CREATE TABLE "television_stations" ( "city_of_license_market" text, "station" text, "channel_tv_dt" text, "years_owned" text, "current_affiliation" text );
SELECT "channel_tv_dt" FROM "television_stations" WHERE "city_of_license_market"='San Francisco - Oakland - San Jose';
1-1553485-1
How many years has station KPIX been owned?
CREATE TABLE "television_stations" ( "city_of_license_market" text, "station" text, "channel_tv_dt" text, "years_owned" text, "current_affiliation" text );
SELECT COUNT("years_owned") FROM "television_stations" WHERE "station"='KPIX';
1-1553485-1
Which city of license/market plays 3 (26)?
CREATE TABLE "television_stations" ( "city_of_license_market" text, "station" text, "channel_tv_dt" text, "years_owned" text, "current_affiliation" text );
SELECT "city_of_license_market" FROM "television_stations" WHERE "channel_tv_dt"='3 (26)';
1-1553485-1
Who currently affiliates in San Francisco - Oakland - San Jose?
CREATE TABLE "television_stations" ( "city_of_license_market" text, "station" text, "channel_tv_dt" text, "years_owned" text, "current_affiliation" text );
SELECT "current_affiliation" FROM "television_stations" WHERE "city_of_license_market"='San Francisco - Oakland - San Jose';
1-1553485-1
In which condition(s) is bleeding time prolonged and prothrombin time unaffected?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "condition" FROM "laboratory_findings_in_various_platelet_" WHERE "bleeding_time"='Prolonged' AND "prothrombin_time"='Unaffected';
1-1555308-1
How many entries for prothrombin time are there where platelet count is "decreased or unaffected"?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT COUNT("prothrombin_time") FROM "laboratory_findings_in_various_platelet_" WHERE "platelet_count"='Decreased or unaffected';
1-1555308-1
How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "platelet_count"='Decreased' AND "prothrombin_time"='Unaffected';
1-1555308-1
What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "prothrombin_time"='Unaffected' AND "platelet_count"='Unaffected';
1-1555308-1
What is the percentage of land area in the ecozone that the percentage protected is 7.96?
CREATE TABLE "table1_15555661_2" ( "ecozone" text, "area_km" real, "percentage_of_total_area" text, "percentage_of_land_area" text, "percentage_protected" text );
SELECT "percentage_of_land_area" FROM "table1_15555661_2" WHERE "percentage_protected"='7.96';
1-15555661-2
What is the percentage of total area in the ecozone that the percentage of land area is 2.2?
CREATE TABLE "table1_15555661_2" ( "ecozone" text, "area_km" real, "percentage_of_total_area" text, "percentage_of_land_area" text, "percentage_protected" text );
SELECT "percentage_of_total_area" FROM "table1_15555661_2" WHERE "percentage_of_land_area"='2.2';
1-15555661-2
What is the percentage of total area in the ecozone that the percentage protected is 8.06?
CREATE TABLE "table1_15555661_2" ( "ecozone" text, "area_km" real, "percentage_of_total_area" text, "percentage_of_land_area" text, "percentage_protected" text );
SELECT "percentage_of_total_area" FROM "table1_15555661_2" WHERE "percentage_protected"='8.06';
1-15555661-2
What is the percentage of land area in the ecozone that the percentage protected is 15.28?
CREATE TABLE "table1_15555661_2" ( "ecozone" text, "area_km" real, "percentage_of_total_area" text, "percentage_of_land_area" text, "percentage_protected" text );
SELECT "percentage_of_land_area" FROM "table1_15555661_2" WHERE "percentage_protected"='15.28';
1-15555661-2
How large is the Boreal Shield in km2?
CREATE TABLE "table1_15555661_2" ( "ecozone" text, "area_km" real, "percentage_of_total_area" text, "percentage_of_land_area" text, "percentage_protected" text );
SELECT COUNT("area_km") FROM "table1_15555661_2" WHERE "ecozone"='Boreal Shield';
1-15555661-2
What is the percentage of total area in the ecozone that the area is 1782252 km2?
CREATE TABLE "table1_15555661_2" ( "ecozone" text, "area_km" real, "percentage_of_total_area" text, "percentage_of_land_area" text, "percentage_protected" text );
SELECT "percentage_of_total_area" FROM "table1_15555661_2" WHERE "area_km"=1782252;
1-15555661-2
What is the condition of the platelet counts in hemophilia?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "platelet_count" FROM "laboratory_findings_in_various_platelet_" WHERE "condition"='Hemophilia';
1-1557752-1
What is the prothrombin time in Von willebrand disease?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "prothrombin_time" FROM "laboratory_findings_in_various_platelet_" WHERE "condition"='Von Willebrand disease';
1-1557752-1
If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "prothrombin_time" FROM "laboratory_findings_in_various_platelet_" WHERE "partial_thromboplastin_time"='Prolonged' AND "bleeding_time"='Prolonged';
1-1557752-1
What is the bleeding time in Bernard-soulier syndrome?
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "condition"='Bernard-Soulier syndrome';
1-1557752-1
Which ring names are currently ranked f0 jūryō 3 west?
CREATE TABLE "list" ( "ring_name" text, "current_rank" text, "debut" text, "stable" text, "birthplace" text, "career_and_other_notes" text );
SELECT "ring_name" FROM "list" WHERE "current_rank"='f0 Jūryō 3 West';
1-1557974-1
How many wrestlers were born in nara, and have a completed 'career and other notes' section?
CREATE TABLE "list" ( "ring_name" text, "current_rank" text, "debut" text, "stable" text, "birthplace" text, "career_and_other_notes" text );
SELECT COUNT("career_and_other_notes") FROM "list" WHERE "birthplace"='Nara';
1-1557974-1
What are the debut year for wrestlers born in Nara?
CREATE TABLE "list" ( "ring_name" text, "current_rank" text, "debut" text, "stable" text, "birthplace" text, "career_and_other_notes" text );
SELECT "debut" FROM "list" WHERE "birthplace"='Nara';
1-1557974-1
Where were the wrestlers born who debuted in 2002-7?
CREATE TABLE "list" ( "ring_name" text, "current_rank" text, "debut" text, "stable" text, "birthplace" text, "career_and_other_notes" text );
SELECT "birthplace" FROM "list" WHERE "debut"='2002-7';
1-1557974-1
What are the career and other notes for wrestlers whose stable is oguruma?
CREATE TABLE "list" ( "ring_name" text, "current_rank" text, "debut" text, "stable" text, "birthplace" text, "career_and_other_notes" text );
SELECT "career_and_other_notes" FROM "list" WHERE "stable"='Oguruma';
1-1557974-1
Name the kinship for *t-ina
CREATE TABLE "kinship_terms" ( "kinship" text, "proto_austronesian" text, "proto_malayo_polynesian" text, "proto_oceanic" text, "proto_polynesian" text );
SELECT "kinship" FROM "kinship_terms" WHERE "proto_malayo_polynesian"='*t-ina';
1-15568886-14
Name the number of proto austronesian for *natu
CREATE TABLE "kinship_terms" ( "kinship" text, "proto_austronesian" text, "proto_malayo_polynesian" text, "proto_oceanic" text, "proto_polynesian" text );
SELECT COUNT("proto_austronesian") FROM "kinship_terms" WHERE "proto_oceanic"='*natu';
1-15568886-14
Name the ptor-austronesian for father
CREATE TABLE "kinship_terms" ( "kinship" text, "proto_austronesian" text, "proto_malayo_polynesian" text, "proto_oceanic" text, "proto_polynesian" text );
SELECT "proto_austronesian" FROM "kinship_terms" WHERE "kinship"='father';
1-15568886-14
Name the proto oceanic for *fafine
CREATE TABLE "kinship_terms" ( "kinship" text, "proto_austronesian" text, "proto_malayo_polynesian" text, "proto_oceanic" text, "proto_polynesian" text );
SELECT "proto_oceanic" FROM "kinship_terms" WHERE "proto_polynesian"='*fafine';
1-15568886-14
Name the proto-austrronesian for *pine, *papine
CREATE TABLE "kinship_terms" ( "kinship" text, "proto_austronesian" text, "proto_malayo_polynesian" text, "proto_oceanic" text, "proto_polynesian" text );
SELECT "proto_austronesian" FROM "kinship_terms" WHERE "proto_oceanic"='*pine, *papine';
1-15568886-14
Name who wrote number 47
CREATE TABLE "table1_15584067_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "written_by" FROM "table1_15584067_4" WHERE "no_in_series"=47;
1-15584067-4
What is the largest mass(kg)?
CREATE TABLE "early_u_s_unmanned_lunar_missions_1958_1" ( "u_s_mission" text, "mass_kg" real, "launch_vehicle" text, "launched" text, "mission_goal" text, "mission_result" text );
SELECT MAX("mass_kg") FROM "early_u_s_unmanned_lunar_missions_1958_1";
1-1558077-2
Which college did draft pick #143 attend?
CREATE TABLE "table1_15582870_1" ( "round" real, "choice" real, "player_name" text, "position" text, "height" text, "weight" real, "college" text );
SELECT "college" FROM "table1_15582870_1" WHERE "choice"=143;
1-15582870-1
How heavy were the players who attended Arkansas?
CREATE TABLE "table1_15582870_1" ( "round" real, "choice" real, "player_name" text, "position" text, "height" text, "weight" real, "college" text );
SELECT "weight" FROM "table1_15582870_1" WHERE "college"='Arkansas';
1-15582870-1
Which college did the player weighing 207 pounds attend?
CREATE TABLE "table1_15582870_1" ( "round" real, "choice" real, "player_name" text, "position" text, "height" text, "weight" real, "college" text );
SELECT "college" FROM "table1_15582870_1" WHERE "weight"=207;
1-15582870-1
Name who wrote the episode when the viewers was 1.81
CREATE TABLE "table1_15584067_7" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "written_by" FROM "table1_15584067_7" WHERE "u_s_viewers_million"='1.81';
1-15584067-7
Name who directed the 114 episode in the series
CREATE TABLE "table1_15584067_7" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "directed_by" FROM "table1_15584067_7" WHERE "no_in_series"='114';
1-15584067-7
Name the total number of air dates for 102 episode
CREATE TABLE "table1_15584067_7" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT COUNT("original_air_date") FROM "table1_15584067_7" WHERE "no_in_series"='102';
1-15584067-7
Name who wrote the 11 number in the season
CREATE TABLE "table1_15584067_7" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "written_by" FROM "table1_15584067_7" WHERE "no_in_season"='11';
1-15584067-7
Name the award name for black ocean current
CREATE TABLE "recent_winners" ( "year_theme" text, "award_name" text, "team_name" text, "team_number" real, "city_state_country" text );
SELECT "award_name" FROM "recent_winners" WHERE "team_name"='BLACK OCEAN CURRENT';
1-15584199-3
What position(s) do players from florida state play?
CREATE TABLE "table1_15592941_1" ( "round" real, "choice" real, "player_name" text, "position" text, "height" text, "weight" real, "college" text );
SELECT "position" FROM "table1_15592941_1" WHERE "college"='Florida State';
1-15592941-1
How much does geno hayes weigh?
CREATE TABLE "table1_15592941_1" ( "round" real, "choice" real, "player_name" text, "position" text, "height" text, "weight" real, "college" text );
SELECT "weight" FROM "table1_15592941_1" WHERE "player_name"='Geno Hayes';
1-15592941-1
What college did jeremy zuttah attend?
CREATE TABLE "table1_15592941_1" ( "round" real, "choice" real, "player_name" text, "position" text, "height" text, "weight" real, "college" text );
SELECT "college" FROM "table1_15592941_1" WHERE "player_name"='Jeremy Zuttah';
1-15592941-1
What was brian rafuse's pf?
CREATE TABLE "round_robin_standings" ( "locale" text, "skip" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" real );
SELECT "pf" FROM "round_robin_standings" WHERE "skip"='Brian Rafuse';
1-15597975-2
When the stolen ends equal 5 whats the amount of pa?
CREATE TABLE "round_robin_standings" ( "locale" text, "skip" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" real );
SELECT MAX("pa") FROM "round_robin_standings" WHERE "stolen_ends"=5;
1-15597975-2
What position is the player whose first year is 2014
CREATE TABLE "current_clubs_2014_season" ( "club" text, "position_in_2013" text, "first_season" real, "first_season_of_current_spell" real, "number_of_seasons_in_superettan" real, "number_of_seasons_in_second_tier" text );
SELECT "position_in_2013" FROM "current_clubs_2014_season" WHERE "first_season"=2014;
1-1560673-1
What was the players position in 2013 who had 29 seasons in the second tier
CREATE TABLE "current_clubs_2014_season" ( "club" text, "position_in_2013" text, "first_season" real, "first_season_of_current_spell" real, "number_of_seasons_in_superettan" real, "number_of_seasons_in_second_tier" text );
SELECT "position_in_2013" FROM "current_clubs_2014_season" WHERE "number_of_seasons_in_second_tier"='29';
1-1560673-1
What was the first season for Syrianska FC
CREATE TABLE "current_clubs_2014_season" ( "club" text, "position_in_2013" text, "first_season" real, "first_season_of_current_spell" real, "number_of_seasons_in_superettan" real, "number_of_seasons_in_second_tier" text );
SELECT "first_season" FROM "current_clubs_2014_season" WHERE "club"='Syrianska FC';
1-1560673-1
What was the earliest season recorded for any team
CREATE TABLE "current_clubs_2014_season" ( "club" text, "position_in_2013" text, "first_season" real, "first_season_of_current_spell" real, "number_of_seasons_in_superettan" real, "number_of_seasons_in_second_tier" text );
SELECT MIN("first_season") FROM "current_clubs_2014_season";
1-1560673-1
Name the number of points for october 11
CREATE TABLE "schedule" ( "week" real, "date" text, "result" text, "record" text, "opponent" text, "points_for" real, "points_against" real, "first_downs" real, "attendance" real );
SELECT MAX("points_for") FROM "schedule" WHERE "date"='October 11';
1-15607589-2
Name the date for week 9
CREATE TABLE "schedule" ( "week" real, "date" text, "result" text, "record" text, "opponent" text, "points_for" real, "points_against" real, "first_downs" real, "attendance" real );
SELECT "date" FROM "schedule" WHERE "week"=9;
1-15607589-2
Name the points against for november 7
CREATE TABLE "schedule" ( "week" real, "date" text, "result" text, "record" text, "opponent" text, "points_for" real, "points_against" real, "first_downs" real, "attendance" real );
SELECT "points_against" FROM "schedule" WHERE "date"='November 7';
1-15607589-2
Name the points against for november 14
CREATE TABLE "schedule" ( "week" real, "date" text, "result" text, "record" text, "opponent" text, "points_for" real, "points_against" real, "first_downs" real, "attendance" real );
SELECT "points_against" FROM "schedule" WHERE "date"='November 14';
1-15607589-2
Name the first downs for points against being 0
CREATE TABLE "schedule" ( "week" real, "date" text, "result" text, "record" text, "opponent" text, "points_for" real, "points_against" real, "first_downs" real, "attendance" real );
SELECT "first_downs" FROM "schedule" WHERE "points_against"=0;
1-15607589-2
Name the record for new york giants
CREATE TABLE "schedule" ( "week" real, "date" text, "result" text, "record" text, "opponent" text, "points_for" real, "points_against" real, "first_downs" real, "attendance" real );
SELECT "record" FROM "schedule" WHERE "opponent"='New York Giants';
1-15607589-2
Name the least purse for 2011
CREATE TABLE "winners" ( "year" real, "dates" text, "champion" text, "country" text, "score" text, "margin_of_victory" text, "tournament_location" text, "purse_us" real, "winners_share" real );
SELECT MIN("purse_us") FROM "winners" WHERE "year"=2011;
1-15618241-1
Name the number of wheel arrangement when class is d14
CREATE TABLE "lner" ( "class" text, "wheel_arrangement" text, "railway" text, "number_at_doncaster" real, "number_at_pyewipe" real, "number_at_march" real );
SELECT COUNT("wheel_arrangement") FROM "lner" WHERE "class"='D14';
1-15608800-2
Name the most number of pyewipe
CREATE TABLE "lner" ( "class" text, "wheel_arrangement" text, "railway" text, "number_at_doncaster" real, "number_at_pyewipe" real, "number_at_march" real );
SELECT MAX("number_at_pyewipe") FROM "lner";
1-15608800-2
Name the number at march when class is j66
CREATE TABLE "lner" ( "class" text, "wheel_arrangement" text, "railway" text, "number_at_doncaster" real, "number_at_pyewipe" real, "number_at_march" real );
SELECT "number_at_march" FROM "lner" WHERE "class"='J66';
1-15608800-2
Name the railway when class is j19
CREATE TABLE "lner" ( "class" text, "wheel_arrangement" text, "railway" text, "number_at_doncaster" real, "number_at_pyewipe" real, "number_at_march" real );
SELECT "railway" FROM "lner" WHERE "class"='J19';
1-15608800-2
Name the railway when class is j15
CREATE TABLE "lner" ( "class" text, "wheel_arrangement" text, "railway" text, "number_at_doncaster" real, "number_at_pyewipe" real, "number_at_march" real );
SELECT "railway" FROM "lner" WHERE "class"='J15';
1-15608800-2
Name the years in orlando for penn state
CREATE TABLE "a" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "years_in_orlando" FROM "a" WHERE "school_club_team"='Penn State';
1-15621965-1
Name the nationality of number 9
CREATE TABLE "a" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "nationality" FROM "a" WHERE "no"=9;
1-15621965-1
Name the years in orlando for forward
CREATE TABLE "k" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "years_in_orlando" FROM "k" WHERE "position"='Forward';
1-15621965-10
Name the number of players from arizona
CREATE TABLE "k" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT COUNT("player") FROM "k" WHERE "school_club_team"='Arizona';
1-15621965-10
Name the years in orlando that the player from concord hs was in
CREATE TABLE "k" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "years_in_orlando" FROM "k" WHERE "school_club_team"='Concord HS';
1-15621965-10
Name the number of players for louisiana state
CREATE TABLE "o" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT COUNT("player") FROM "o" WHERE "school_club_team"='Louisiana State';
1-15621965-14
Name the school/club team for kevin ollie
CREATE TABLE "o" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "school_club_team" FROM "o" WHERE "player"='Kevin Ollie';
1-15621965-14
Name the school/club team for jawann oldham
CREATE TABLE "o" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "school_club_team" FROM "o" WHERE "player"='Jawann Oldham';
1-15621965-14
Name the player for seattle
CREATE TABLE "o" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "player" FROM "o" WHERE "school_club_team"='Seattle';
1-15621965-14
What is the nationality of th player who's school is Clemson?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "nationality" FROM "r" WHERE "school_club_team"='Clemson';
1-15621965-16
What years did the player who's school is Clemson spend in Orlando?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "years_in_orlando" FROM "r" WHERE "school_club_team"='Clemson';
1-15621965-16
What is the number of the player who attended Delta State?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT MAX("no") FROM "r" WHERE "school_club_team"='Delta State';
1-15621965-16
Who plays the position of forward-center?
CREATE TABLE "b" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "player" FROM "b" WHERE "position"='Forward-Center';
1-15621965-2
During what years did Chris Corchiani play in Orlando?
CREATE TABLE "c" ( "player" text, "no" real, "nationality" text, "position" text, "years_in_orlando" text, "school_club_team" text );
SELECT "years_in_orlando" FROM "c" WHERE "player"='Chris Corchiani';
1-15621965-3
When the face value is 42¢, what was the issue's date?
CREATE TABLE "the_sheets" ( "ecosystem" text, "date_of_issue" text, "place_of_issue" text, "no_stamps_in_sheet" real, "face_value" text, "printer" text );
SELECT "date_of_issue" FROM "the_sheets" WHERE "face_value"='42¢';
1-15635768-1
Which location has the ecosystem of kelp forest?
CREATE TABLE "the_sheets" ( "ecosystem" text, "date_of_issue" text, "place_of_issue" text, "no_stamps_in_sheet" real, "face_value" text, "printer" text );
SELECT "place_of_issue" FROM "the_sheets" WHERE "ecosystem"='Kelp Forest';
1-15635768-1
How many stamps have a face value of 37¢ and were printed in the banknote corporation of america?
CREATE TABLE "the_sheets" ( "ecosystem" text, "date_of_issue" text, "place_of_issue" text, "no_stamps_in_sheet" real, "face_value" text, "printer" text );
SELECT COUNT("no_stamps_in_sheet") FROM "the_sheets" WHERE "face_value"='37¢' AND "printer"='Banknote Corporation of America';
1-15635768-1
Who was the printer of Estes Park, Colorado?
CREATE TABLE "the_sheets" ( "ecosystem" text, "date_of_issue" text, "place_of_issue" text, "no_stamps_in_sheet" real, "face_value" text, "printer" text );
SELECT "printer" FROM "the_sheets" WHERE "place_of_issue"='Estes Park, Colorado';
1-15635768-1
The stamp was 39¢, who was the printer?
CREATE TABLE "the_sheets" ( "ecosystem" text, "date_of_issue" text, "place_of_issue" text, "no_stamps_in_sheet" real, "face_value" text, "printer" text );
SELECT "printer" FROM "the_sheets" WHERE "face_value"='39¢';
1-15635768-1
What are values of attendance for the El Paso, TX location?
CREATE TABLE "summary_table" ( "num" real, "season" real, "bowl_game" text, "result" text, "opponent" text, "stadium" text, "location" text, "attendance" text );
SELECT "attendance" FROM "summary_table" WHERE "location"='El Paso, TX';
1-15647838-3
How many values for result correspond to attendance of 74,111?
CREATE TABLE "summary_table" ( "num" real, "season" real, "bowl_game" text, "result" text, "opponent" text, "stadium" text, "location" text, "attendance" text );
SELECT COUNT("result") FROM "summary_table" WHERE "attendance"='74,111';
1-15647838-3
How many locations have the Sun Life Stadium?
CREATE TABLE "summary_table" ( "num" real, "season" real, "bowl_game" text, "result" text, "opponent" text, "stadium" text, "location" text, "attendance" text );
SELECT COUNT("location") FROM "summary_table" WHERE "stadium"='Sun Life Stadium';
1-15647838-3
What is the highest season for a bowl game of the 1993 Independence Bowl?
CREATE TABLE "summary_table" ( "num" real, "season" real, "bowl_game" text, "result" text, "opponent" text, "stadium" text, "location" text, "attendance" text );
SELECT MAX("season") FROM "summary_table" WHERE "bowl_game"='1993 Independence Bowl';
1-15647838-3
What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?
CREATE TABLE "summary_table" ( "num" real, "season" real, "bowl_game" text, "result" text, "opponent" text, "stadium" text, "location" text, "attendance" text );
SELECT MIN("num") FROM "summary_table" WHERE "location"='Atlanta, GA' AND "opponent"='Georgia Bulldogs';
1-15647838-3
How many values for attendance correspond to the 1986 Peach Bowl?
CREATE TABLE "summary_table" ( "num" real, "season" real, "bowl_game" text, "result" text, "opponent" text, "stadium" text, "location" text, "attendance" text );
SELECT COUNT("attendance") FROM "summary_table" WHERE "bowl_game"='1986 Peach Bowl';
1-15647838-3
Who was the interview subject in the 2-86 issue?
CREATE TABLE "table1_1566848_7" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "interview_subject" FROM "table1_1566848_7" WHERE "date"='2-86';
1-1566848-7
Who were all the pictorials when the centerfold model was Rebekka Armstrong?
CREATE TABLE "table1_1566848_7" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT COUNT("pictorials") FROM "table1_1566848_7" WHERE "centerfold_model"='Rebekka Armstrong';
1-1566848-7
Who were the pictorials when the centerfold model was Ava Fabian?
CREATE TABLE "table1_1566848_7" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "pictorials" FROM "table1_1566848_7" WHERE "centerfold_model"='Ava Fabian';
1-1566848-7
Who was the interview subject when the centerfold model was Sherry Arnett?
CREATE TABLE "table1_1566848_7" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT COUNT("interview_subject") FROM "table1_1566848_7" WHERE "centerfold_model"='Sherry Arnett';
1-1566848-7
Who was the cover model in the 7-86 issue?
CREATE TABLE "table1_1566848_7" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "cover_model" FROM "table1_1566848_7" WHERE "date"='7-86';
1-1566848-7
What is the date of the issue where the pictorials is of Female s disk jockey?
CREATE TABLE "table1_1566848_7" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT COUNT("date") FROM "table1_1566848_7" WHERE "pictorials"='Female s disk jockey';
1-1566848-7
WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS?
CREATE TABLE "table1_1566852_3" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "cover_model" FROM "table1_1566852_3" WHERE "centerfold_model"='Shallan Meiers';
1-1566852-3
WHO WAS THE CENTERFOLD MODEL IN THE ISSUE WHERE OSCAR DE LA HOYA ANSWERED THE 20 QUESTIONS?
CREATE TABLE "table1_1566852_3" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "centerfold_model" FROM "table1_1566852_3" WHERE "20_questions"='Oscar de la Hoya';
1-1566852-3
IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT?
CREATE TABLE "table1_1566852_3" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "interview_subject" FROM "table1_1566852_3" WHERE "centerfold_model"='Nicole Narain';
1-1566852-3
IN THE ISSUE WHERE LENNY KRAVITZ ANSWERED THE 20 QUESTIONS, HOW MANY PICTORIALS WERE IN THE MAGAZINE?
CREATE TABLE "table1_1566852_3" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT COUNT("pictorials") FROM "table1_1566852_3" WHERE "20_questions"='Lenny Kravitz';
1-1566852-3
IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?
CREATE TABLE "table1_1566852_3" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT COUNT("date") FROM "table1_1566852_3" WHERE "interview_subject"='Harrison Ford';
1-1566852-3
Who was featured in 20 questions when the subject of the interview was Mike Piazza?
CREATE TABLE "2003" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "20_questions" FROM "2003" WHERE "interview_subject"='Mike Piazza';
1-1566852-4
Who was featured in 20 questions on 4-03?
CREATE TABLE "2003" ( "date" text, "cover_model" text, "centerfold_model" text, "interview_subject" text, "20_questions" text, "pictorials" text );
SELECT "20_questions" FROM "2003" WHERE "date"='4-03';
1-1566852-4