question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm?
CREATE TABLE "international_broadcasts" ( "country" text, "tv_network_s" text, "series_premiere" text, "weekly_schedule" text, "status" text );
SELECT "tv_network_s" FROM "international_broadcasts" WHERE "weekly_schedule"='Monday to Thursday @ 11:00 pm';
1-18821196-1
What is every country with a TV network of AXN India?
CREATE TABLE "international_broadcasts" ( "country" text, "tv_network_s" text, "series_premiere" text, "weekly_schedule" text, "status" text );
SELECT "country" FROM "international_broadcasts" WHERE "tv_network_s"='AXN India';
1-18821196-1
What is every weekly schedule in the country of Norway?
CREATE TABLE "international_broadcasts" ( "country" text, "tv_network_s" text, "series_premiere" text, "weekly_schedule" text, "status" text );
SELECT "weekly_schedule" FROM "international_broadcasts" WHERE "country"='Norway';
1-18821196-1
What is every TV network in Belgium?
CREATE TABLE "international_broadcasts" ( "country" text, "tv_network_s" text, "series_premiere" text, "weekly_schedule" text, "status" text );
SELECT "tv_network_s" FROM "international_broadcasts" WHERE "country"='Belgium';
1-18821196-1
What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm?
CREATE TABLE "international_broadcasts" ( "country" text, "tv_network_s" text, "series_premiere" text, "weekly_schedule" text, "status" text );
SELECT "status" FROM "international_broadcasts" WHERE "weekly_schedule"='Monday to Thursday @ 11:00 pm';
1-18821196-1
What is every weekly schedule of TV network Viasat 4?
CREATE TABLE "international_broadcasts" ( "country" text, "tv_network_s" text, "series_premiere" text, "weekly_schedule" text, "status" text );
SELECT "weekly_schedule" FROM "international_broadcasts" WHERE "tv_network_s"='Viasat 4';
1-18821196-1
How much was the prize money for rwe-sporthalle, mülheim ?
CREATE TABLE "final_results" ( "year" real, "champion_average_in_final" text, "legs" text, "runner_up_average_in_final" text, "sponsor" text, "prize_fund" text, "champion" text, "runner_up" text, "venue" text );
SELECT "prize_fund" FROM "final_results" WHERE "venue"='RWE-Sporthalle, Mülheim';
1-18828487-1
In 2009, how many were runner-up?
CREATE TABLE "final_results" ( "year" real, "champion_average_in_final" text, "legs" text, "runner_up_average_in_final" text, "sponsor" text, "prize_fund" text, "champion" text, "runner_up" text, "venue" text );
SELECT COUNT("runner_up") FROM "final_results" WHERE "year"=2009;
1-18828487-1
How much does the champion get for stadthalle dinslaken, dinslaken?
CREATE TABLE "final_results" ( "year" real, "champion_average_in_final" text, "legs" text, "runner_up_average_in_final" text, "sponsor" text, "prize_fund" text, "champion" text, "runner_up" text, "venue" text );
SELECT "champion" FROM "final_results" WHERE "venue"='Stadthalle Dinslaken, Dinslaken';
1-18828487-1
what is [po 4 3− ]/[a] (%) where [h 2 po 4 − ]/[a] (%) is 94.5?
CREATE TABLE "aqueous_solution" ( "a_mol_l" text, "p_h" text, "h_3_po_4_a_pct" text, "h_2_po_4_a_pct" text, "hpo_4_2_a_pct" text, "po_4_3_a_pct" text );
SELECT "po_4_3_a_pct" FROM "aqueous_solution" WHERE "h_2_po_4_a_pct"='94.5';
1-188378-1
what is the [a] (mol/l) where [hpo 4 2− ]/[a] (%) is 0.612?
CREATE TABLE "aqueous_solution" ( "a_mol_l" text, "p_h" text, "h_3_po_4_a_pct" text, "h_2_po_4_a_pct" text, "hpo_4_2_a_pct" text, "po_4_3_a_pct" text );
SELECT COUNT("a_mol_l") FROM "aqueous_solution" WHERE "hpo_4_2_a_pct"='0.612';
1-188378-1
When by80607002529af is the part number and september 2009 is the release date what is the l2 cache?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "l2_cache" FROM "45_nm" WHERE "release_date"='September 2009' AND "part_number_s"='BY80607002529AF';
1-18823880-10
When by80607002907ahbx80607i7720qm is the part number what is the socket?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "socket" FROM "45_nm" WHERE "part_number_s"='BY80607002907AHBX80607I7720QM';
1-18823880-10
When slblw(b1) is the sspec number what is the mult.?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "mult" FROM "45_nm" WHERE "s_spec_number"='SLBLW(B1)';
1-18823880-10
When socketg1 is the socket what is the release price in dollars?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "release_price_usd" FROM "45_nm" WHERE "socket"='SocketG1';
1-18823880-10
How many points did the opposing team score on Dec. 19, 1982?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bills_points" real, "opponents" real, "record" text, "attendance" real );
SELECT MAX("opponents") FROM "schedule" WHERE "date"='Dec. 19';
1-18847456-2
How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0?
CREATE TABLE "legislation_sponsored_by_john_mc_cain" ( "years_covered" text, "all_bills_sponsored" real, "all_amendments_sponsored" real, "all_bills_cosponsored" real, "all_amendments_cosponsored" real, "bills_originally_cosponsored" real, "amendments_originally_cosponsored" real );
SELECT "bills_originally_cosponsored" FROM "legislation_sponsored_by_john_mc_cain" WHERE "all_amendments_cosponsored"=0;
1-18852984-2
How many bill cosponsored during those years where bills originally cosponsored is 113?
CREATE TABLE "legislation_sponsored_by_john_mc_cain" ( "years_covered" text, "all_bills_sponsored" real, "all_amendments_sponsored" real, "all_bills_cosponsored" real, "all_amendments_cosponsored" real, "bills_originally_cosponsored" real, "amendments_originally_cosponsored" real );
SELECT "all_bills_cosponsored" FROM "legislation_sponsored_by_john_mc_cain" WHERE "bills_originally_cosponsored"=113;
1-18852984-2
What is the greatest number of bills sponsored in any year?
CREATE TABLE "legislation_sponsored_by_john_mc_cain" ( "years_covered" text, "all_bills_sponsored" real, "all_amendments_sponsored" real, "all_bills_cosponsored" real, "all_amendments_cosponsored" real, "bills_originally_cosponsored" real, "amendments_originally_cosponsored" real );
SELECT MAX("all_bills_sponsored") FROM "legislation_sponsored_by_john_mc_cain";
1-18852984-2
What is the lowest cr number?
CREATE TABLE "numbers_and_names" ( "hr_no" text, "hr_name" text, "cr_no" real, "lms_no" real, "built" text, "works" text, "withdrawn" text );
SELECT MIN("cr_no") FROM "numbers_and_names";
1-1886270-1
When 2/1939 is the withdrawn when was it built?
CREATE TABLE "numbers_and_names" ( "hr_no" text, "hr_name" text, "cr_no" real, "lms_no" real, "built" text, "works" text, "withdrawn" text );
SELECT "built" FROM "numbers_and_names" WHERE "withdrawn"='2/1939';
1-1886270-1
When river ness is the hr name what is the hr number?
CREATE TABLE "numbers_and_names" ( "hr_no" text, "hr_name" text, "cr_no" real, "lms_no" real, "built" text, "works" text, "withdrawn" text );
SELECT "hr_no" FROM "numbers_and_names" WHERE "hr_name"='River Ness';
1-1886270-1
When (river garry) is the hr name how many builts are there?
CREATE TABLE "numbers_and_names" ( "hr_no" text, "hr_name" text, "cr_no" real, "lms_no" real, "built" text, "works" text, "withdrawn" text );
SELECT COUNT("built") FROM "numbers_and_names" WHERE "hr_name"='(River Garry)';
1-1886270-1
What is the highest cr number?
CREATE TABLE "numbers_and_names" ( "hr_no" text, "hr_name" text, "cr_no" real, "lms_no" real, "built" text, "works" text, "withdrawn" text );
SELECT MAX("cr_no") FROM "numbers_and_names";
1-1886270-1
When river ness is the hr name how many builts are there?
CREATE TABLE "numbers_and_names" ( "hr_no" text, "hr_name" text, "cr_no" real, "lms_no" real, "built" text, "works" text, "withdrawn" text );
SELECT COUNT("built") FROM "numbers_and_names" WHERE "hr_name"='River Ness';
1-1886270-1
How many opponents are at Minnesota Vikings?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "dolphins_points" real, "opponents" real, "record" text, "attendance" real );
SELECT MAX("opponents") FROM "schedule" WHERE "opponent"='at Minnesota Vikings';
1-18847736-2
What is the date when the opponent is the New England Patriots?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "dolphins_points" real, "opponents" real, "record" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "opponent"='New England Patriots';
1-18847736-2
How many dates do the dolphins have 6 points?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "dolphins_points" real, "opponents" real, "record" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "dolphins_points"=6;
1-18847736-2
What country does robert allenby represent?
CREATE TABLE "western_open" ( "year" real, "player" text, "country" text, "score" text, "to_par" text, "margin" real, "earnings" real );
SELECT "country" FROM "western_open" WHERE "player"='Robert Allenby';
1-18862490-2
What score to par won in 1998?
CREATE TABLE "western_open" ( "year" real, "player" text, "country" text, "score" text, "to_par" text, "margin" real, "earnings" real );
SELECT "to_par" FROM "western_open" WHERE "year"=1998;
1-18862490-2
What player(s) had the score of 64-70-67-69=270?
CREATE TABLE "western_open" ( "year" real, "player" text, "country" text, "score" text, "to_par" text, "margin" real, "earnings" real );
SELECT "player" FROM "western_open" WHERE "score"='64-70-67-69=270';
1-18862490-2
What players had teh score of 64-71-67-67=269?
CREATE TABLE "western_open" ( "year" real, "player" text, "country" text, "score" text, "to_par" text, "margin" real, "earnings" real );
SELECT "player" FROM "western_open" WHERE "score"='64-71-67-67=269';
1-18862490-2
What is the first yar that someone won with a score of 68-66-68-71=273?
CREATE TABLE "western_open" ( "year" real, "player" text, "country" text, "score" text, "to_par" text, "margin" real, "earnings" real );
SELECT MIN("year") FROM "western_open" WHERE "score"='68-66-68-71=273';
1-18862490-2
How many socialist have a lead of 12.6%?
CREATE TABLE "116_seats_needed_for_a_majority" ( "date_released" text, "polling_institute" text, "social_democratic" text, "socialist" text, "green_communist" text, "democratic_and_social_centre" text, "lead" text );
SELECT COUNT("socialist") FROM "116_seats_needed_for_a_majority" WHERE "lead"='12.6%';
1-1886589-1
What is every GA if coach is Bob Ferguson and T is 6?
CREATE TABLE "table1_1888157_1" ( "season" text, "league" text, "division" text, "gp" real, "w" real, "l" real, "t" real, "otl" real, "sol" real, "pts" real, "pct" text, "gf" real, "ga" real, "pim" real, "coach_es" text, "result" text );
SELECT "ga" FROM "table1_1888157_1" WHERE "coach_es"='Bob Ferguson' AND "t"=6;
1-1888157-1
What is the lowest SOL?
CREATE TABLE "table1_1888157_1" ( "season" text, "league" text, "division" text, "gp" real, "w" real, "l" real, "t" real, "otl" real, "sol" real, "pts" real, "pct" text, "gf" real, "ga" real, "pim" real, "coach_es" text, "result" text );
SELECT MIN("sol") FROM "table1_1888157_1";
1-1888157-1
What is the highest GA when GF is 39?
CREATE TABLE "table1_1888157_1" ( "season" text, "league" text, "division" text, "gp" real, "w" real, "l" real, "t" real, "otl" real, "sol" real, "pts" real, "pct" text, "gf" real, "ga" real, "pim" real, "coach_es" text, "result" text );
SELECT MAX("ga") FROM "table1_1888157_1" WHERE "gf"=39;
1-1888157-1
What is every league for coach Jim Burton?
CREATE TABLE "table1_1888157_1" ( "season" text, "league" text, "division" text, "gp" real, "w" real, "l" real, "t" real, "otl" real, "sol" real, "pts" real, "pct" text, "gf" real, "ga" real, "pim" real, "coach_es" text, "result" text );
SELECT "league" FROM "table1_1888157_1" WHERE "coach_es"='Jim Burton';
1-1888157-1
How many different records were there in the games that ended in w 70-66?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT COUNT("record") FROM "regular_season" WHERE "score"='W 70-66';
1-18904831-5
What was the record of the game in which Dydek (10) did the most high rebounds?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "record" FROM "regular_season" WHERE "high_rebounds"='Dydek (10)';
1-18904831-5
Who did the most high rebounds in the game where Sales (17) did the high points?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "high_rebounds" FROM "regular_season" WHERE "high_points"='Sales (17)';
1-18904831-5
When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?
CREATE TABLE "table1_1889619_5" ( "doctor" text, "season" text, "story_no" text, "serial" text, "number_of_episodes" text, "total_footage_remaining_from_missing_episodes_mm_ss" text, "missing_episodes_with_recovered_footage" text, "country_territory" text, "source" text, "format" text, "total_footage_mm_ss" text );
SELECT "total_footage_remaining_from_missing_episodes_mm_ss" FROM "table1_1889619_5" WHERE "story_no"='018' AND "source"='Private individual';
1-1889619-5
When 01:18 is the total footage remaining from missing episodes (mm:ss) and bbc is the source what is the country/territory?
CREATE TABLE "table1_1889619_5" ( "doctor" text, "season" text, "story_no" text, "serial" text, "number_of_episodes" text, "total_footage_remaining_from_missing_episodes_mm_ss" text, "missing_episodes_with_recovered_footage" text, "country_territory" text, "source" text, "format" text, "total_footage_mm_ss" text );
SELECT "country_territory" FROM "table1_1889619_5" WHERE "source"='BBC' AND "total_footage_remaining_from_missing_episodes_mm_ss"='01:18';
1-1889619-5
When 00:21 is the total footage (mm:ss) what is the serial?
CREATE TABLE "table1_1889619_5" ( "doctor" text, "season" text, "story_no" text, "serial" text, "number_of_episodes" text, "total_footage_remaining_from_missing_episodes_mm_ss" text, "missing_episodes_with_recovered_footage" text, "country_territory" text, "source" text, "format" text, "total_footage_mm_ss" text );
SELECT "serial" FROM "table1_1889619_5" WHERE "total_footage_mm_ss"='00:21';
1-1889619-5
When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory?
CREATE TABLE "table1_1889619_5" ( "doctor" text, "season" text, "story_no" text, "serial" text, "number_of_episodes" text, "total_footage_remaining_from_missing_episodes_mm_ss" text, "missing_episodes_with_recovered_footage" text, "country_territory" text, "source" text, "format" text, "total_footage_mm_ss" text );
SELECT "country_territory" FROM "table1_1889619_5" WHERE "story_no"='032' AND "missing_episodes_with_recovered_footage"='Episode 4';
1-1889619-5
When 00:02 is the total footage (mm:ss) what is the story number?
CREATE TABLE "table1_1889619_5" ( "doctor" text, "season" text, "story_no" text, "serial" text, "number_of_episodes" text, "total_footage_remaining_from_missing_episodes_mm_ss" text, "missing_episodes_with_recovered_footage" text, "country_territory" text, "source" text, "format" text, "total_footage_mm_ss" text );
SELECT "story_no" FROM "table1_1889619_5" WHERE "total_footage_mm_ss"='00:02';
1-1889619-5
Name the least game for 8-3
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT MIN("game") FROM "regular_season" WHERE "record"='8-3';
1-18894744-5
Name the opponent for record 10-4
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "opponent" FROM "regular_season" WHERE "record"='10-4';
1-18894744-5
Name the high rebounds for record 7-1
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "regular_season" WHERE "record"='7-1';
1-18894744-5
Name the game for june 16
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "game" FROM "regular_season" WHERE "date"='June 16';
1-18894744-5
Name the game for june 7
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "game" FROM "regular_season" WHERE "date"='June 7';
1-18894744-5
Who did the high rebounds in the game with a 19-6 record?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "regular_season" WHERE "record"='19-6';
1-18894744-6
Where was the game with a 13-5 record played, and in front of how many people?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "regular_season" WHERE "record"='13-5';
1-18894744-6
Who did the high rebounds in the game where Douglas (28) did the high points?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "regular_season" WHERE "high_points"='Douglas (28)';
1-18894744-6
What was the record on the game played on July 1?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "regular_season" WHERE "date"='July 1';
1-18894744-6
How many opponents was a game with a record 17-6 played against?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("opponent") FROM "regular_season" WHERE "record"='17-6';
1-18894744-6
What was the career duration of the bowler who played 60 matches?
CREATE TABLE "references" ( "name" text, "career" text, "matches" real, "overs" text, "maidens" real, "runs" real, "wickets" real, "average" text, "best" text, "5w" real, "10w" real );
SELECT "career" FROM "references" WHERE "matches"=60;
1-18914438-1
What is the Best score if the Maidens is 547 and Overs is 2755.1?
CREATE TABLE "references" ( "name" text, "career" text, "matches" real, "overs" text, "maidens" real, "runs" real, "wickets" real, "average" text, "best" text, "5w" real, "10w" real );
SELECT "best" FROM "references" WHERE "maidens"=547 AND "overs"='2755.1';
1-18914438-1
What was the Overs score of the career played from 1993-2007?
CREATE TABLE "references" ( "name" text, "career" text, "matches" real, "overs" text, "maidens" real, "runs" real, "wickets" real, "average" text, "best" text, "5w" real, "10w" real );
SELECT "overs" FROM "references" WHERE "career"='1993-2007';
1-18914438-1
What was the Best score during the game played from 1971-1984?
CREATE TABLE "references" ( "name" text, "career" text, "matches" real, "overs" text, "maidens" real, "runs" real, "wickets" real, "average" text, "best" text, "5w" real, "10w" real );
SELECT "best" FROM "references" WHERE "career"='1971-1984';
1-18914438-1
When dydek (11) has the highest rebounds what is the date?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "high_rebounds"='Dydek (11)';
1-18904831-6
When mcwilliams-franklin (8) has the highest rebounds what is the date?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "high_rebounds"='McWilliams-Franklin (8)';
1-18904831-6
When dydek (8) has the highest rebounds who has the highest amount of points?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "high_points" FROM "regular_season" WHERE "high_rebounds"='Dydek (8)';
1-18904831-6
When w 73-70 is the score what is the location?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "location" FROM "regular_season" WHERE "score"='W 73-70';
1-18904831-6
What was the score in the game that had a record of 25-8?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "score" FROM "regular_season" WHERE "record"='25-8';
1-18904831-7
What was # of the first game played on August 20?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT MIN("game") FROM "regular_season" WHERE "date"='August 20';
1-18904831-7
What were the high points for the game played at the MCI Center?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT COUNT("high_points") FROM "regular_season" WHERE "location"='MCI Center';
1-18904831-7
Where was the game played that had a record of 19-6?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "location" FROM "regular_season" WHERE "record"='19-6';
1-18904831-7
What is the col (m) of the Barurumea Ridge peak?
CREATE TABLE "the_31_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MAX("col_m") FROM "the_31_s_ultra_prominent_summit_of_papua" WHERE "peak"='Barurumea Ridge';
1-18946749-2
What is the elevation (m) of the Mount Wilhelm peak?
CREATE TABLE "the_31_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MAX("elevation_m") FROM "the_31_s_ultra_prominent_summit_of_papua" WHERE "peak"='Mount Wilhelm';
1-18946749-2
What is the col (m) of the Bewani Mountains High Point peak?
CREATE TABLE "the_31_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MIN("col_m") FROM "the_31_s_ultra_prominent_summit_of_papua" WHERE "peak"='Bewani Mountains High Point';
1-18946749-2
When mount wondiwoi is the peak what is the island?
CREATE TABLE "the_12_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT "island" FROM "the_12_s_ultra_prominent_summit_of_papua" WHERE "peak"='Mount Wondiwoi';
1-18946749-1
When mount gauttier is the peak what is the island?
CREATE TABLE "the_12_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT "island" FROM "the_12_s_ultra_prominent_summit_of_papua" WHERE "peak"='Mount Gauttier';
1-18946749-1
When mount kobowre is the peak what is the highest elevation in meters?
CREATE TABLE "the_12_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MAX("elevation_m") FROM "the_12_s_ultra_prominent_summit_of_papua" WHERE "peak"='Mount Kobowre';
1-18946749-1
When mount gauttier is the peak what is the highest prominence in meters?
CREATE TABLE "the_12_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MAX("prominence_m") FROM "the_12_s_ultra_prominent_summit_of_papua" WHERE "peak"='Mount Gauttier';
1-18946749-1
When 44 is the col in meters what is the country?
CREATE TABLE "the_12_s_ultra_prominent_summit_of_papua" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT "country" FROM "the_12_s_ultra_prominent_summit_of_papua" WHERE "col_m"=44;
1-18946749-1
Name the release date for album # 2nd
CREATE TABLE "studio" ( "albumnum" text, "english_title" text, "chinese_traditional" text, "chinese_simplified" text, "release_date" text, "label" text );
SELECT "release_date" FROM "studio" WHERE "albumnum"='2nd';
1-1893815-1
Name the label for grown up overnight
CREATE TABLE "studio" ( "albumnum" text, "english_title" text, "chinese_traditional" text, "chinese_simplified" text, "release_date" text, "label" text );
SELECT "label" FROM "studio" WHERE "english_title"='Grown Up Overnight';
1-1893815-1
Name the label for traditional chinese 情歌沒有告訴你
CREATE TABLE "studio" ( "albumnum" text, "english_title" text, "chinese_traditional" text, "chinese_simplified" text, "release_date" text, "label" text );
SELECT "label" FROM "studio" WHERE "chinese_traditional"='情歌沒有告訴你';
1-1893815-1
Name the number of traditional chinese for album number 6th
CREATE TABLE "studio" ( "albumnum" text, "english_title" text, "chinese_traditional" text, "chinese_simplified" text, "release_date" text, "label" text );
SELECT COUNT("chinese_traditional") FROM "studio" WHERE "albumnum"='6th';
1-1893815-1
Name the chinese traditional for 美丽人生
CREATE TABLE "studio" ( "albumnum" text, "english_title" text, "chinese_traditional" text, "chinese_simplified" text, "release_date" text, "label" text );
SELECT "chinese_traditional" FROM "studio" WHERE "chinese_simplified"='美丽人生';
1-1893815-1
Name the english title for album # 2nd
CREATE TABLE "studio" ( "albumnum" text, "english_title" text, "chinese_traditional" text, "chinese_simplified" text, "release_date" text, "label" text );
SELECT "english_title" FROM "studio" WHERE "albumnum"='2nd';
1-1893815-1
How many samples were taken of 嬰幼兒配方乳粉2段基粉 ?
CREATE TABLE "tests_conducted_by_aqsiq" ( "producer" text, "product" text, "samples_taken" real, "samples_failed" real, "melamine_content_mg_kg" text );
SELECT COUNT("samples_taken") FROM "tests_conducted_by_aqsiq" WHERE "product"='嬰幼兒配方乳粉2段基粉';
1-18943444-1
What are the producers of 磊磊牌嬰幼兒配方乳粉 ?
CREATE TABLE "tests_conducted_by_aqsiq" ( "producer" text, "product" text, "samples_taken" real, "samples_failed" real, "melamine_content_mg_kg" text );
SELECT "producer" FROM "tests_conducted_by_aqsiq" WHERE "product"='磊磊牌嬰幼兒配方乳粉';
1-18943444-1
What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?
CREATE TABLE "tests_conducted_by_aqsiq" ( "producer" text, "product" text, "samples_taken" real, "samples_failed" real, "melamine_content_mg_kg" text );
SELECT MIN("samples_taken") FROM "tests_conducted_by_aqsiq" WHERE "product"='蒙牛牌嬰幼兒配方乳粉';
1-18943444-1
Who is the producer of 金必氏牌嬰幼兒配方乳粉 ?
CREATE TABLE "tests_conducted_by_aqsiq" ( "producer" text, "product" text, "samples_taken" real, "samples_failed" real, "melamine_content_mg_kg" text );
SELECT "producer" FROM "tests_conducted_by_aqsiq" WHERE "product"='金必氏牌嬰幼兒配方乳粉';
1-18943444-1
How many live births per year are there in the period where the life expectancy for females is 73.3?
CREATE TABLE "table1_18950570_2" ( "period" text, "live_births_per_year" text, "deaths_per_year" text, "natural_change_per_year" text, "cbr" text, "cdr" text, "nc" text, "tfr" text, "imr" real, "life_expectancy_total" text, "life_expectancy_males" text, "life_expectancy_females" text );
SELECT "live_births_per_year" FROM "table1_18950570_2" WHERE "life_expectancy_females"='73.3';
1-18950570-2
What's the CDR for the period where the life expectancy is 61.5?
CREATE TABLE "table1_18950570_2" ( "period" text, "live_births_per_year" text, "deaths_per_year" text, "natural_change_per_year" text, "cbr" text, "cdr" text, "nc" text, "tfr" text, "imr" real, "life_expectancy_total" text, "life_expectancy_males" text, "life_expectancy_females" text );
SELECT "cdr" FROM "table1_18950570_2" WHERE "life_expectancy_total"='61.5';
1-18950570-2
What's the IMR for the period with a life expectancy of 69.3?
CREATE TABLE "table1_18950570_2" ( "period" text, "live_births_per_year" text, "deaths_per_year" text, "natural_change_per_year" text, "cbr" text, "cdr" text, "nc" text, "tfr" text, "imr" real, "life_expectancy_total" text, "life_expectancy_males" text, "life_expectancy_females" text );
SELECT "imr" FROM "table1_18950570_2" WHERE "life_expectancy_total"='69.3';
1-18950570-2
What's the CBR for the period with 1 058 000 deaths per year?
CREATE TABLE "table1_18950570_2" ( "period" text, "live_births_per_year" text, "deaths_per_year" text, "natural_change_per_year" text, "cbr" text, "cdr" text, "nc" text, "tfr" text, "imr" real, "life_expectancy_total" text, "life_expectancy_males" text, "life_expectancy_females" text );
SELECT "cbr" FROM "table1_18950570_2" WHERE "deaths_per_year"='1 058 000';
1-18950570-2
How many births per year are there for the period with 998 000 deaths per year?
CREATE TABLE "table1_18950570_2" ( "period" text, "live_births_per_year" text, "deaths_per_year" text, "natural_change_per_year" text, "cbr" text, "cdr" text, "nc" text, "tfr" text, "imr" real, "life_expectancy_total" text, "life_expectancy_males" text, "life_expectancy_females" text );
SELECT "live_births_per_year" FROM "table1_18950570_2" WHERE "deaths_per_year"='998 000';
1-18950570-2
What's the TFR for the period with NC of 13.4?
CREATE TABLE "table1_18950570_2" ( "period" text, "live_births_per_year" text, "deaths_per_year" text, "natural_change_per_year" text, "cbr" text, "cdr" text, "nc" text, "tfr" text, "imr" real, "life_expectancy_total" text, "life_expectancy_males" text, "life_expectancy_females" text );
SELECT "tfr" FROM "table1_18950570_2" WHERE "nc"='13.4';
1-18950570-2
What is the highest value for col(m) when prominence(m) is 3755?
CREATE TABLE "the_ten_s_ultra_prominent_summit_of_the_" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MAX("col_m") FROM "the_ten_s_ultra_prominent_summit_of_the_" WHERE "prominence_m"=3755;
1-18946749-4
What is the highest value for col(m) at North Island?
CREATE TABLE "the_ten_s_ultra_prominent_summit_of_the_" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MAX("col_m") FROM "the_ten_s_ultra_prominent_summit_of_the_" WHERE "island"='North Island';
1-18946749-4
What is the lowest elevation(m) for the peak Mount Taylor?
CREATE TABLE "the_ten_s_ultra_prominent_summit_of_the_" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT MIN("elevation_m") FROM "the_ten_s_ultra_prominent_summit_of_the_" WHERE "peak"='Mount Taylor';
1-18946749-4
How many values of prominence(m) occur at rank 5?
CREATE TABLE "the_ten_s_ultra_prominent_summit_of_the_" ( "rank" real, "peak" text, "country" text, "island" text, "elevation_m" real, "prominence_m" real, "col_m" real );
SELECT COUNT("prominence_m") FROM "the_ten_s_ultra_prominent_summit_of_the_" WHERE "rank"=5;
1-18946749-4
what ae all of the brazil 100% where the age group is 15-17?
CREATE TABLE "table1_18950570_4" ( "age_group" text, "brazil_100pct_percent_of_the_population" text, "white_47_73pct_percent_in_the_race_percent_in_the_age_group" text, "black_7_61pct_percent_in_the_race_percent_in_the_age_group" text, "yellow_1_09pct_percent_in_the_race_percent_in_the_age_group" text, "brown_multiracial_43_13pct_percent_in_the_race_percent_in_the_age_group" text, "indians_0_43pct_percent_in_the_race_percent_in_the_age_group" text, "unspecified_0_0034pct" text );
SELECT "brazil_100pct_percent_of_the_population" FROM "table1_18950570_4" WHERE "age_group"='15-17';
1-18950570-4
If the just ratio is 11:8 and the cents size is 560, what is the interval name?
CREATE TABLE "size_of_intervals_in_15_equal_temperamen" ( "interval_name" text, "size_steps" real, "size_cents" real, "just_ratio" text, "just_cents" text, "error" text, "audio" text );
SELECT "interval_name" FROM "size_of_intervals_in_15_equal_temperamen" WHERE "size_cents"=560 AND "just_ratio"='11:8';
1-18955077-1
If the just cents is 84.46, what is the just ratio?
CREATE TABLE "size_of_intervals_in_15_equal_temperamen" ( "interval_name" text, "size_steps" real, "size_cents" real, "just_ratio" text, "just_cents" text, "error" text, "audio" text );
SELECT "just_ratio" FROM "size_of_intervals_in_15_equal_temperamen" WHERE "just_cents"='84.46';
1-18955077-1
If the just cents is 701.96, what is the interval name?
CREATE TABLE "size_of_intervals_in_15_equal_temperamen" ( "interval_name" text, "size_steps" real, "size_cents" real, "just_ratio" text, "just_cents" text, "error" text, "audio" text );
SELECT "interval_name" FROM "size_of_intervals_in_15_equal_temperamen" WHERE "just_cents"='701.96';
1-18955077-1