question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What is the highest year with field reporter Steve Lyons?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play_announcer" text, "color_commentator" text, "s_field_reporter" text, "pregame_hosts" text, "pregame_analysts" text, "trophy_presentation" text );
SELECT MAX("year") FROM "2000s" WHERE "s_field_reporter"='Steve Lyons';
1-2941848-2
What is every pregame analyst with Chris Rose as trophy presenter?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play_announcer" text, "color_commentator" text, "s_field_reporter" text, "pregame_hosts" text, "pregame_analysts" text, "trophy_presentation" text );
SELECT "pregame_analysts" FROM "2000s" WHERE "trophy_presentation"='Chris Rose';
1-2941848-2
Who is every play-by-play announcer when Chris Rose is the trophy presenter?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play_announcer" text, "color_commentator" text, "s_field_reporter" text, "pregame_hosts" text, "pregame_analysts" text, "trophy_presentation" text );
SELECT "play_by_play_announcer" FROM "2000s" WHERE "trophy_presentation"='Chris Rose';
1-2941848-2
Who directed "I am Dick Pentameter!"?
CREATE TABLE "table1_29436178_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "directed_by" FROM "table1_29436178_1" WHERE "title"='\"I Am Dick Pentameter!\"';
1-29436178-1
How many episodes are titled "dick's big giant headache (part 1)"?
CREATE TABLE "table1_29436178_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("no_in_season") FROM "table1_29436178_1" WHERE "title"='\"Dick''s Big Giant Headache (Part 1)\"';
1-29436178-1
What is the episode number od "Dick Vs. Strudwick"?
CREATE TABLE "table1_29436178_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT MAX("no_in_series") FROM "table1_29436178_1" WHERE "title"='\"Dick vs. Strudwick\"';
1-29436178-1
How many teams came in fourth when Otsuka Pharmaceuticals won?
CREATE TABLE "japan_football_league_jfl_1999_2013" ( "season" real, "winner" text, "runner_up" text, "third_place" text, "fourth_place" text );
SELECT COUNT("fourth_place") FROM "japan_football_league_jfl_1999_2013" WHERE "winner"='Otsuka Pharmaceuticals';
1-29446183-2
Who was the runner up the season that Sagawa Express came in fourth?
CREATE TABLE "japan_football_league_jfl_1999_2013" ( "season" real, "winner" text, "runner_up" text, "third_place" text, "fourth_place" text );
SELECT "runner_up" FROM "japan_football_league_jfl_1999_2013" WHERE "fourth_place"='Sagawa Express';
1-29446183-2
How many seasons did Otsuka Pharmaceuticals come in third?
CREATE TABLE "japan_football_league_jfl_1999_2013" ( "season" real, "winner" text, "runner_up" text, "third_place" text, "fourth_place" text );
SELECT COUNT("season") FROM "japan_football_league_jfl_1999_2013" WHERE "third_place"='Otsuka Pharmaceuticals';
1-29446183-2
How many episodes were written by Gregg Mettler?
CREATE TABLE "table1_29436238_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("no_in_series") FROM "table1_29436238_1" WHERE "written_by"='Gregg Mettler';
1-29436238-1
What date did episode 4 in the season originally air?
CREATE TABLE "table1_29436238_1" ( "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_29436238_1" WHERE "no_in_season"=4;
1-29436238-1
What date did "the big giant head returns again (part 1)" originally air?
CREATE TABLE "table1_29436238_1" ( "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_29436238_1" WHERE "title"='\"The Big Giant Head Returns Again (Part 1)\"';
1-29436238-1
What is the production code when the title is "you don't know dick"?
CREATE TABLE "table1_29436311_1" ( "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("production_code") FROM "table1_29436311_1" WHERE "title"='\"You Don''t Know Dick\"';
1-29436311-1
Who are all the major users of the Gordon Close-Support Weapon System?
CREATE TABLE "table1_29474407_11" ( "name_designation" text, "year_of_intro" real, "country_of_origin" text, "primary_cartridge" text, "major_users" text );
SELECT "major_users" FROM "table1_29474407_11" WHERE "name_designation"='Gordon Close-Support Weapon System';
1-29474407-11
What country made the Flieger-Doppelpistole 1919?
CREATE TABLE "table1_29474407_11" ( "name_designation" text, "year_of_intro" real, "country_of_origin" text, "primary_cartridge" text, "major_users" text );
SELECT "country_of_origin" FROM "table1_29474407_11" WHERE "name_designation"='Flieger-Doppelpistole 1919';
1-29474407-11
How many years of introduction does the Neal Submachine Gun have?
CREATE TABLE "table1_29474407_11" ( "name_designation" text, "year_of_intro" real, "country_of_origin" text, "primary_cartridge" text, "major_users" text );
SELECT COUNT("year_of_intro") FROM "table1_29474407_11" WHERE "name_designation"='Neal submachine gun';
1-29474407-11
Who are the major users from Australia?
CREATE TABLE "table1_29474407_11" ( "name_designation" text, "year_of_intro" real, "country_of_origin" text, "primary_cartridge" text, "major_users" text );
SELECT "major_users" FROM "table1_29474407_11" WHERE "country_of_origin"='Australia';
1-29474407-11
Who are all the major users of the Saturn Machine Pistol?
CREATE TABLE "table1_29474407_11" ( "name_designation" text, "year_of_intro" real, "country_of_origin" text, "primary_cartridge" text, "major_users" text );
SELECT "major_users" FROM "table1_29474407_11" WHERE "name_designation"='Saturn machine pistol';
1-29474407-11
in how many of the arkansas colomel the county was pope
CREATE TABLE "arkansas_militia_act_of_1843" ( "division" text, "brigade" text, "regiment" text, "colonel" text, "county" text );
SELECT COUNT("colonel") FROM "arkansas_militia_act_of_1843" WHERE "county"='Pope';
1-29458735-5
what is the name of the coloneo of the 35th regiment
CREATE TABLE "arkansas_militia_act_of_1843" ( "division" text, "brigade" text, "regiment" text, "colonel" text, "county" text );
SELECT "colonel" FROM "arkansas_militia_act_of_1843" WHERE "regiment"='35th Regiment';
1-29458735-5
which regiment was in the Fulton County
CREATE TABLE "arkansas_militia_act_of_1843" ( "division" text, "brigade" text, "regiment" text, "colonel" text, "county" text );
SELECT "regiment" FROM "arkansas_militia_act_of_1843" WHERE "county"='Fulton';
1-29458735-5
what is he name of the county where the 2nd division and the 41st regiment was
CREATE TABLE "arkansas_militia_act_of_1843" ( "division" text, "brigade" text, "regiment" text, "colonel" text, "county" text );
SELECT "county" FROM "arkansas_militia_act_of_1843" WHERE "division"='2nd Division' AND "regiment"='41st Regiment';
1-29458735-5
which regimen was in the arkansas county
CREATE TABLE "arkansas_militia_act_of_1843" ( "division" text, "brigade" text, "regiment" text, "colonel" text, "county" text );
SELECT "regiment" FROM "arkansas_militia_act_of_1843" WHERE "county"='Arkansas';
1-29458735-5
When nicole dubuc duane capizzi is the writer who is the director?
CREATE TABLE "table1_29475589_3" ( "no" real, "num" real, "episode_title" text, "director" text, "writer_s" text, "u_s_original_airdate" text, "prod_code" real );
SELECT "director" FROM "table1_29475589_3" WHERE "writer_s"='Nicole Dubuc Duane Capizzi';
1-29475589-3
When "speed metal" is the episode title what is the lowest number?
CREATE TABLE "table1_29475589_3" ( "no" real, "num" real, "episode_title" text, "director" text, "writer_s" text, "u_s_original_airdate" text, "prod_code" real );
SELECT MIN("no") FROM "table1_29475589_3" WHERE "episode_title"='\"Speed Metal\"';
1-29475589-3
When 22 is the number what is the episode title?
CREATE TABLE "table1_29475589_3" ( "no" real, "num" real, "episode_title" text, "director" text, "writer_s" text, "u_s_original_airdate" text, "prod_code" real );
SELECT "episode_title" FROM "table1_29475589_3" WHERE "no"=22;
1-29475589-3
When the # is 9 what is the U.S original airdate?
CREATE TABLE "table1_29475589_5" ( "no" real, "num" real, "episode_title" text, "director" text, "writer_s" text, "u_s_original_airdate" text, "prod_code" real );
SELECT "u_s_original_airdate" FROM "table1_29475589_5" WHERE "num"=9;
1-29475589-5
how many representatives from hanover twp were first elected in 2008
CREATE TABLE "house_of_representatives" ( "district" real, "representative" text, "party" text, "residence" text, "first_elected" text, "term_limited" real );
SELECT COUNT("representative") FROM "house_of_representatives" WHERE "first_elected"='2008' AND "residence"='Hanover Twp';
1-29486189-4
when was al landis first elected
CREATE TABLE "house_of_representatives" ( "district" real, "representative" text, "party" text, "residence" text, "first_elected" text, "term_limited" real );
SELECT "first_elected" FROM "house_of_representatives" WHERE "representative"='Al Landis';
1-29486189-4
which representative is from willowick
CREATE TABLE "house_of_representatives" ( "district" real, "representative" text, "party" text, "residence" text, "first_elected" text, "term_limited" real );
SELECT "representative" FROM "house_of_representatives" WHERE "residence"='Willowick';
1-29486189-4
which district does andy thompson represent
CREATE TABLE "house_of_representatives" ( "district" real, "representative" text, "party" text, "residence" text, "first_elected" text, "term_limited" real );
SELECT COUNT("district") FROM "house_of_representatives" WHERE "representative"='Andy Thompson';
1-29486189-4
which party is the newark representative from
CREATE TABLE "house_of_representatives" ( "district" real, "representative" text, "party" text, "residence" text, "first_elected" text, "term_limited" real );
SELECT "party" FROM "house_of_representatives" WHERE "residence"='Newark';
1-29486189-4
who is beavercreek's representative
CREATE TABLE "house_of_representatives" ( "district" real, "representative" text, "party" text, "residence" text, "first_elected" text, "term_limited" real );
SELECT "representative" FROM "house_of_representatives" WHERE "residence"='Beavercreek';
1-29486189-4
What was Reid's rolex ranking in the year that her money list rank was 3?
CREATE TABLE "ladies_european_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "3rd" real, "top_10s" real, "best_finish" text, "earnings" text, "money_list_rank" text, "scoring_average" text, "scoring_rank" text, "rolex_ranking" real );
SELECT MAX("rolex_ranking") FROM "ladies_european_tour_career_summary" WHERE "money_list_rank"='3';
1-29506171-2
What was the money list rank for Reid in the year that she had 0 top 10s?
CREATE TABLE "ladies_european_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "3rd" real, "top_10s" real, "best_finish" text, "earnings" text, "money_list_rank" text, "scoring_average" text, "scoring_rank" text, "rolex_ranking" real );
SELECT "money_list_rank" FROM "ladies_european_tour_career_summary" WHERE "top_10s"=0;
1-29506171-2
How many cuts did Reid make in the year when her earnings were n/a?
CREATE TABLE "ladies_european_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "3rd" real, "top_10s" real, "best_finish" text, "earnings" text, "money_list_rank" text, "scoring_average" text, "scoring_rank" text, "rolex_ranking" real );
SELECT MAX("cuts_made") FROM "ladies_european_tour_career_summary" WHERE "earnings"='n/a';
1-29506171-2
In what year were Reid's earnings €4,050 1?
CREATE TABLE "ladies_european_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "3rd" real, "top_10s" real, "best_finish" text, "earnings" text, "money_list_rank" text, "scoring_average" text, "scoring_rank" text, "rolex_ranking" real );
SELECT MIN("year") FROM "ladies_european_tour_career_summary" WHERE "earnings"='4,050 1';
1-29506171-2
What is the best finish for the player whose earnings was $421050?
CREATE TABLE "2005_results" ( "player" text, "starts" real, "cuts_made" real, "best_finish" text, "money_list_rank" real, "earnings" real );
SELECT "best_finish" FROM "2005_results" WHERE "earnings"=421050;
1-29504351-2
What is the maximum start record for player of Jeff Brehaut?
CREATE TABLE "2005_results" ( "player" text, "starts" real, "cuts_made" real, "best_finish" text, "money_list_rank" real, "earnings" real );
SELECT MAX("starts") FROM "2005_results" WHERE "player"='Jeff Brehaut';
1-29504351-2
What is the best finish record for Carl Paulson?
CREATE TABLE "2005_results" ( "player" text, "starts" real, "cuts_made" real, "best_finish" text, "money_list_rank" real, "earnings" real );
SELECT "best_finish" FROM "2005_results" WHERE "player"='Carl Paulson';
1-29504351-2
What is the best finish record for Sean O'hair?
CREATE TABLE "2005_results" ( "player" text, "starts" real, "cuts_made" real, "best_finish" text, "money_list_rank" real, "earnings" real );
SELECT "best_finish" FROM "2005_results" WHERE "player"='Sean O''Hair';
1-29504351-2
What is the money list rank for player Doug Barron?
CREATE TABLE "2005_results" ( "player" text, "starts" real, "cuts_made" real, "best_finish" text, "money_list_rank" real, "earnings" real );
SELECT MAX("money_list_rank") FROM "2005_results" WHERE "player"='Doug Barron';
1-29504351-2
How many athletes were named federico muller?
CREATE TABLE "table1_29521180_35" ( "athlete" text, "event" text, "elimination_poule" text, "round_of_16" text, "quarterfinals" text, "semifinals" text, "final" text );
SELECT COUNT("quarterfinals") FROM "table1_29521180_35" WHERE "athlete"='Federico Muller';
1-29521180-35
What was the round of 16 result for felipe saucedo?
CREATE TABLE "table1_29521180_35" ( "athlete" text, "event" text, "elimination_poule" text, "round_of_16" text, "quarterfinals" text, "semifinals" text, "final" text );
SELECT "round_of_16" FROM "table1_29521180_35" WHERE "athlete"='Felipe Saucedo';
1-29521180-35
The Ring of Steel possesses what ISBN?
CREATE TABLE "original_audiobooks" ( "num" real, "title" text, "author" text, "doctor" text, "featuring" text, "read_by" text, "published" text, "isbn" text );
SELECT "isbn" FROM "original_audiobooks" WHERE "title"='The Ring Of Steel';
1-2950964-5
THe audio book with ISBN 978-1-4084-6879-1 is read by whom?
CREATE TABLE "original_audiobooks" ( "num" real, "title" text, "author" text, "doctor" text, "featuring" text, "read_by" text, "published" text, "isbn" text );
SELECT "read_by" FROM "original_audiobooks" WHERE "isbn"='ISBN 978-1-4084-6879-1';
1-2950964-5
The Empty House audiobook has what #?
CREATE TABLE "original_audiobooks" ( "num" real, "title" text, "author" text, "doctor" text, "featuring" text, "read_by" text, "published" text, "isbn" text );
SELECT "num" FROM "original_audiobooks" WHERE "title"='The Empty House';
1-2950964-5
How many people directed episode 2?
CREATE TABLE "table1_29545336_2" ( "no" real, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT COUNT("directed_by") FROM "table1_29545336_2" WHERE "no"=2;
1-29545336-2
What date did "stanley" originally air?
CREATE TABLE "table1_29545336_2" ( "no" real, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_29545336_2" WHERE "title"='\"Stanley\"';
1-29545336-2
What is the title of the episode that featured Abbud Siddiqui?
CREATE TABLE "table1_29545336_2" ( "no" real, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "title" FROM "table1_29545336_2" WHERE "featured_character_s"='Abbud Siddiqui';
1-29545336-2
How many million U.S. viewers was written by Matt Pelfrey?
CREATE TABLE "table1_29545336_2" ( "no" real, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "u_s_viewers_millions" FROM "table1_29545336_2" WHERE "written_by"='Matt Pelfrey';
1-29545336-2
When 8.9% is the electricity reduction percentage how many sets of tonnes of co2 saved is there?
CREATE TABLE "results" ( "year" text, "universities" real, "no_of_students_signed_up" real, "pct_electricity_reduction" text, "tonnes_of_co2_saved" real, "saved" text );
SELECT COUNT("tonnes_of_co2_saved") FROM "results" WHERE "pct_electricity_reduction"='8.9%';
1-29538735-1
When 1522 is the tonnes of co2 saved what is the year?
CREATE TABLE "results" ( "year" text, "universities" real, "no_of_students_signed_up" real, "pct_electricity_reduction" text, "tonnes_of_co2_saved" real, "saved" text );
SELECT "year" FROM "results" WHERE "tonnes_of_co2_saved"=1522;
1-29538735-1
When £337,000 is £ saved what is the percentage of electricity reduction?
CREATE TABLE "results" ( "year" text, "universities" real, "no_of_students_signed_up" real, "pct_electricity_reduction" text, "tonnes_of_co2_saved" real, "saved" text );
SELECT "pct_electricity_reduction" FROM "results" WHERE "saved"='£337,000';
1-29538735-1
When 8.9% is the electricity reduction percentage what is the £ saved?
CREATE TABLE "results" ( "year" text, "universities" real, "no_of_students_signed_up" real, "pct_electricity_reduction" text, "tonnes_of_co2_saved" real, "saved" text );
SELECT "saved" FROM "results" WHERE "pct_electricity_reduction"='8.9%';
1-29538735-1
When 10% is the percentage of electricity reduction how many sets of universities are there?
CREATE TABLE "results" ( "year" text, "universities" real, "no_of_students_signed_up" real, "pct_electricity_reduction" text, "tonnes_of_co2_saved" real, "saved" text );
SELECT COUNT("universities") FROM "results" WHERE "pct_electricity_reduction"='10%';
1-29538735-1
What is maximum loss record when the pa record is 47?
CREATE TABLE "asham_black_group" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("l") FROM "asham_black_group" WHERE "pa"=47;
1-29545993-3
What is the minimum ends lost record when the stolen ends records is 6 and the loss record is bigger than 5.0?
CREATE TABLE "asham_black_group" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("ends_lost") FROM "asham_black_group" WHERE "stolen_ends"=6 AND "l">5.0;
1-29545993-3
What is the minimum stolen ends record where the pa record is 40?
CREATE TABLE "asham_black_group" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("stolen_ends") FROM "asham_black_group" WHERE "pa"=40;
1-29545993-3
When 39 is the amount of ends won who is the skip (club)?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "skip_club" FROM "standings" WHERE "ends_won"=39;
1-29542269-2
When nicole backe (nanaimo curling club) is the skip (club) how many sets of w's are there?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT COUNT("w") FROM "standings" WHERE "skip_club"='Nicole Backe (Nanaimo Curling Club)';
1-29542269-2
When 36 is the amount of ends won how many sets of pf's are there?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT COUNT("pf") FROM "standings" WHERE "ends_won"=36;
1-29542269-2
What is the lowest overall amount of w's?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("w") FROM "standings";
1-29542269-2
What is the highest L of the tournament?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("l") FROM "standings";
1-29542147-2
What is the highest W of the 0 L?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("w") FROM "standings" WHERE "l"=0;
1-29542147-2
Name the least pa for w being 2
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("pa") FROM "standings" WHERE "w"=2;
1-29546142-2
Name the least ends lost for joëlle belley (glenmore)
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("ends_lost") FROM "standings" WHERE "skip_club"='Joëlle Belley (Glenmore)';
1-29546142-2
Which skip (club) had 28 PA?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "skip_club" FROM "standings" WHERE "pa"=28;
1-29546030-2
What is the most amount of stolen ends for a skip with 1 W?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("stolen_ends") FROM "standings" WHERE "w"=1;
1-29546030-2
Which skip (club) had 31 PA and 9 blank ends?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "skip_club" FROM "standings" WHERE "pa"=31 AND "blank_ends"=9;
1-29546030-2
What is the least amount of blank ends for a skip who has 44 PF?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("blank_ends") FROM "standings" WHERE "pf"=44;
1-29546030-2
How many high points occur with the team Umass?
CREATE TABLE "schedule" ( "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_points") FROM "schedule" WHERE "team"='UMass';
1-29556461-9
When la salle is the team who has the highest amount of points?
CREATE TABLE "schedule" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "schedule" WHERE "team"='La Salle';
1-29556461-8
When allen/moore/wyatt – 4 have the highest amount of assists what is the highest game?
CREATE TABLE "schedule" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT MAX("game") FROM "schedule" WHERE "high_assists"='Allen/Moore/Wyatt – 4';
1-29556461-8
When dayton is the team what is the record?
CREATE TABLE "schedule" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "schedule" WHERE "team"='Dayton';
1-29556461-8
What the title of the song when the result is to the live shows?
CREATE TABLE "2010" ( "episode" text, "theme_date" text, "song_title" text, "original_performer" text, "result_placement" text );
SELECT "song_title" FROM "2010" WHERE "result_placement"='to the Live Shows';
1-29547777-1
What is the episode when the original performaer is diana ross?
CREATE TABLE "2010" ( "episode" text, "theme_date" text, "song_title" text, "original_performer" text, "result_placement" text );
SELECT "episode" FROM "2010" WHERE "original_performer"='Diana Ross';
1-29547777-1
Who is the original performer when the episode is casting?
CREATE TABLE "2010" ( "episode" text, "theme_date" text, "song_title" text, "original_performer" text, "result_placement" text );
SELECT "original_performer" FROM "2010" WHERE "episode"='Casting';
1-29547777-1
What is the pa listed when the ends won is 21?
CREATE TABLE "standings_pool_b" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("pa") FROM "standings_pool_b" WHERE "ends_won"=21;
1-29546218-3
How many times is there an entry in stolen ends when skip (club) is listed as debbie folk (nutana)?
CREATE TABLE "standings_pool_b" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT COUNT("stolen_ends") FROM "standings_pool_b" WHERE "skip_club"='Debbie Folk (Nutana)';
1-29546218-3
What is the total mumber of skip (club) entries when the pf is 40?
CREATE TABLE "standings_pool_b" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT COUNT("skip_club") FROM "standings_pool_b" WHERE "pf"=40;
1-29546218-3
What is the number of ends won entries when the skip (club) is chantelle eberle (tartan)?
CREATE TABLE "standings_pool_b" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT COUNT("ends_won") FROM "standings_pool_b" WHERE "skip_club"='Chantelle Eberle (Tartan)';
1-29546218-3
What horse had a starting price of 66/1?
CREATE TABLE "finishing_order" ( "position" text, "name" text, "jockey" text, "age" real, "weight_st_lb" text, "starting_price" text, "distance" text );
SELECT "name" FROM "finishing_order" WHERE "starting_price"='66/1';
1-29562161-1
Who is listed under skip (club) when the ends won is 43?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "skip_club" FROM "standings" WHERE "ends_won"=43;
1-29565120-2
What is the L when the skip club is Jeff Richard (kelowna)?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("l") FROM "standings" WHERE "skip_club"='Jeff Richard (Kelowna)';
1-29565120-2
What is the L when the W is 4?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("l") FROM "standings" WHERE "w"=4;
1-29565120-2
What is the largest number in L?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("l") FROM "standings";
1-29565601-2
What is the PA when the PF is 73?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("pa") FROM "standings" WHERE "pf"=73;
1-29565601-2
What is the blank ends record when the win record is higher than 6.0?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "blank_ends" FROM "standings" WHERE "w">6.0;
1-29565673-2
What is the win record where the pa record is 62?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "w" FROM "standings" WHERE "pa"=62;
1-29565673-2
What is listed under L when the stolen ends is 1?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT "l" FROM "standings" WHERE "stolen_ends"=1;
1-29565858-2
What is listed under W when the ends won is 22?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MIN("w") FROM "standings" WHERE "ends_won"=22;
1-29565858-2
What is listed under L when the ends won is 21?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT MAX("l") FROM "standings" WHERE "ends_won"=21;
1-29565858-2
How many rank entries are there when new points are 1155?
CREATE TABLE "men_s_singles" ( "seed" real, "rank" real, "player" text, "points" real, "points_defending" real, "points_won" real, "new_points" real, "status" text );
SELECT COUNT("rank") FROM "men_s_singles" WHERE "new_points"=1155;
1-29572583-19
What is listed in new points when status is second round lost to xavier malisse?
CREATE TABLE "men_s_singles" ( "seed" real, "rank" real, "player" text, "points" real, "points_defending" real, "points_won" real, "new_points" real, "status" text );
SELECT MIN("new_points") FROM "men_s_singles" WHERE "status"='Second round lost to Xavier Malisse';
1-29572583-19
What is the status when points is 4595?
CREATE TABLE "men_s_singles" ( "seed" real, "rank" real, "player" text, "points" real, "points_defending" real, "points_won" real, "new_points" real, "status" text );
SELECT "status" FROM "men_s_singles" WHERE "points"=4595;
1-29572583-19
What is the status when the rank is 2?
CREATE TABLE "men_s_singles" ( "seed" real, "rank" real, "player" text, "points" real, "points_defending" real, "points_won" real, "new_points" real, "status" text );
SELECT "status" FROM "men_s_singles" WHERE "rank"=2;
1-29572583-19
How many points are listed when the rank is 17?
CREATE TABLE "men_s_singles" ( "seed" real, "rank" real, "player" text, "points" real, "points_defending" real, "points_won" real, "new_points" real, "status" text );
SELECT MAX("points") FROM "men_s_singles" WHERE "rank"=17;
1-29572583-19
How many seed entries are there when points are 2175?
CREATE TABLE "men_s_singles" ( "seed" real, "rank" real, "player" text, "points" real, "points_defending" real, "points_won" real, "new_points" real, "status" text );
SELECT COUNT("seed") FROM "men_s_singles" WHERE "points"=2175;
1-29572583-19
How many clubs remained when there were 4 winners from the previous round?
CREATE TABLE "teams" ( "round" text, "clubs_remaining" real, "clubs_involved" real, "winners_from_previous_round" real, "new_entries_this_round" text, "leagues_entering_at_this_round" text );
SELECT "clubs_remaining" FROM "teams" WHERE "winners_from_previous_round"=4;
1-29566686-1