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 numeral where the English name is Florin?
CREATE TABLE "table1_1682865_1" ( "english_name" text, "irish_name" text, "numeral" text, "reverse" text, "introduction" text, "withdrawal" text, "1_fraction" text );
SELECT "numeral" FROM "table1_1682865_1" WHERE "english_name"='Florin';
1-1682865-1
What is the £1 fraction when the reverse is hare?
CREATE TABLE "table1_1682865_1" ( "english_name" text, "irish_name" text, "numeral" text, "reverse" text, "introduction" text, "withdrawal" text, "1_fraction" text );
SELECT "1_fraction" FROM "table1_1682865_1" WHERE "reverse"='Hare';
1-1682865-1
What date was the 6d introduced?
CREATE TABLE "table1_1682865_1" ( "english_name" text, "irish_name" text, "numeral" text, "reverse" text, "introduction" text, "withdrawal" text, "1_fraction" text );
SELECT "introduction" FROM "table1_1682865_1" WHERE "numeral"='6d';
1-1682865-1
What is the Irish name for the £1 fraction of 1/240?
CREATE TABLE "table1_1682865_1" ( "english_name" text, "irish_name" text, "numeral" text, "reverse" text, "introduction" text, "withdrawal" text, "1_fraction" text );
SELECT "irish_name" FROM "table1_1682865_1" WHERE "1_fraction"='1/240';
1-1682865-1
What is the reverse when the £1 fraction is 1/480?
CREATE TABLE "table1_1682865_1" ( "english_name" text, "irish_name" text, "numeral" text, "reverse" text, "introduction" text, "withdrawal" text, "1_fraction" text );
SELECT "reverse" FROM "table1_1682865_1" WHERE "1_fraction"='1/480';
1-1682865-1
What is the largest number of seats won?
CREATE TABLE "election_results" ( "election" real, "candidates_fielded" real, "num_of_seats_won" real, "total_votes" real, "pct_of_popular_vote" text, "place" text );
SELECT MAX("num_of_seats_won") FROM "election_results";
1-168482-1
How many percentages are listed for the election in 1983?
CREATE TABLE "election_results" ( "election" real, "candidates_fielded" real, "num_of_seats_won" real, "total_votes" real, "pct_of_popular_vote" text, "place" text );
SELECT COUNT("pct_of_popular_vote") FROM "election_results" WHERE "election"=1983;
1-168482-1
What place did the party finish in the year when they earned 0.86% of the vote?
CREATE TABLE "election_results" ( "election" real, "candidates_fielded" real, "num_of_seats_won" real, "total_votes" real, "pct_of_popular_vote" text, "place" text );
SELECT "place" FROM "election_results" WHERE "pct_of_popular_vote"='0.86%';
1-168482-1
What is the NCBI Accession Number for the length of 5304bp/377aa?
CREATE TABLE "homologs" ( "species" text, "species_common_name" text, "ncbi_accession_number_m_rna_protein" text, "length_bp_aa" text, "protein_identity" text );
SELECT "ncbi_accession_number_m_rna_protein" FROM "homologs" WHERE "length_bp_aa"='5304bp/377aa';
1-16849531-2
What is the NCBI Accession Number of the Homo Sapiens species?
CREATE TABLE "homologs" ( "species" text, "species_common_name" text, "ncbi_accession_number_m_rna_protein" text, "length_bp_aa" text, "protein_identity" text );
SELECT "ncbi_accession_number_m_rna_protein" FROM "homologs" WHERE "species"='Homo sapiens';
1-16849531-2
What is the common name for the Felis Catus species?
CREATE TABLE "homologs" ( "species" text, "species_common_name" text, "ncbi_accession_number_m_rna_protein" text, "length_bp_aa" text, "protein_identity" text );
SELECT "species_common_name" FROM "homologs" WHERE "species"='Felis catus';
1-16849531-2
What is the species with the common name "mouse"?
CREATE TABLE "homologs" ( "species" text, "species_common_name" text, "ncbi_accession_number_m_rna_protein" text, "length_bp_aa" text, "protein_identity" text );
SELECT COUNT("species") FROM "homologs" WHERE "species_common_name"='Mouse';
1-16849531-2
What is the protein identity with a length of 5304bp/377aa?
CREATE TABLE "homologs" ( "species" text, "species_common_name" text, "ncbi_accession_number_m_rna_protein" text, "length_bp_aa" text, "protein_identity" text );
SELECT "protein_identity" FROM "homologs" WHERE "length_bp_aa"='5304bp/377aa';
1-16849531-2
When was "Tell You When" released?
CREATE TABLE "releases" ( "cat_num" text, "artist" text, "title" text, "release_date" text, "format" text, "other_information" text );
SELECT "release_date" FROM "releases" WHERE "title"='Tell You When';
1-16859758-1
Where was game 62 played?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "location" FROM "game_log" WHERE "game"=62;
1-16864968-7
What was the final score when the Maple Leafs played the Columbus Blue Jackets?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "score" FROM "game_log" WHERE "opponent"='Columbus Blue Jackets';
1-16864968-7
Name the network for dré steemans ann van elsen
CREATE TABLE "table1_16884579_1" ( "country" text, "name" text, "network" text, "premiere" text, "host_s" text, "judges" text, "seasons_and_winners" text );
SELECT "network" FROM "table1_16884579_1" WHERE "host_s"='Dré Steemans Ann Van Elsen';
1-16884579-1
Name the seasons and winners that airs 28 january 2007
CREATE TABLE "table1_16884579_1" ( "country" text, "name" text, "network" text, "premiere" text, "host_s" text, "judges" text, "seasons_and_winners" text );
SELECT "seasons_and_winners" FROM "table1_16884579_1" WHERE "premiere"='28 January 2007';
1-16884579-1
Name the host for prime
CREATE TABLE "table1_16884579_1" ( "country" text, "name" text, "network" text, "premiere" text, "host_s" text, "judges" text, "seasons_and_winners" text );
SELECT "host_s" FROM "table1_16884579_1" WHERE "network"='Prime';
1-16884579-1
Name the number of judges for dré steemans ann van elsen
CREATE TABLE "table1_16884579_1" ( "country" text, "name" text, "network" text, "premiere" text, "host_s" text, "judges" text, "seasons_and_winners" text );
SELECT COUNT("judges") FROM "table1_16884579_1" WHERE "host_s"='Dré Steemans Ann Van Elsen';
1-16884579-1
Name the website for car number of 92
CREATE TABLE "canada" ( "team_name_affiliation" text, "year_started" real, "number_of_cars" real, "current_car" text, "car_num" text, "website" text );
SELECT "website" FROM "canada" WHERE "car_num"='92';
1-1688640-4
Name the year started where car number is 55
CREATE TABLE "canada" ( "team_name_affiliation" text, "year_started" real, "number_of_cars" real, "current_car" text, "car_num" text, "website" text );
SELECT MAX("year_started") FROM "canada" WHERE "car_num"='55';
1-1688640-4
Name the car number for 1997
CREATE TABLE "canada" ( "team_name_affiliation" text, "year_started" real, "number_of_cars" real, "current_car" text, "car_num" text, "website" text );
SELECT "car_num" FROM "canada" WHERE "year_started"=1997;
1-1688640-4
Name the nickerie for marowijne being 4.7%
CREATE TABLE "demography" ( "religion" text, "suriname" text, "paramaribo" text, "wanica" text, "nickerie" text, "coronie" text, "saramacca" text, "commewijne" text, "marowijne" text, "para" text, "brokopondo" text, "sipaliwini" text );
SELECT COUNT("nickerie") FROM "demography" WHERE "marowijne"='4.7%';
1-16886076-1
Name the coronie for marowijne being 6.8%
CREATE TABLE "demography" ( "religion" text, "suriname" text, "paramaribo" text, "wanica" text, "nickerie" text, "coronie" text, "saramacca" text, "commewijne" text, "marowijne" text, "para" text, "brokopondo" text, "sipaliwini" text );
SELECT "coronie" FROM "demography" WHERE "marowijne"='6.8%';
1-16886076-1
Name the para for 1.5% commewijne
CREATE TABLE "demography" ( "religion" text, "suriname" text, "paramaribo" text, "wanica" text, "nickerie" text, "coronie" text, "saramacca" text, "commewijne" text, "marowijne" text, "para" text, "brokopondo" text, "sipaliwini" text );
SELECT "para" FROM "demography" WHERE "commewijne"='1.5%';
1-16886076-1
Name the least amount of races for 2 poles
CREATE TABLE "by_season" ( "season" real, "class" text, "motorcycle" text, "team" text, "races" real, "wins" real, "podiums" real, "poles" real, "f_laps" real, "points" text, "placement" text );
SELECT MIN("races") FROM "by_season" WHERE "poles"=2;
1-16908657-1
Name the motorcycle for season 2012
CREATE TABLE "by_season" ( "season" real, "class" text, "motorcycle" text, "team" text, "races" real, "wins" real, "podiums" real, "poles" real, "f_laps" real, "points" text, "placement" text );
SELECT "motorcycle" FROM "by_season" WHERE "season"=2012;
1-16908657-1
Name the number of flaps for 63 points
CREATE TABLE "by_season" ( "season" real, "class" text, "motorcycle" text, "team" text, "races" real, "wins" real, "podiums" real, "poles" real, "f_laps" real, "points" text, "placement" text );
SELECT COUNT("f_laps") FROM "by_season" WHERE "points"='63';
1-16908657-1
Name the least flaps
CREATE TABLE "by_season" ( "season" real, "class" text, "motorcycle" text, "team" text, "races" real, "wins" real, "podiums" real, "poles" real, "f_laps" real, "points" text, "placement" text );
SELECT MIN("f_laps") FROM "by_season";
1-16908657-1
How many p.ret are there when kr avg is 11.3 ?
CREATE TABLE "returning" ( "player" text, "gp" real, "k_ret" real, "kr_yds" real, "kr_avg" text, "kr_td" real, "kr_lg" real, "p_ret" real, "pr_yds" real, "pr_avg" text, "pr_td" real, "pr_lg" real, "mfg_ret" real, "mfg_yds" real, "mfg_avg" text, "mfg_lg" real, "mfg_td" real );
SELECT COUNT("p_ret") FROM "returning" WHERE "kr_avg"='11.3';
1-16912000-13
What is the kr td when mfg lg is 64?
CREATE TABLE "returning" ( "player" text, "gp" real, "k_ret" real, "kr_yds" real, "kr_avg" text, "kr_td" real, "kr_lg" real, "p_ret" real, "pr_yds" real, "pr_avg" text, "pr_td" real, "pr_lg" real, "mfg_ret" real, "mfg_yds" real, "mfg_avg" text, "mfg_lg" real, "mfg_td" real );
SELECT "kr_td" FROM "returning" WHERE "mfg_lg"=64;
1-16912000-13
Who's average is 24.8?
CREATE TABLE "returning" ( "player" text, "gp" real, "k_ret" real, "kr_yds" real, "kr_avg" text, "kr_td" real, "kr_lg" real, "p_ret" real, "pr_yds" real, "pr_avg" text, "pr_td" real, "pr_lg" real, "mfg_ret" real, "mfg_yds" real, "mfg_avg" text, "mfg_lg" real, "mfg_td" real );
SELECT "player" FROM "returning" WHERE "kr_avg"='24.8';
1-16912000-13
What is the pr avg, when kr lg is 49?
CREATE TABLE "returning" ( "player" text, "gp" real, "k_ret" real, "kr_yds" real, "kr_avg" text, "kr_td" real, "kr_lg" real, "p_ret" real, "pr_yds" real, "pr_avg" text, "pr_td" real, "pr_lg" real, "mfg_ret" real, "mfg_yds" real, "mfg_avg" text, "mfg_lg" real, "mfg_td" real );
SELECT "pr_avg" FROM "returning" WHERE "kr_lg"=49;
1-16912000-13
what is the population where municipality is san jacinto?
CREATE TABLE "municipalities" ( "municipality" text, "income_class" text, "district" text, "population_2010" real, "area_km" real );
SELECT "population_2010" FROM "municipalities" WHERE "municipality"='San Jacinto';
1-1691800-2
what is the income class for area 75?
CREATE TABLE "municipalities" ( "municipality" text, "income_class" text, "district" text, "population_2010" real, "area_km" real );
SELECT "income_class" FROM "municipalities" WHERE "area_km"=75;
1-1691800-2
what is th area where the municipaity is labrador?
CREATE TABLE "municipalities" ( "municipality" text, "income_class" text, "district" text, "population_2010" real, "area_km" real );
SELECT "area_km" FROM "municipalities" WHERE "municipality"='Labrador';
1-1691800-2
what is the municipality where the area is 73?
CREATE TABLE "municipalities" ( "municipality" text, "income_class" text, "district" text, "population_2010" real, "area_km" real );
SELECT "municipality" FROM "municipalities" WHERE "area_km"=73;
1-1691800-2
Name the equipment for bike number 6
CREATE TABLE "riders" ( "position" real, "driver_passenger" text, "equipment" text, "bike_no" real, "points" real );
SELECT "equipment" FROM "riders" WHERE "bike_no"=6;
1-16941304-4
Name the driver passenger for 394 points
CREATE TABLE "riders" ( "position" real, "driver_passenger" text, "equipment" text, "bike_no" real, "points" real );
SELECT "driver_passenger" FROM "riders" WHERE "points"=394;
1-16941304-4
Name the equipment for bike number being 3
CREATE TABLE "riders" ( "position" real, "driver_passenger" text, "equipment" text, "bike_no" real, "points" real );
SELECT "equipment" FROM "riders" WHERE "bike_no"=3;
1-16941304-4
In district New York 10th, what was the reason for change?
CREATE TABLE "table1_1694492_2" ( "district" text, "vacator" text, "reason_for_change" text, "successor" text, "date_successor_seated" text );
SELECT "reason_for_change" FROM "table1_1694492_2" WHERE "district"='New York 10th';
1-1694492-2
In the district Wisconsin 2nd, what was the reason for change?
CREATE TABLE "table1_1694505_4" ( "district" text, "vacator" text, "reason_for_change" text, "successor" text, "date_successor_seated" text );
SELECT "reason_for_change" FROM "table1_1694505_4" WHERE "district"='Wisconsin 2nd';
1-1694505-4
Name the least age 30-39 where age 20-29 is 593
CREATE TABLE "sterilization_operations_by_age_date" ( "date_of_sterilization" text, "age_10_19" real, "age_20_29" real, "age_30_39" real, "age_40_49" real, "age_50_59" real, "age_unknown" real, "total" real );
SELECT MIN("age_30_39") FROM "sterilization_operations_by_age_date" WHERE "age_20_29"=593;
1-169693-1
Name the least age 40-49
CREATE TABLE "sterilization_operations_by_age_date" ( "date_of_sterilization" text, "age_10_19" real, "age_20_29" real, "age_30_39" real, "age_40_49" real, "age_50_59" real, "age_unknown" real, "total" real );
SELECT MIN("age_40_49") FROM "sterilization_operations_by_age_date";
1-169693-1
Name the age 30-39 and age 10-19 380
CREATE TABLE "sterilization_operations_by_age_date" ( "date_of_sterilization" text, "age_10_19" real, "age_20_29" real, "age_30_39" real, "age_40_49" real, "age_50_59" real, "age_unknown" real, "total" real );
SELECT "age_30_39" FROM "sterilization_operations_by_age_date" WHERE "age_10_19"=380;
1-169693-1
Name the score for number 4
CREATE TABLE "game_log" ( "num" text, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "score" FROM "game_log" WHERE "num"='4';
1-16967990-1
How many numbers were recorded for Chester when the religion was Hindu?
CREATE TABLE "religious_group_breakdown" ( "religion" text, "chester" text, "congleton" text, "crewe_and_nantwich" text, "ellesmere_port_and_neston" text, "macclesfield" text, "vale_royal" text, "total" text );
SELECT COUNT("chester") FROM "religious_group_breakdown" WHERE "religion"='Hindu';
1-16974228-1
what was Casey Martin's minimum yearly earnings?
CREATE TABLE "pga_tour_results" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "best_finish" text, "earnings" real, "money_list_rank" text );
SELECT MIN("earnings") FROM "pga_tour_results";
1-1697190-2
when Casey Martin's best finish was t-65, where did he land in the money list rankings?
CREATE TABLE "pga_tour_results" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "best_finish" text, "earnings" real, "money_list_rank" text );
SELECT "money_list_rank" FROM "pga_tour_results" WHERE "best_finish"='T-65';
1-1697190-2
how many times did Casey Martin win?
CREATE TABLE "pga_tour_results" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "best_finish" text, "earnings" real, "money_list_rank" text );
SELECT MAX("wins") FROM "pga_tour_results";
1-1697190-2
Name the total number of air dates for 05 cycle
CREATE TABLE "table1_16976547_2" ( "cycle_no" text, "air_dates" text, "reward" text, "immunity" text, "eliminated" text, "vote" text, "finish" text );
SELECT COUNT("air_dates") FROM "table1_16976547_2" WHERE "cycle_no"='05';
1-16976547-2
Name the vote for gigit
CREATE TABLE "table1_16976547_2" ( "cycle_no" text, "air_dates" text, "reward" text, "immunity" text, "eliminated" text, "vote" text, "finish" text );
SELECT "vote" FROM "table1_16976547_2" WHERE "eliminated"='Gigit';
1-16976547-2
Name the finish for patani
CREATE TABLE "table1_16976547_2" ( "cycle_no" text, "air_dates" text, "reward" text, "immunity" text, "eliminated" text, "vote" text, "finish" text );
SELECT "finish" FROM "table1_16976547_2" WHERE "eliminated"='Patani';
1-16976547-2
Name the total number of immunity for cycle number of 13
CREATE TABLE "table1_16976547_2" ( "cycle_no" text, "air_dates" text, "reward" text, "immunity" text, "eliminated" text, "vote" text, "finish" text );
SELECT COUNT("immunity") FROM "table1_16976547_2" WHERE "cycle_no"='13';
1-16976547-2
For the NBC network, what was the new/returning/same network status?
CREATE TABLE "programs_returning_during_2000" ( "show" text, "last_aired" real, "previous_network" text, "retitled_as_same" text, "new_returning_same_network" text, "returning" text );
SELECT "new_returning_same_network" FROM "programs_returning_during_2000" WHERE "previous_network"='NBC';
1-169766-13
Which show was sent to syndication for its new/returning/same network.
CREATE TABLE "programs_returning_during_2000" ( "show" text, "last_aired" real, "previous_network" text, "retitled_as_same" text, "new_returning_same_network" text, "returning" text );
SELECT "show" FROM "programs_returning_during_2000" WHERE "new_returning_same_network"='Syndication';
1-169766-13
What is the new/returning/same network name for This Week in Baseball?
CREATE TABLE "programs_returning_during_2000" ( "show" text, "last_aired" real, "previous_network" text, "retitled_as_same" text, "new_returning_same_network" text, "returning" text );
SELECT "new_returning_same_network" FROM "programs_returning_during_2000" WHERE "show"='This Week in Baseball';
1-169766-13
Which show as previously on The Family Channel?
CREATE TABLE "programs_returning_during_2000" ( "show" text, "last_aired" real, "previous_network" text, "retitled_as_same" text, "new_returning_same_network" text, "returning" text );
SELECT "show" FROM "programs_returning_during_2000" WHERE "previous_network"='The Family Channel';
1-169766-13
Did the name change for the program last aired in 1958?
CREATE TABLE "programs_returning_during_2000" ( "show" text, "last_aired" real, "previous_network" text, "retitled_as_same" text, "new_returning_same_network" text, "returning" text );
SELECT "retitled_as_same" FROM "programs_returning_during_2000" WHERE "last_aired"=1958;
1-169766-13
What was the rating of the episode with an overall ranking of 190?
CREATE TABLE "u_s_nielsen_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_overall" text );
SELECT "rating" FROM "u_s_nielsen_ratings" WHERE "rank_overall"='190';
1-16993379-1
What was the rating of episode titled "110"?
CREATE TABLE "u_s_nielsen_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_overall" text );
SELECT "rating" FROM "u_s_nielsen_ratings" WHERE "episode"='\"110\"';
1-16993379-1
How much were the shares during the episode "113"?
CREATE TABLE "u_s_nielsen_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_overall" text );
SELECT MAX("share") FROM "u_s_nielsen_ratings" WHERE "episode"='\"113\"';
1-16993379-1
How many were the shares when the viewers reached 3.11 million?
CREATE TABLE "u_s_nielsen_ratings" ( "episode_number" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_overall" text );
SELECT COUNT("share") FROM "u_s_nielsen_ratings" WHERE "viewers_millions"='3.11';
1-16993379-1
Name the saka era for malayalam മിഥുനം
CREATE TABLE "comparative_table_showing_corresponding_" ( "months_in_malayalam_era" text, "in_malayalam" text, "gregorian_calendar" text, "tamil_calendar" text, "saka_era" text, "sign_of_zodiac" text );
SELECT "saka_era" FROM "comparative_table_showing_corresponding_" WHERE "in_malayalam"='മിഥുനം';
1-169955-1
Name the months in the malayalam era for കുംഭം
CREATE TABLE "comparative_table_showing_corresponding_" ( "months_in_malayalam_era" text, "in_malayalam" text, "gregorian_calendar" text, "tamil_calendar" text, "saka_era" text, "sign_of_zodiac" text );
SELECT "months_in_malayalam_era" FROM "comparative_table_showing_corresponding_" WHERE "in_malayalam"='കുംഭം';
1-169955-1
Name the sign of zodiac for chithirai
CREATE TABLE "comparative_table_showing_corresponding_" ( "months_in_malayalam_era" text, "in_malayalam" text, "gregorian_calendar" text, "tamil_calendar" text, "saka_era" text, "sign_of_zodiac" text );
SELECT "sign_of_zodiac" FROM "comparative_table_showing_corresponding_" WHERE "tamil_calendar"='Chithirai';
1-169955-1
Name the saka era for sign of zodiac being pisces
CREATE TABLE "comparative_table_showing_corresponding_" ( "months_in_malayalam_era" text, "in_malayalam" text, "gregorian_calendar" text, "tamil_calendar" text, "saka_era" text, "sign_of_zodiac" text );
SELECT "saka_era" FROM "comparative_table_showing_corresponding_" WHERE "sign_of_zodiac"='Pisces';
1-169955-1
Name the number of gregorian calenda rof gemini
CREATE TABLE "comparative_table_showing_corresponding_" ( "months_in_malayalam_era" text, "in_malayalam" text, "gregorian_calendar" text, "tamil_calendar" text, "saka_era" text, "sign_of_zodiac" text );
SELECT COUNT("gregorian_calendar") FROM "comparative_table_showing_corresponding_" WHERE "sign_of_zodiac"='Gemini';
1-169955-1
For High Assists of Raymond Felton (12), who were the High rebounds?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "high_assists"='Raymond Felton (12)';
1-17001658-10
On what date was the team Philadelphia?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "team"='Philadelphia';
1-17001658-10
Who was the high rebound for the high assists of d. j. augustin (8)?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "high_assists"='D. J. Augustin (8)';
1-17001658-10
What was the final score of the game with gerald wallace (14) as the High Rebound?
CREATE TABLE "game_log" ( "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 "game_log" WHERE "high_rebounds"='Gerald Wallace (14)';
1-17001658-10
What was the final score in game 15?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "game"=15;
1-17001658-5
Who had the most assists and how many did they have in the game against Miami?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "team"='Miami';
1-17001658-5
Name the location attendance for game 55
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "game"=55;
1-17001658-8
Who got the game high rebounds in game 46?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "game"=46;
1-17001658-7
How many scores are listed for game 37?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("score") FROM "game_log" WHERE "game"=37;
1-17001658-7
What date was the opposing team Milwaukee?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "team"='Milwaukee';
1-17001658-7
What is the pressure in ultra high vacuum?
CREATE TABLE "mean_free_path_in_kinetic_theory" ( "vacuum_range" text, "pressure_in_h_pa_mbar" text, "molecules_cm_3" text, "molecules_m_3" text, "mean_free_path" text );
SELECT "pressure_in_h_pa_mbar" FROM "mean_free_path_in_kinetic_theory" WHERE "vacuum_range"='Ultra high vacuum';
1-170097-1
what is the nightly rank where the episode number production number is 06 1-06?
CREATE TABLE "ratings" ( "episode_number_production_number" text, "title" text, "sydney" real, "melbourne" real, "brisbane" real, "adelaide" real, "perth" real, "total" real, "weekly_rank" text, "nightly_rank" text );
SELECT COUNT("nightly_rank") FROM "ratings" WHERE "episode_number_production_number"='06 1-06';
1-17004367-3
what is the number of weekly rank where the total is 1980000?
CREATE TABLE "ratings" ( "episode_number_production_number" text, "title" text, "sydney" real, "melbourne" real, "brisbane" real, "adelaide" real, "perth" real, "total" real, "weekly_rank" text, "nightly_rank" text );
SELECT COUNT("weekly_rank") FROM "ratings" WHERE "total"=1980000;
1-17004367-3
Name the high assists for 70 game
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "game"=70;
1-17001658-9
Name the pe̍h-ōe-jī for 前金區
CREATE TABLE "subdivisions" ( "no" real, "hanyu" text, "tongyong" text, "pe_h_e_j" text, "chinese" text, "area_km" text, "no_of_villages" real, "population_2010" real );
SELECT "pe_h_e_j" FROM "subdivisions" WHERE "chinese"='前金區';
1-17015-2
Name the number of villages for mituo
CREATE TABLE "subdivisions" ( "no" real, "hanyu" text, "tongyong" text, "pe_h_e_j" text, "chinese" text, "area_km" text, "no_of_villages" real, "population_2010" real );
SELECT "no_of_villages" FROM "subdivisions" WHERE "hanyu"='Mituo';
1-17015-2
Name the number where population 2010 is 171906
CREATE TABLE "subdivisions" ( "no" real, "hanyu" text, "tongyong" text, "pe_h_e_j" text, "chinese" text, "area_km" text, "no_of_villages" real, "population_2010" real );
SELECT "no" FROM "subdivisions" WHERE "population_2010"=171906;
1-17015-2
Name the tongyong for chinese of 湖內區
CREATE TABLE "subdivisions" ( "no" real, "hanyu" text, "tongyong" text, "pe_h_e_j" text, "chinese" text, "area_km" text, "no_of_villages" real, "population_2010" real );
SELECT "tongyong" FROM "subdivisions" WHERE "chinese"='湖內區';
1-17015-2
Name the tongyong for qiaotou
CREATE TABLE "subdivisions" ( "no" real, "hanyu" text, "tongyong" text, "pe_h_e_j" text, "chinese" text, "area_km" text, "no_of_villages" real, "population_2010" real );
SELECT COUNT("tongyong") FROM "subdivisions" WHERE "hanyu"='Qiaotou';
1-17015-2
How many pixels would be found in a hardware colour of 8?
CREATE TABLE "table1_1701371_2" ( "graphics_mode" real, "char_cells" text, "pixels" text, "hardware_colours" real, "used_kb" real, "map" text, "type" text );
SELECT "pixels" FROM "table1_1701371_2" WHERE "hardware_colours"=8;
1-1701371-2
If hardware colours is 8 what would the char cells be?
CREATE TABLE "table1_1701371_2" ( "graphics_mode" real, "char_cells" text, "pixels" text, "hardware_colours" real, "used_kb" real, "map" text, "type" text );
SELECT "char_cells" FROM "table1_1701371_2" WHERE "hardware_colours"=8;
1-1701371-2
Name the year for le confessional
CREATE TABLE "table1_17025328_1" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "director" text, "result" text );
SELECT "year_ceremony" FROM "table1_17025328_1" WHERE "original_title"='Le Confessional';
1-17025328-1
Name the year for les portes tournantes
CREATE TABLE "table1_17025328_1" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "director" text, "result" text );
SELECT "year_ceremony" FROM "table1_17025328_1" WHERE "original_title"='Les portes tournantes';
1-17025328-1
How many values are in the PF cell when Jennifer Jones is skip?
CREATE TABLE "standings" ( "province" 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 COUNT("pf") FROM "standings" WHERE "skip"='Jennifer Jones';
1-17012578-37
How many points for did the team with Shannon Kleibrink as skip score?
CREATE TABLE "standings" ( "province" 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("pf") FROM "standings" WHERE "skip"='Shannon Kleibrink';
1-17012578-37
Of the teams that lost 5 games, what is the highest number of wins?
CREATE TABLE "standings" ( "province" 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("w") FROM "standings" WHERE "l"=5;
1-17012578-37
What is the highest number of ends lost?
CREATE TABLE "standings" ( "province" 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("ends_lost") FROM "standings";
1-17012578-37
How many values are in the ends won cell corresponding to a PA of 39?
CREATE TABLE "standings" ( "province" 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 COUNT("ends_won") FROM "standings" WHERE "pa"=39;
1-17012578-37
When the skip is Glenn Howard, what the minimum PF?
CREATE TABLE "standings" ( "province" 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 MIN("pf") FROM "standings" WHERE "skip"='Glenn Howard';
1-17012578-6
Who was Alberta's skip when the shot pct was 88?
CREATE TABLE "standings" ( "province" 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 "skip" FROM "standings" WHERE "shot_pct"=88 AND "province"='Alberta';
1-17012578-6
What is the top Points Allowed?
CREATE TABLE "standings" ( "province" 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 "standings";
1-17012578-6