question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What are the number of points for associated with exactly 3 stolen ends?
CREATE TABLE "standings" ( "skip_club" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real );
SELECT COUNT("pf") FROM "standings" WHERE "stolen_ends"=3;
1-25176088-2
How many position did a player took while weighing 170?
CREATE TABLE "roster" ( "name" text, "num" real, "position" text, "height" text, "weight" real, "year" text, "former_school" text, "hometown" text );
SELECT COUNT("position") FROM "roster" WHERE "weight"=170;
1-25177625-1
What were the former schools of the player from East Brunswick, NJ?
CREATE TABLE "roster" ( "name" text, "num" real, "position" text, "height" text, "weight" real, "year" text, "former_school" text, "hometown" text );
SELECT "former_school" FROM "roster" WHERE "hometown"='East Brunswick, NJ';
1-25177625-1
What was the height of this Freshman with a forward position?
CREATE TABLE "roster" ( "name" text, "num" real, "position" text, "height" text, "weight" real, "year" text, "former_school" text, "hometown" text );
SELECT "height" FROM "roster" WHERE "position"='Forward' AND "year"='Freshman';
1-25177625-1
If the date of birth is 1961-08-09 9 august 1961, what is the start date of (first) term?
CREATE TABLE "footnotes" ( "num" real, "prime_minister" text, "date_of_birth" text, "start_date_of_first_term" text, "age_at_beginning_of_first_term" text, "end_date_of_final_term" text, "total_time_in_office" text, "date_of_death" text, "lifespan" text );
SELECT "start_date_of_first_term" FROM "footnotes" WHERE "date_of_birth"='1961-08-09 9 August 1961';
1-25182437-1
If the prime minister is Palmer, Geoffrey Geoffrey Palmer, what is the end date of (final) term?
CREATE TABLE "footnotes" ( "num" real, "prime_minister" text, "date_of_birth" text, "start_date_of_first_term" text, "age_at_beginning_of_first_term" text, "end_date_of_final_term" text, "total_time_in_office" text, "date_of_death" text, "lifespan" text );
SELECT "end_date_of_final_term" FROM "footnotes" WHERE "prime_minister"='Palmer, Geoffrey Geoffrey Palmer';
1-25182437-1
What is the population if the city is Gilroy?
CREATE TABLE "table1_25200461_9" ( "city" text, "population" real, "registered_voters" text, "democratic" text, "republican" text, "d_r_spread" text, "other" text, "no_party_preference" text );
SELECT "population" FROM "table1_25200461_9" WHERE "city"='Gilroy';
1-25200461-9
If Democratic is 42.5%, what is the city?
CREATE TABLE "table1_25200461_9" ( "city" text, "population" real, "registered_voters" text, "democratic" text, "republican" text, "d_r_spread" text, "other" text, "no_party_preference" text );
SELECT "city" FROM "table1_25200461_9" WHERE "democratic"='42.5%';
1-25200461-9
If the registered voters is 66.8%, what is the minimum population?
CREATE TABLE "table1_25200461_9" ( "city" text, "population" real, "registered_voters" text, "democratic" text, "republican" text, "d_r_spread" text, "other" text, "no_party_preference" text );
SELECT MIN("population") FROM "table1_25200461_9" WHERE "registered_voters"='66.8%';
1-25200461-9
What is the other is the city is Los Gatos?
CREATE TABLE "table1_25200461_9" ( "city" text, "population" real, "registered_voters" text, "democratic" text, "republican" text, "d_r_spread" text, "other" text, "no_party_preference" text );
SELECT "other" FROM "table1_25200461_9" WHERE "city"='Los Gatos';
1-25200461-9
What is the d-r spread if the no party preference is 31.8%?
CREATE TABLE "table1_25200461_9" ( "city" text, "population" real, "registered_voters" text, "democratic" text, "republican" text, "d_r_spread" text, "other" text, "no_party_preference" text );
SELECT "d_r_spread" FROM "table1_25200461_9" WHERE "no_party_preference"='31.8%';
1-25200461-9
If the city is Santa Clara, what is the population total number?
CREATE TABLE "table1_25200461_9" ( "city" text, "population" real, "registered_voters" text, "democratic" text, "republican" text, "d_r_spread" text, "other" text, "no_party_preference" text );
SELECT COUNT("population") FROM "table1_25200461_9" WHERE "city"='Santa Clara';
1-25200461-9
In what prefecture is Susaki located?
CREATE TABLE "2013_tournament" ( "prefecture" text, "city_town" text, "high_school_name" text, "year_of_previous_participation" text, "total_number_of_participation" real );
SELECT "prefecture" FROM "2013_tournament" WHERE "city_town"='Susaki';
1-2518850-4
How many previous years did Maebashi Ikuei high school have a total number of 1 participation?
CREATE TABLE "2013_tournament" ( "prefecture" text, "city_town" text, "high_school_name" text, "year_of_previous_participation" text, "total_number_of_participation" real );
SELECT COUNT("year_of_previous_participation") FROM "2013_tournament" WHERE "total_number_of_participation"=1 AND "high_school_name"='Maebashi Ikuei';
1-2518850-4
In what prefecture is Nihon Bunri located?
CREATE TABLE "2013_tournament" ( "prefecture" text, "city_town" text, "high_school_name" text, "year_of_previous_participation" text, "total_number_of_participation" real );
SELECT "prefecture" FROM "2013_tournament" WHERE "high_school_name"='Nihon Bunri';
1-2518850-4
In what prefecture is Daito located?
CREATE TABLE "2013_tournament" ( "prefecture" text, "city_town" text, "high_school_name" text, "year_of_previous_participation" text, "total_number_of_participation" real );
SELECT "prefecture" FROM "2013_tournament" WHERE "city_town"='Daito';
1-2518850-4
Which high school is located in Kyoto?
CREATE TABLE "2013_tournament" ( "prefecture" text, "city_town" text, "high_school_name" text, "year_of_previous_participation" text, "total_number_of_participation" real );
SELECT "high_school_name" FROM "2013_tournament" WHERE "prefecture"='Kyoto';
1-2518850-4
What was the year of previous participation for the school in the Kagoshima prefecture?
CREATE TABLE "2013_tournament" ( "prefecture" text, "city_town" text, "high_school_name" text, "year_of_previous_participation" text, "total_number_of_participation" real );
SELECT "year_of_previous_participation" FROM "2013_tournament" WHERE "prefecture"='Kagoshima';
1-2518850-4
What was the data on January 15-16 if March 27-29 is March 29, 2006?
CREATE TABLE "table1_25216791_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "january_15_16" FROM "table1_25216791_3" WHERE "march_27_29"='March 29, 2006';
1-25216791-3
What was the data on November 3, if the data on January 15-16 is January 15, 2010?
CREATE TABLE "table1_25216791_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25216791_3" WHERE "january_15_16"='January 15, 2010';
1-25216791-3
How many datas were recorded on January 15-16 if August 21-22 is 155?
CREATE TABLE "table1_25216791_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("january_15_16") FROM "table1_25216791_3" WHERE "august_21_22"='155';
1-25216791-3
What was the data on January 15-16 if the data recorded June 10-11 is June 10, 1964?
CREATE TABLE "table1_25216791_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "january_15_16" FROM "table1_25216791_3" WHERE "june_10_11"='June 10, 1964';
1-25216791-3
How many data are on points for if the percentage is 94.29?
CREATE TABLE "awards_and_milestones" ( "opponent" text, "played" real, "won" real, "lost" real, "drew" real, "premiership_points" real, "points_for" real, "points_against" real, "percentage_pct" text );
SELECT COUNT("points_for") FROM "awards_and_milestones" WHERE "percentage_pct"='94.29';
1-25229283-4
Who was the opponent with a points for of 177?
CREATE TABLE "awards_and_milestones" ( "opponent" text, "played" real, "won" real, "lost" real, "drew" real, "premiership_points" real, "points_for" real, "points_against" real, "percentage_pct" text );
SELECT "opponent" FROM "awards_and_milestones" WHERE "points_for"=177;
1-25229283-4
What was the minimum points against if the opponent is Port Adelaide?
CREATE TABLE "awards_and_milestones" ( "opponent" text, "played" real, "won" real, "lost" real, "drew" real, "premiership_points" real, "points_for" real, "points_against" real, "percentage_pct" text );
SELECT MIN("points_against") FROM "awards_and_milestones" WHERE "opponent"='Port Adelaide';
1-25229283-4
If Thursday 3 June is 20' 27.93 110.615mph, what are the names of the riders?
CREATE TABLE "practice_times_and_leaderboard_600cc" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT "rider" FROM "practice_times_and_leaderboard_600cc" WHERE "thurs_3_june"='20'' 27.93 110.615mph';
1-25220821-3
What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph?
CREATE TABLE "practice_times_and_leaderboard_600cc" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT COUNT("tues_1_june") FROM "practice_times_and_leaderboard_600cc" WHERE "mon_31_may"='20'' 15.35 111.761mph';
1-25220821-3
What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph?
CREATE TABLE "practice_times_and_leaderboard_600cc" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT "fri_4_june" FROM "practice_times_and_leaderboard_600cc" WHERE "wed_2_june"='20'' 11.98 112.071mph';
1-25220821-3
If Tuesday 1 June is 21' 05.27 107.351mph, what is the rider total number?
CREATE TABLE "practice_times_and_leaderboard_600cc" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT COUNT("rider") FROM "practice_times_and_leaderboard_600cc" WHERE "tues_1_june"='21'' 05.27 107.351mph';
1-25220821-3
If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum?
CREATE TABLE "practice_times_and_leaderboard_600cc" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT MAX("rank") FROM "practice_times_and_leaderboard_600cc" WHERE "tues_1_june"='20'' 59.60 107.834mph';
1-25220821-3
What is the Friday 4 June if the Wednesday 2 June is 20' 50.62 108.608mph?
CREATE TABLE "practice_times_and_leaderboard_600cc" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT "fri_4_june" FROM "practice_times_and_leaderboard_600cc" WHERE "wed_2_june"='20'' 50.62 108.608mph';
1-25220821-3
What is the 2 June time for the rider with time of 17' 48.58 127.111mph on 3 June?
CREATE TABLE "practice_times_leaderboard_superstock_tt" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT "wed_2_june" FROM "practice_times_leaderboard_superstock_tt" WHERE "thurs_3_june"='17'' 48.58 127.111mph';
1-25220821-4
How many times are listed for 31 May for the rider ranked 5?
CREATE TABLE "practice_times_leaderboard_superstock_tt" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT COUNT("mon_31_may") FROM "practice_times_leaderboard_superstock_tt" WHERE "rank"=5;
1-25220821-4
What is the 3 June time for the rider with 2 June time of 17' 45.11 127.525mph?
CREATE TABLE "practice_times_leaderboard_superstock_tt" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT "thurs_3_june" FROM "practice_times_leaderboard_superstock_tt" WHERE "wed_2_june"='17'' 45.11 127.525mph';
1-25220821-4
Who is ranked 2?
CREATE TABLE "practice_times_leaderboard_superstock_tt" ( "rank" real, "rider" text, "sat_29_may" text, "mon_31_may" text, "tues_1_june" text, "wed_2_june" text, "thurs_3_june" text, "fri_4_june" text );
SELECT "rider" FROM "practice_times_leaderboard_superstock_tt" WHERE "rank"=2;
1-25220821-4
How many times does November 3rd occur when January 15, 1991 does?
CREATE TABLE "table1_25235489_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("november_3") FROM "table1_25235489_2" WHERE "january_15_16"='January 15, 1991';
1-25235489-2
When November is 153 what is the March number?
CREATE TABLE "table1_25235489_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "march_27_29" FROM "table1_25235489_2" WHERE "november_3"='153';
1-25235489-2
How many times does an occurance happen in June when it happens on NOvember 3, 1975?
CREATE TABLE "table1_25235489_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("june_10_11") FROM "table1_25235489_2" WHERE "november_3"='November 3, 1975';
1-25235489-2
When march is 129 what is the August number?
CREATE TABLE "table1_25235489_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "august_21_22" FROM "table1_25235489_2" WHERE "march_27_29"='129';
1-25235489-2
How many numbers are there for August when March is 139?
CREATE TABLE "table1_25235489_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("august_21_22") FROM "table1_25235489_2" WHERE "march_27_29"='139';
1-25235489-2
How many teams have been in Topperserien for 8 seasons?
CREATE TABLE "2013_teams" ( "team" text, "home_city" text, "home_ground" text, "in_toppserien_since" real, "first_appearance" real, "seasons" real );
SELECT COUNT("team") FROM "2013_teams" WHERE "seasons"=8;
1-2522473-1
What is the maximum number of seasons for any team?
CREATE TABLE "2013_teams" ( "team" text, "home_city" text, "home_ground" text, "in_toppserien_since" real, "first_appearance" real, "seasons" real );
SELECT MAX("seasons") FROM "2013_teams";
1-2522473-1
Which teams homeeground is Stemmemyren?
CREATE TABLE "2013_teams" ( "team" text, "home_city" text, "home_ground" text, "in_toppserien_since" real, "first_appearance" real, "seasons" real );
SELECT "team" FROM "2013_teams" WHERE "home_ground"='Stemmemyren';
1-2522473-1
What is the home ground for the team whose home city is Trondheim with 27 seasons?
CREATE TABLE "2013_teams" ( "team" text, "home_city" text, "home_ground" text, "in_toppserien_since" real, "first_appearance" real, "seasons" real );
SELECT "home_ground" FROM "2013_teams" WHERE "seasons"=27 AND "home_city"='Trondheim';
1-2522473-1
What is the home city for the team whose home ground is dnb nor arena?
CREATE TABLE "2013_teams" ( "team" text, "home_city" text, "home_ground" text, "in_toppserien_since" real, "first_appearance" real, "seasons" real );
SELECT "home_city" FROM "2013_teams" WHERE "home_ground"='DnB Nor Arena';
1-2522473-1
What Home city has the home ground Klepp stadion?
CREATE TABLE "2013_teams" ( "team" text, "home_city" text, "home_ground" text, "in_toppserien_since" real, "first_appearance" real, "seasons" real );
SELECT "home_city" FROM "2013_teams" WHERE "home_ground"='Klepp Stadion';
1-2522473-1
How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601?
CREATE TABLE "table1_25244412_2" ( "rank" real, "rank_w_o_hydropower" real, "state" text, "pct_renewable" text, "pct_renewable_w_o_hydro" text, "renewable_electricity_gw_h" real, "renewable_electricity_w_o_hydro_gw_h" real, "total_electricity_gw_h" real );
SELECT COUNT("total_electricity_gw_h") FROM "table1_25244412_2" WHERE "renewable_electricity_w_o_hydro_gw_h"=3601;
1-25244412-2
How many data was given the total electricity in GW-h if % renewable is 92.3%?
CREATE TABLE "table1_25244412_2" ( "rank" real, "rank_w_o_hydropower" real, "state" text, "pct_renewable" text, "pct_renewable_w_o_hydro" text, "renewable_electricity_gw_h" real, "renewable_electricity_w_o_hydro_gw_h" real, "total_electricity_gw_h" real );
SELECT COUNT("total_electricity_gw_h") FROM "table1_25244412_2" WHERE "pct_renewable"='92.3%';
1-25244412-2
What was the maximum rank of the source with renewable percentage w/o hydro is 2.17%?
CREATE TABLE "table1_25244412_2" ( "rank" real, "rank_w_o_hydropower" real, "state" text, "pct_renewable" text, "pct_renewable_w_o_hydro" text, "renewable_electricity_gw_h" real, "renewable_electricity_w_o_hydro_gw_h" real, "total_electricity_gw_h" real );
SELECT MAX("rank") FROM "table1_25244412_2" WHERE "pct_renewable_w_o_hydro"='2.17%';
1-25244412-2
How much was the minimum renewable electricity (GW-h) that is ranked 36?
CREATE TABLE "table1_25244412_2" ( "rank" real, "rank_w_o_hydropower" real, "state" text, "pct_renewable" text, "pct_renewable_w_o_hydro" text, "renewable_electricity_gw_h" real, "renewable_electricity_w_o_hydro_gw_h" real, "total_electricity_gw_h" real );
SELECT MIN("renewable_electricity_gw_h") FROM "table1_25244412_2" WHERE "rank"=36;
1-25244412-2
What was the state with the total electricity generated is 38380 gw-h?
CREATE TABLE "table1_25244412_2" ( "rank" real, "rank_w_o_hydropower" real, "state" text, "pct_renewable" text, "pct_renewable_w_o_hydro" text, "renewable_electricity_gw_h" real, "renewable_electricity_w_o_hydro_gw_h" real, "total_electricity_gw_h" real );
SELECT "state" FROM "table1_25244412_2" WHERE "total_electricity_gw_h"=38380;
1-25244412-2
Who directed the episode titled "Big Time Blogger"?
CREATE TABLE "table1_25246990_2" ( "no_in_series" text, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" text );
SELECT "directed_by" FROM "table1_25246990_2" WHERE "title"='\"Big Time Blogger\"';
1-25246990-2
What number episode in the series had a production code of 111?
CREATE TABLE "table1_25246990_2" ( "no_in_series" text, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" text );
SELECT "no_in_series" FROM "table1_25246990_2" WHERE "prod_code"='111';
1-25246990-2
What number episode in the series had a production code of 110?
CREATE TABLE "table1_25246990_2" ( "no_in_series" text, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" text );
SELECT "no_in_series" FROM "table1_25246990_2" WHERE "prod_code"='110';
1-25246990-2
How many U.S. viewers in millions watched the number 7 episode in the series that was written by Jed Spingarn?
CREATE TABLE "table1_25246990_2" ( "no_in_series" text, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" text );
SELECT "u_s_viewers_millions" FROM "table1_25246990_2" WHERE "written_by"='Jed Spingarn' AND "no_in_series"='7';
1-25246990-2
What was the original U.S. air date of the episode directed by Julian Petrillo?
CREATE TABLE "table1_25246990_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" real );
SELECT "original_u_s_air_date" FROM "table1_25246990_5" WHERE "directed_by"='Julian Petrillo';
1-25246990-5
How many different original U.S. air dates appear where the U.S. viewers were 2.5 million?
CREATE TABLE "table1_25246990_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" real );
SELECT COUNT("original_u_s_air_date") FROM "table1_25246990_5" WHERE "u_s_viewers_millions"='2.5';
1-25246990-5
How many U.S. viewers were there for the episode written by Lazar Saric & Jed Spingarn?
CREATE TABLE "table1_25246990_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" real );
SELECT "u_s_viewers_millions" FROM "table1_25246990_5" WHERE "written_by"='Lazar Saric & Jed Spingarn';
1-25246990-5
How many U.S. viewers were there for the number 4 episode in season?
CREATE TABLE "table1_25246990_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_millions" text, "original_u_s_air_date" text, "prod_code" real );
SELECT "u_s_viewers_millions" FROM "table1_25246990_5" WHERE "no_in_season"=4;
1-25246990-5
Name the least rank
CREATE TABLE "demographics" ( "rank" real, "district" text, "population" real, "growth_rate" text, "sex_ratio" real, "literacy" text, "density_km" real );
SELECT MIN("rank") FROM "demographics";
1-2527063-3
Name the growth rate for hooghly
CREATE TABLE "demographics" ( "rank" real, "district" text, "population" real, "growth_rate" text, "sex_ratio" real, "literacy" text, "density_km" real );
SELECT "growth_rate" FROM "demographics" WHERE "district"='Hooghly';
1-2527063-3
Name the total number of rank for east midnapore
CREATE TABLE "demographics" ( "rank" real, "district" text, "population" real, "growth_rate" text, "sex_ratio" real, "literacy" text, "density_km" real );
SELECT COUNT("rank") FROM "demographics" WHERE "district"='East Midnapore';
1-2527063-3
Name the total number of rank for growth raate for 14.47
CREATE TABLE "demographics" ( "rank" real, "district" text, "population" real, "growth_rate" text, "sex_ratio" real, "literacy" text, "density_km" real );
SELECT COUNT("rank") FROM "demographics" WHERE "growth_rate"='14.47';
1-2527063-3
Who is the champion of the 1994 season?
CREATE TABLE "seasons_summary" ( "season" real, "champion" text, "runner_up" text, "third_place" text, "top_scorer" text, "best_player" text );
SELECT "champion" FROM "seasons_summary" WHERE "season"=1994;
1-2527617-1
Who is the best player in the 1998 season?
CREATE TABLE "seasons_summary" ( "season" real, "champion" text, "runner_up" text, "third_place" text, "top_scorer" text, "best_player" text );
SELECT "best_player" FROM "seasons_summary" WHERE "season"=1998;
1-2527617-1
What was the largest index the year/s forcible rapes numbered 1084?
CREATE TABLE "crime_statistics_1960_2009" ( "year" real, "population" real, "index" real, "violent" real, "property" real, "murder" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT MAX("index") FROM "crime_statistics_1960_2009" WHERE "forcible_rape"=1084;
1-25271777-1
How many violent catagories are listed for the year forcible rapes were 1156?
CREATE TABLE "crime_statistics_1960_2009" ( "year" real, "population" real, "index" real, "violent" real, "property" real, "murder" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT COUNT("violent") FROM "crime_statistics_1960_2009" WHERE "forcible_rape"=1156;
1-25271777-1
What was the largest number of aggravated assaults when there were 3811 robberies?
CREATE TABLE "crime_statistics_1960_2009" ( "year" real, "population" real, "index" real, "violent" real, "property" real, "murder" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT MAX("aggravated_assault") FROM "crime_statistics_1960_2009" WHERE "robbery"=3811;
1-25271777-1
What was the number of murders the year forcible rapes were at 166?
CREATE TABLE "crime_statistics_1960_2009" ( "year" real, "population" real, "index" real, "violent" real, "property" real, "murder" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT "murder" FROM "crime_statistics_1960_2009" WHERE "forcible_rape"=166;
1-25271777-1
How many violent crimes occurred the year that the index was 191037?
CREATE TABLE "crime_statistics_1960_2009" ( "year" real, "population" real, "index" real, "violent" real, "property" real, "murder" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT "violent" FROM "crime_statistics_1960_2009" WHERE "index"=191037;
1-25271777-1
What date did "fast friends" originally air?
CREATE TABLE "table1_25277363_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_25277363_2" WHERE "title"='\"Fast Friends\"';
1-25277363-2
Who wrote episode number 149 in the series?
CREATE TABLE "table1_25277363_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "written_by" FROM "table1_25277363_2" WHERE "no_in_series"=149;
1-25277363-2
What episode number in the series is "tough love"?
CREATE TABLE "table1_25277363_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MAX("no_in_series") FROM "table1_25277363_2" WHERE "title"='\"Tough Love\"';
1-25277363-2
"It's not my job" is the minimum title in no. in season.
CREATE TABLE "table1_25276528_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MIN("no_in_season") FROM "table1_25276528_2" WHERE "title"='\"It''s Not My Job\"';
1-25276528-2
What title did Bill Foster direct ?
CREATE TABLE "table1_25276528_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "title" FROM "table1_25276528_2" WHERE "directed_by"='Bill Foster';
1-25276528-2
Kim Weiskopf and Jeff Franklin wrote all the no. in series.
CREATE TABLE "table1_25276528_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "no_in_series" FROM "table1_25276528_2" WHERE "written_by"='Kim Weiskopf and Jeff Franklin';
1-25276528-2
Which co-stars did Kalyanji-anandji direct in 1963?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" text, "additional_info" text );
SELECT "co_stars" FROM "list_of_songs" WHERE "music_director"='Kalyanji-Anandji' AND "year"='1963';
1-2528382-2
Which co-singers appear in the movie Pyaasa?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" text, "additional_info" text );
SELECT "co_singers" FROM "list_of_songs" WHERE "movie_album"='Pyaasa';
1-2528382-2
What is the additional information in the song mera yaar bana hai dulha
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" text, "additional_info" text );
SELECT "additional_info" FROM "list_of_songs" WHERE "song"='Mera Yaar Bana Hai Dulha';
1-2528382-2
In which years are co-stars mala sinha and amitabh bachchan?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" text, "additional_info" text );
SELECT "year" FROM "list_of_songs" WHERE "co_stars"='Mala Sinha and Amitabh Bachchan';
1-2528382-2
Which song has Drunkard Groom listed as additional information?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" real, "additional_info" text );
SELECT "song" FROM "list_of_songs" WHERE "additional_info"='Drunkard Groom';
1-2528382-1
Who was the lyricist for the song with music directed by madan mohan kohli?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" real, "additional_info" text );
SELECT "lyricist" FROM "list_of_songs" WHERE "music_director"='Madan Mohan Kohli';
1-2528382-1
Which song directed by datta naik had the ending stranza written by Johnny Walker?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" real, "additional_info" text );
SELECT "additional_info" FROM "list_of_songs" WHERE "music_director"='Datta Naik';
1-2528382-1
In which album can Dil De De Nahin Nahin Dil Le Le be found?
CREATE TABLE "list_of_songs" ( "song" text, "singer" text, "co_singers" text, "music_director" text, "lyricist" text, "co_stars" text, "movie_album" text, "year" real, "additional_info" text );
SELECT "movie_album" FROM "list_of_songs" WHERE "song"='Dil De De Nahin Nahin Dil Le Le';
1-2528382-1
What was the GDP for 2002-2005 for the construction center?
CREATE TABLE "gdp_by_value_added" ( "supply_sector_pct_of_gdp_in_current_prices" text, "1993_2001" text, "2002_2005" text, "2006_2009" text, "2010_2012" text );
SELECT "2002_2005" FROM "gdp_by_value_added" WHERE "supply_sector_pct_of_gdp_in_current_prices"='Construction';
1-25282151-1
What was GDP for 2006-2009 for the sector that had a 20.1 GDP for 2010-2012?
CREATE TABLE "gdp_by_value_added" ( "supply_sector_pct_of_gdp_in_current_prices" text, "1993_2001" text, "2002_2005" text, "2006_2009" text, "2010_2012" text );
SELECT "2006_2009" FROM "gdp_by_value_added" WHERE "2010_2012"='20.1';
1-25282151-1
What sector had a 1.4 GDP for 2006-2009?
CREATE TABLE "gdp_by_value_added" ( "supply_sector_pct_of_gdp_in_current_prices" text, "1993_2001" text, "2002_2005" text, "2006_2009" text, "2010_2012" text );
SELECT "supply_sector_pct_of_gdp_in_current_prices" FROM "gdp_by_value_added" WHERE "2006_2009"='1.4';
1-25282151-1
What sector had a 17.3 GDP for 1993-2001?
CREATE TABLE "gdp_by_value_added" ( "supply_sector_pct_of_gdp_in_current_prices" text, "1993_2001" text, "2002_2005" text, "2006_2009" text, "2010_2012" text );
SELECT "supply_sector_pct_of_gdp_in_current_prices" FROM "gdp_by_value_added" WHERE "1993_2001"='17.3';
1-25282151-1
The sector that had a 8.7 GDP for 2006-2009 had what GDP for 1993-2001?
CREATE TABLE "gdp_by_value_added" ( "supply_sector_pct_of_gdp_in_current_prices" text, "1993_2001" text, "2002_2005" text, "2006_2009" text, "2010_2012" text );
SELECT "1993_2001" FROM "gdp_by_value_added" WHERE "2006_2009"='8.7';
1-25282151-1
What is the November 3 result when June 10-11 is 147?
CREATE TABLE "table1_25284864_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25284864_3" WHERE "june_10_11"='147';
1-25284864-3
What is the November 3 result when the result for January 15-16 is 141?
CREATE TABLE "table1_25284864_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25284864_3" WHERE "january_15_16"='141';
1-25284864-3
What is the November 3 result when the June 10-11 is 147?
CREATE TABLE "table1_25284864_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25284864_3" WHERE "june_10_11"='147';
1-25284864-3
What June 10-11 is is that corresponds to March 28, 1968?
CREATE TABLE "table1_25284864_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25284864_3" WHERE "march_27_29"='March 28, 1968';
1-25284864-3
What January 15-16 is is that corresponds to November 3, 2013?
CREATE TABLE "table1_25284864_3" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "january_15_16" FROM "table1_25284864_3" WHERE "november_3"='November 3, 2013';
1-25284864-3
When 127 is on June 10th to 11th what is November 3rd?
CREATE TABLE "table1_25286976_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25286976_2" WHERE "june_10_11"='127';
1-25286976-2
When 129 is on March 27th to 29th what is June 10th to 11th?
CREATE TABLE "table1_25286976_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25286976_2" WHERE "march_27_29"='129';
1-25286976-2
When 139 is on March 27th to 29th what is August 21st to 22nd?
CREATE TABLE "table1_25286976_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "august_21_22" FROM "table1_25286976_2" WHERE "march_27_29"='139';
1-25286976-2
During November 3 where august 21-22 is august 21, 2017?
CREATE TABLE "table1_25287007_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25287007_2" WHERE "august_21_22"='August 21, 2017';
1-25287007-2
How many solar eclipse on June 10-11, while November 3 is 153?
CREATE TABLE "table1_25287007_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25287007_2" WHERE "november_3"='153';
1-25287007-2
How many solar eclipse during August 21-22 where June 10-11 on June 11, 1983?
CREATE TABLE "table1_25287007_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("august_21_22") FROM "table1_25287007_2" WHERE "june_10_11"='June 11, 1983';
1-25287007-2