question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Who is shown for the 2nd (m) of 220.5?
CREATE TABLE "planica" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "name" FROM "planica" WHERE "2nd_m"='220.5';
1-14407512-27
What is the 2nd (m) when the 1st (m) is 216.5?
CREATE TABLE "planica" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "2nd_m" FROM "planica" WHERE "1st_m"='216.5';
1-14407512-27
For the nationality of FIN and the points of 418.8 what is the overall wc points?
CREATE TABLE "planica" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "overall_wc_points_rank" FROM "planica" WHERE "nationality"='FIN' AND "points"='418.8';
1-14407512-27
What are the overall wc points for points of 397.2?
CREATE TABLE "planica" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "overall_wc_points_rank" FROM "planica" WHERE "points"='397.2';
1-14407512-27
What is shown for 2nd (m) if the is 1st (m) is 203.5?
CREATE TABLE "planica" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "2nd_m" FROM "planica" WHERE "1st_m"='203.5';
1-14407512-27
What are the overall wc points for 2nd (m) of 214.5?
CREATE TABLE "planica" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "overall_wc_points_rank" FROM "planica" WHERE "2nd_m"='214.5';
1-14407512-27
The competitor for FIN had how many overall WC points?
CREATE TABLE "villach" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "overall_wc_points_rank" FROM "villach" WHERE "nationality"='FIN';
1-14407512-4
How many full names are provided for the jumper whose 2nd jump was 96.0m?
CREATE TABLE "villach" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT COUNT("name") FROM "villach" WHERE "2nd_m"='96.0';
1-14407512-4
What was the length of the jumper representing FIN, in meters?
CREATE TABLE "villach" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_wc_points_rank" text );
SELECT "1st_m" FROM "villach" WHERE "nationality"='FIN';
1-14407512-4
What is the 1st(m) score for the Person who had a total points of 272.7
CREATE TABLE "garmisch_partenkirchen" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_fht_points" text, "overall_wc_points_rank" text );
SELECT "1st_m" FROM "garmisch_partenkirchen" WHERE "points"='272.7';
1-14407512-9
How many total points did roman Koudelka have
CREATE TABLE "garmisch_partenkirchen" ( "rank" real, "name" text, "nationality" text, "1st_m" text, "2nd_m" text, "points" text, "overall_fht_points" text, "overall_wc_points_rank" text );
SELECT "overall_wc_points_rank" FROM "garmisch_partenkirchen" WHERE "name"='Roman Koudelka';
1-14407512-9
Name the opponent for week 12
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "time_et" text, "tv" text, "result" text, "record" text, "game_site" text );
SELECT "opponent" FROM "schedule" WHERE "week"=12;
1-14418812-1
Name the number of date for shea stadium
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "time_et" text, "tv" text, "result" text, "record" text, "game_site" text );
SELECT COUNT("date") FROM "schedule" WHERE "game_site"='Shea Stadium';
1-14418812-1
Name the opponent for astrodome
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "time_et" text, "tv" text, "result" text, "record" text, "game_site" text );
SELECT "opponent" FROM "schedule" WHERE "game_site"='Astrodome';
1-14418812-1
How many home team scores have a time of 4:40 PM?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" text, "date" text, "time" text, "report" text );
SELECT COUNT("home_team_score") FROM "round_1" WHERE "time"='4:40 PM';
1-14425454-1
What stadiums had an attendance of 8,256?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" text, "date" text, "time" text, "report" text );
SELECT "ground" FROM "round_1" WHERE "crowd"='8,256';
1-14425454-1
What is the total number of attendees where the home team was Port Adelaide?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" text, "date" text, "time" text, "report" text );
SELECT COUNT("crowd") FROM "round_1" WHERE "home_team"='Port Adelaide';
1-14425454-1
Which team did they play at Rich Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "kickoff_et" text, "tv" text, "opponent" text, "result" text, "record" text, "game_site" text );
SELECT "opponent" FROM "schedule" WHERE "game_site"='Rich Stadium';
1-14423274-3
What date did they play in Cleveland Municipal Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "kickoff_et" text, "tv" text, "opponent" text, "result" text, "record" text, "game_site" text );
SELECT "date" FROM "schedule" WHERE "game_site"='Cleveland Municipal Stadium';
1-14423274-3
Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi
CREATE TABLE "engines" ( "model" text, "year_model" text, "engine" text, "cylinder_volume" text, "power" text, "torque" text, "fuel_system" text );
SELECT "year_model" FROM "engines" WHERE "engine"='4-cyl Straight engine DOHC 16V' AND "model"='1.5 CRDi';
1-1444201-1
Name the year model for 1.3
CREATE TABLE "engines" ( "model" text, "year_model" text, "engine" text, "cylinder_volume" text, "power" text, "torque" text, "fuel_system" text );
SELECT "year_model" FROM "engines" WHERE "model"='1.3';
1-1444201-1
what is the minimum pos with clubs being 16
CREATE TABLE "table1_14460937_2" ( "pos" real, "member_association" text, "points_total_500" real, "clubs" text, "group_stage" real, "play_off" real, "afc_cup" real );
SELECT MIN("pos") FROM "table1_14460937_2" WHERE "clubs"='16';
1-14460937-2
what is the maximum value for afc cup
CREATE TABLE "table1_14460937_2" ( "pos" real, "member_association" text, "points_total_500" real, "clubs" text, "group_stage" real, "play_off" real, "afc_cup" real );
SELECT MAX("afc_cup") FROM "table1_14460937_2";
1-14460937-2
how many pos with member association being china pr
CREATE TABLE "table1_14460937_2" ( "pos" real, "member_association" text, "points_total_500" real, "clubs" text, "group_stage" real, "play_off" real, "afc_cup" real );
SELECT COUNT("pos") FROM "table1_14460937_2" WHERE "member_association"='China PR';
1-14460937-2
how many points (total 500) with pos being 11
CREATE TABLE "table1_14460937_2" ( "pos" real, "member_association" text, "points_total_500" real, "clubs" text, "group_stage" real, "play_off" real, "afc_cup" real );
SELECT COUNT("points_total_500") FROM "table1_14460937_2" WHERE "pos"=11;
1-14460937-2
How many points in 89/90 for the team with 55 in 87/88?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1987_88" text, "1988_89" text, "1989_90" real );
SELECT "1989_90" FROM "relegation" WHERE "1987_88"='55';
1-14460085-3
How many points in 87/88 for racing de córdoba?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1987_88" text, "1988_89" text, "1989_90" real );
SELECT "1987_88" FROM "relegation" WHERE "team"='Racing de Córdoba';
1-14460085-3
What is the lowest number of games played for deportivo español?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1987_88" text, "1988_89" text, "1989_90" real );
SELECT MIN("played") FROM "relegation" WHERE "team"='Deportivo Español';
1-14460085-3
What is the average for the team with 34 in 88/89?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1987_88" text, "1988_89" text, "1989_90" real );
SELECT "average" FROM "relegation" WHERE "1988_89"='34';
1-14460085-3
How many points total for san lorenzo?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1987_88" text, "1988_89" text, "1989_90" real );
SELECT COUNT("points") FROM "relegation" WHERE "team"='San Lorenzo';
1-14460085-3
Name the telephone 052 for area km2 being 5.42
CREATE TABLE "administrative_divisions" ( "number" real, "name_of_administrative_unit" text, "telephone_052" text, "area_km_2" text, "population_people" real );
SELECT "telephone_052" FROM "administrative_divisions" WHERE "area_km_2"='5.42';
1-14465924-1
Name the population of people for area being 24.35
CREATE TABLE "administrative_divisions" ( "number" real, "name_of_administrative_unit" text, "telephone_052" text, "area_km_2" text, "population_people" real );
SELECT "population_people" FROM "administrative_divisions" WHERE "area_km_2"='24.35';
1-14465924-1
Name the total number of telephone 052 for 362.81
CREATE TABLE "administrative_divisions" ( "number" real, "name_of_administrative_unit" text, "telephone_052" text, "area_km_2" text, "population_people" real );
SELECT COUNT("telephone_052") FROM "administrative_divisions" WHERE "area_km_2"='362.81';
1-14465924-1
Name the number of administrative unit for number 4
CREATE TABLE "administrative_divisions" ( "number" real, "name_of_administrative_unit" text, "telephone_052" text, "area_km_2" text, "population_people" real );
SELECT "name_of_administrative_unit" FROM "administrative_divisions" WHERE "number"=4;
1-14465924-1
Name the name of administrative unit for 3464 people
CREATE TABLE "administrative_divisions" ( "number" real, "name_of_administrative_unit" text, "telephone_052" text, "area_km_2" text, "population_people" real );
SELECT "name_of_administrative_unit" FROM "administrative_divisions" WHERE "population_people"=3464;
1-14465924-1
How many of the cmdlets are the 2008 version?
CREATE TABLE "snap_ins_and_hosts" ( "application" text, "version" text, "cmdlets" text, "provider" text, "management_gui" text );
SELECT COUNT("cmdlets") FROM "snap_ins_and_hosts" WHERE "version"='2008';
1-14465871-2
Which providers use exchange server?
CREATE TABLE "snap_ins_and_hosts" ( "application" text, "version" text, "cmdlets" text, "provider" text, "management_gui" text );
SELECT "provider" FROM "snap_ins_and_hosts" WHERE "application"='Exchange Server';
1-14465871-2
Which providers use version 2008?
CREATE TABLE "snap_ins_and_hosts" ( "application" text, "version" text, "cmdlets" text, "provider" text, "management_gui" text );
SELECT "provider" FROM "snap_ins_and_hosts" WHERE "version"='2008';
1-14465871-2
Which providers don't use exchange server?
CREATE TABLE "snap_ins_and_hosts" ( "application" text, "version" text, "cmdlets" text, "provider" text, "management_gui" text );
SELECT "provider" FROM "snap_ins_and_hosts" WHERE "application"='Exchange Server';
1-14465871-2
how many points did the team that scored 27 points in the 1987-88 season score?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1986_87" text, "1987_88" text, "1988_89" real );
SELECT COUNT("played") FROM "relegation" WHERE "1987_88"='27';
1-14489821-1
how many points did the argentinos juniors team score during the 1986-87 season?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1986_87" text, "1987_88" text, "1988_89" real );
SELECT "1986_87" FROM "relegation" WHERE "team"='Argentinos Juniors';
1-14489821-1
how many points did the team that scored 38 points in the 1986-87 season score during the 1988-89 season?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1986_87" text, "1987_88" text, "1988_89" real );
SELECT MIN("1988_89") FROM "relegation" WHERE "1986_87"='38';
1-14489821-1
what is the maximum number of matches played by a team?
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1986_87" text, "1987_88" text, "1988_89" real );
SELECT MAX("played") FROM "relegation";
1-14489821-1
list the number of matches played by the teams that got an average of 1.079
CREATE TABLE "relegation" ( "team" text, "average" text, "points" real, "played" real, "1986_87" text, "1987_88" text, "1988_89" real );
SELECT "1986_87" FROM "relegation" WHERE "average"='1.079';
1-14489821-1
Name the womens singles for korea open super series
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_singles" FROM "winners" WHERE "tour"='Korea Open Super Series';
1-14496232-2
Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "tour" FROM "winners" WHERE "mens_singles"='Chen Jin' AND "womens_doubles"='Zhang Yawen Zhao Tingting';
1-14496232-2
Name the womens doubles when tour is malaysia super series
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_doubles" FROM "winners" WHERE "tour"='Malaysia Super Series';
1-14496232-2
Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "winners" WHERE "womens_singles"='Wang Lin' AND "mixed_doubles"='Joachim Fischer Nielsen Christinna Pedersen';
1-14496232-2
Name the mixed doubles when tour is hong kong super series
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mixed_doubles" FROM "winners" WHERE "tour"='Hong Kong Super Series';
1-14496232-2
Name the mixed doubles for zhu lin
CREATE TABLE "winners" ( "tour" text, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mixed_doubles" FROM "winners" WHERE "womens_singles"='Zhu Lin';
1-14496232-2
Name the week for kingdome
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "location" text, "time_et" text, "tv" text, "result" text, "record" text );
SELECT "week" FROM "schedule" WHERE "location"='Kingdome';
1-14520977-1
Name the date when result is l 13–10 ot
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "location" text, "time_et" text, "tv" text, "result" text, "record" text );
SELECT "date" FROM "schedule" WHERE "result"='L 13–10 OT';
1-14520977-1
Name the record for l 24–22
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "location" text, "time_et" text, "tv" text, "result" text, "record" text );
SELECT "record" FROM "schedule" WHERE "result"='L 24–22';
1-14520977-1
Which Country is the show aired on Fox?
CREATE TABLE "international_versions" ( "country" text, "local_name" text, "host" text, "channel" text, "year_aired" text, "top_prize" text );
SELECT "country" FROM "international_versions" WHERE "channel"='Fox';
1-14523485-9
Where is the show aired in New Zealand?
CREATE TABLE "international_versions" ( "country" text, "local_name" text, "host" text, "channel" text, "year_aired" text, "top_prize" text );
SELECT "channel" FROM "international_versions" WHERE "country"='New Zealand';
1-14523485-9
What channel had the prize of €100,000?
CREATE TABLE "international_versions" ( "country" text, "local_name" text, "host" text, "channel" text, "year_aired" text, "top_prize" text );
SELECT "channel" FROM "international_versions" WHERE "top_prize"='€100,000';
1-14523485-9
How many hosts were on Seven Network?
CREATE TABLE "international_versions" ( "country" text, "local_name" text, "host" text, "channel" text, "year_aired" text, "top_prize" text );
SELECT COUNT("host") FROM "international_versions" WHERE "channel"='Seven Network';
1-14523485-9
What country is the show aired on TVNZ?
CREATE TABLE "international_versions" ( "country" text, "local_name" text, "host" text, "channel" text, "year_aired" text, "top_prize" text );
SELECT "country" FROM "international_versions" WHERE "channel"='TVNZ';
1-14523485-9
What is the capital of Umbria?
CREATE TABLE "administrative_divisions" ( "region" text, "capital" text, "area_km" real, "area_sq_mi" real, "population" real );
SELECT "capital" FROM "administrative_divisions" WHERE "region"='Umbria';
1-14532-1
What is the region where Milan is located?
CREATE TABLE "administrative_divisions" ( "region" text, "capital" text, "area_km" real, "area_sq_mi" real, "population" real );
SELECT "region" FROM "administrative_divisions" WHERE "capital"='Milan';
1-14532-1
What is the area of Tuscany?
CREATE TABLE "administrative_divisions" ( "region" text, "capital" text, "area_km" real, "area_sq_mi" real, "population" real );
SELECT MAX("area_km") FROM "administrative_divisions" WHERE "region"='Tuscany';
1-14532-1
Name the minimum for 2500-3000 ft for scotland
CREATE TABLE "breakdown_by_region_and_height" ( "country" text, "total" real, "4000ft" real, "3500_4000ft" real, "3000_3500ft" real, "2500_3000ft" real, "2000_2500ft" real );
SELECT MIN("2500_3000ft") FROM "breakdown_by_region_and_height" WHERE "country"='Scotland';
1-1456056-1
Name the most of 2500-3000ft
CREATE TABLE "breakdown_by_region_and_height" ( "country" text, "total" real, "4000ft" real, "3500_4000ft" real, "3000_3500ft" real, "2500_3000ft" real, "2000_2500ft" real );
SELECT MAX("2500_3000ft") FROM "breakdown_by_region_and_height";
1-1456056-1
Name the minimum total for ireland
CREATE TABLE "breakdown_by_region_and_height" ( "country" text, "total" real, "4000ft" real, "3500_4000ft" real, "3000_3500ft" real, "2500_3000ft" real, "2000_2500ft" real );
SELECT MIN("total") FROM "breakdown_by_region_and_height" WHERE "country"='Ireland';
1-1456056-1
Who directed all the episodes that were written by aaron ehasz & john o'bryan?
CREATE TABLE "table1_14562722_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "directed_by" FROM "table1_14562722_1" WHERE "written_by"='Aaron Ehasz & John O''Bryan';
1-14562722-1
What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan?
CREATE TABLE "table1_14562722_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "production_code" FROM "table1_14562722_1" WHERE "written_by"='Michael Dante DiMartino' AND "directed_by"='Lauren MacMullan';
1-14562722-1
What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan?
CREATE TABLE "table1_14562722_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_14562722_1" WHERE "directed_by"='Giancarlo Volpe' AND "written_by"='John O''Bryan';
1-14562722-1
Which situation has an original u.s. airdate of December 5, 2007?
CREATE TABLE "table1_14570857_1" ( "num" real, "episode_title" text, "situation" text, "date_of_situation" text, "nature_of_situation" text, "original_u_s_airdate" text );
SELECT "situation" FROM "table1_14570857_1" WHERE "original_u_s_airdate"='December 5, 2007';
1-14570857-1
What is the date of situation for the original u.s. airdate of December 5, 2007?
CREATE TABLE "table1_14570857_1" ( "num" real, "episode_title" text, "situation" text, "date_of_situation" text, "nature_of_situation" text, "original_u_s_airdate" text );
SELECT "date_of_situation" FROM "table1_14570857_1" WHERE "original_u_s_airdate"='December 5, 2007';
1-14570857-1
How many entries are there for date of situation for #4?
CREATE TABLE "table1_14570857_1" ( "num" real, "episode_title" text, "situation" text, "date_of_situation" text, "nature_of_situation" text, "original_u_s_airdate" text );
SELECT COUNT("date_of_situation") FROM "table1_14570857_1" WHERE "num"=4;
1-14570857-1
How many # entries are there for the date of situation of 23 January 2003?
CREATE TABLE "table1_14570857_1" ( "num" real, "episode_title" text, "situation" text, "date_of_situation" text, "nature_of_situation" text, "original_u_s_airdate" text );
SELECT COUNT("num") FROM "table1_14570857_1" WHERE "date_of_situation"='23 January 2003';
1-14570857-1
For the 8 October 2005 – 12 October 2005 situation dates what was the nature of the situation?
CREATE TABLE "table1_14570857_1" ( "num" real, "episode_title" text, "situation" text, "date_of_situation" text, "nature_of_situation" text, "original_u_s_airdate" text );
SELECT "nature_of_situation" FROM "table1_14570857_1" WHERE "date_of_situation"='8 October 2005 – 12 October 2005';
1-14570857-1
Name the circuit for gt3 alex mortimer bradley ellis
CREATE TABLE "calendar" ( "round" real, "circuit" text, "date" text, "length" text, "pole_position" text, "gt3_winner" text, "gt4_winner" text );
SELECT "circuit" FROM "calendar" WHERE "gt3_winner"='Alex Mortimer Bradley Ellis';
1-14574130-3
Name the episodes when region 1 is september 19, 2006
CREATE TABLE "table1_14562722_2" ( "volume" real, "discs" real, "episodes" real, "region_1" text, "region_2" text, "region_4" text );
SELECT "episodes" FROM "table1_14562722_2" WHERE "region_1"='September 19, 2006';
1-14562722-2
Name the maximum discs
CREATE TABLE "table1_14562722_2" ( "volume" real, "discs" real, "episodes" real, "region_1" text, "region_2" text, "region_4" text );
SELECT MAX("discs") FROM "table1_14562722_2";
1-14562722-2
Name the most epiosdes when region 4 is march 13, 2008
CREATE TABLE "table1_14562722_2" ( "volume" real, "discs" real, "episodes" real, "region_1" text, "region_2" text, "region_4" text );
SELECT MAX("episodes") FROM "table1_14562722_2" WHERE "region_4"='March 13, 2008';
1-14562722-2
what's the individual winners with nation being australia
CREATE TABLE "national_summary" ( "nation" text, "total_wins" real, "team_wins" real, "individual_wins" real, "individual_winners" real );
SELECT "individual_winners" FROM "national_summary" WHERE "nation"='Australia';
1-1458666-4
what is the value for minimum total wins
CREATE TABLE "national_summary" ( "nation" text, "total_wins" real, "team_wins" real, "individual_wins" real, "individual_winners" real );
SELECT MIN("total_wins") FROM "national_summary";
1-1458666-4
When 1994 no game is the 1894 wsu 10–0 moscow what is the 1896 no game?
CREATE TABLE "game_results" ( "1890_no_game" text, "1891_no_game" text, "1892_no_game" text, "1893_no_game" text, "1894_wsu_10_0_moscow" text, "1895_wsu_10_4_pullman" text, "1896_no_game" text, "1897_no_game" text, "1898_no_game" text, "1899_wsu_11_0_pullman" text );
SELECT "1896_no_game" FROM "game_results" WHERE "1894_wsu_10_0_moscow"='1994 No game';
1-14576636-2
When 1963 wsu* 14–10 pullman is the 1893 no game what is the 1894 wsu 10–0 moscow?
CREATE TABLE "game_results" ( "1890_no_game" text, "1891_no_game" text, "1892_no_game" text, "1893_no_game" text, "1894_wsu_10_0_moscow" text, "1895_wsu_10_4_pullman" text, "1896_no_game" text, "1897_no_game" text, "1898_no_game" text, "1899_wsu_11_0_pullman" text );
SELECT "1894_wsu_10_0_moscow" FROM "game_results" WHERE "1893_no_game"='1963 WSU* 14–10 Pullman';
1-14576636-2
When 1934 wsu* 19–0 pullman is the 1894 wsu 10–0 moscow how many 1899 wsu* 11–0 pullmans are there?
CREATE TABLE "game_results" ( "1890_no_game" text, "1891_no_game" text, "1892_no_game" text, "1893_no_game" text, "1894_wsu_10_0_moscow" text, "1895_wsu_10_4_pullman" text, "1896_no_game" text, "1897_no_game" text, "1898_no_game" text, "1899_wsu_11_0_pullman" text );
SELECT COUNT("1899_wsu_11_0_pullman") FROM "game_results" WHERE "1894_wsu_10_0_moscow"='1934 WSU* 19–0 Pullman';
1-14576636-2
When 1987 no game is the 1897 no game what is the 1890 no game?
CREATE TABLE "game_results" ( "1890_no_game" text, "1891_no_game" text, "1892_no_game" text, "1893_no_game" text, "1894_wsu_10_0_moscow" text, "1895_wsu_10_4_pullman" text, "1896_no_game" text, "1897_no_game" text, "1898_no_game" text, "1899_wsu_11_0_pullman" text );
SELECT "1890_no_game" FROM "game_results" WHERE "1897_no_game"='1987 No game';
1-14576636-2
When 1971 no game is the 1891 no game what is the 1896 no game?
CREATE TABLE "game_results" ( "1890_no_game" text, "1891_no_game" text, "1892_no_game" text, "1893_no_game" text, "1894_wsu_10_0_moscow" text, "1895_wsu_10_4_pullman" text, "1896_no_game" text, "1897_no_game" text, "1898_no_game" text, "1899_wsu_11_0_pullman" text );
SELECT "1896_no_game" FROM "game_results" WHERE "1891_no_game"='1971 No game';
1-14576636-2
When the 1907 ui* 5–4 moscow is the 1897 no game what is the 1895 wsu* 10–4 pullman?
CREATE TABLE "game_results" ( "1890_no_game" text, "1891_no_game" text, "1892_no_game" text, "1893_no_game" text, "1894_wsu_10_0_moscow" text, "1895_wsu_10_4_pullman" text, "1896_no_game" text, "1897_no_game" text, "1898_no_game" text, "1899_wsu_11_0_pullman" text );
SELECT "1895_wsu_10_4_pullman" FROM "game_results" WHERE "1897_no_game"='1907 UI* 5–4 Moscow';
1-14576636-2
What is the total amount o teams where winnings is $1,752,299?
CREATE TABLE "nascar_sprint_cup_series" ( "year" real, "starts" real, "wins" real, "top_5" real, "top_10" real, "poles" real, "avg_start" text, "avg_finish" text, "winnings" text, "position" text, "team_s" text );
SELECT COUNT("team_s") FROM "nascar_sprint_cup_series" WHERE "winnings"='$1,752,299';
1-1458412-1
What is the avg start that starts at 30?
CREATE TABLE "nascar_sprint_cup_series" ( "year" real, "starts" real, "wins" real, "top_5" real, "top_10" real, "poles" real, "avg_start" text, "avg_finish" text, "winnings" text, "position" text, "team_s" text );
SELECT "avg_start" FROM "nascar_sprint_cup_series" WHERE "starts"=30;
1-1458412-1
What is the totl amount of years where avg start is 27.3?
CREATE TABLE "nascar_sprint_cup_series" ( "year" real, "starts" real, "wins" real, "top_5" real, "top_10" real, "poles" real, "avg_start" text, "avg_finish" text, "winnings" text, "position" text, "team_s" text );
SELECT COUNT("year") FROM "nascar_sprint_cup_series" WHERE "avg_start"='27.3';
1-1458412-1
What coach had 15 wins?
CREATE TABLE "coaching_history" ( "name_alma_mater" text, "seasons" text, "games" real, "wins" real, "losses" real, "win_pct" text, "ncaa_tour" text, "nit_tour" text, "mcc_tour" text, "a_10_tour" text );
SELECT "name_alma_mater" FROM "coaching_history" WHERE "wins"=15;
1-14594528-6
How many losses for the coach that coached 19 games?
CREATE TABLE "coaching_history" ( "name_alma_mater" text, "seasons" text, "games" real, "wins" real, "losses" real, "win_pct" text, "ncaa_tour" text, "nit_tour" text, "mcc_tour" text, "a_10_tour" text );
SELECT "losses" FROM "coaching_history" WHERE "games"=19;
1-14594528-6
Name the school year for class a for sterling city and little elm
CREATE TABLE "team" ( "school_year" text, "class_a" text, "class_aa" text, "class_aaa" text, "class_aaaa" text, "class_aaaaa" text );
SELECT "school_year" FROM "team" WHERE "class_a"='Sterling City' AND "class_aa"='Little Elm';
1-14601528-2
Name the number of class aa for bridgeport and 1999-2000
CREATE TABLE "team" ( "school_year" text, "class_a" text, "class_aa" text, "class_aaa" text, "class_aaaa" text, "class_aaaaa" text );
SELECT COUNT("class_aa") FROM "team" WHERE "class_aaa"='Bridgeport' AND "school_year"='1999-2000';
1-14601528-2
Name the class aa for 1998-99
CREATE TABLE "team" ( "school_year" text, "class_a" text, "class_aa" text, "class_aaa" text, "class_aaaa" text, "class_aaaaa" text );
SELECT "class_aa" FROM "team" WHERE "school_year"='1998-99';
1-14601528-2
Name the class a for pearland
CREATE TABLE "team" ( "school_year" text, "class_a" text, "class_aa" text, "class_aaa" text, "class_aaaa" text, "class_aaaaa" text );
SELECT "class_a" FROM "team" WHERE "class_aaaaa"='Pearland';
1-14601528-2
Name the class aaaaa for 2005-06
CREATE TABLE "team" ( "school_year" text, "class_a" text, "class_aa" text, "class_aaa" text, "class_aaaa" text, "class_aaaaa" text );
SELECT "class_aaaaa" FROM "team" WHERE "school_year"='2005-06';
1-14601528-2
Name the number of class aaaaa for 1988-89
CREATE TABLE "team" ( "school_year" text, "class_a" text, "class_aa" text, "class_aaa" text, "class_aaaa" text, "class_aaaaa" text );
SELECT COUNT("class_aaaaa") FROM "team" WHERE "school_year"='1988-89';
1-14601528-2
What is the percentage of females where in India and are maharashtra?
CREATE TABLE "table1_14598_9" ( "state_ut_code" real, "india_state_ut" text, "literate_persons_pct" text, "males_pct" text, "females_pct" text );
SELECT "females_pct" FROM "table1_14598_9" WHERE "india_state_ut"='Maharashtra';
1-14598-9
What is the percentage of all females that are literate people have a percentage of 68.74?
CREATE TABLE "table1_14598_9" ( "state_ut_code" real, "india_state_ut" text, "literate_persons_pct" text, "males_pct" text, "females_pct" text );
SELECT "females_pct" FROM "table1_14598_9" WHERE "literate_persons_pct"='68.74';
1-14598-9
What is the percentage of females where the state code is a 4?
CREATE TABLE "table1_14598_9" ( "state_ut_code" real, "india_state_ut" text, "literate_persons_pct" text, "males_pct" text, "females_pct" text );
SELECT "females_pct" FROM "table1_14598_9" WHERE "state_ut_code"=4;
1-14598-9
What is the percentage of all the literate people where females are 73.17?
CREATE TABLE "table1_14598_9" ( "state_ut_code" real, "india_state_ut" text, "literate_persons_pct" text, "males_pct" text, "females_pct" text );
SELECT "literate_persons_pct" FROM "table1_14598_9" WHERE "females_pct"='73.17';
1-14598-9
What is the percentage of literate people where india is andaman and Nicobar Islands?
CREATE TABLE "table1_14598_9" ( "state_ut_code" real, "india_state_ut" text, "literate_persons_pct" text, "males_pct" text, "females_pct" text );
SELECT "literate_persons_pct" FROM "table1_14598_9" WHERE "india_state_ut"='Andaman and Nicobar Islands';
1-14598-9