question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What position was Parsons in for 1992?
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 "position" FROM "nascar_sprint_cup_series" WHERE "year"=1992;
1-2597876-1
Who is every young rider classification when Jelle Vanendert is the winner?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "young_rider_classification" text, "team_classification" text, "combativity_award" text );
SELECT "young_rider_classification" FROM "classification_leadership" WHERE "winner"='Jelle Vanendert';
1-25999087-2
Who is every young rider classification if combativity award is Yannick Talabardon?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "young_rider_classification" text, "team_classification" text, "combativity_award" text );
SELECT "young_rider_classification" FROM "classification_leadership" WHERE "combativity_award"='Yannick Talabardon';
1-25999087-2
How many mountains classifications when Rui Costa is the winner?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "young_rider_classification" text, "team_classification" text, "combativity_award" text );
SELECT COUNT("mountains_classification") FROM "classification_leadership" WHERE "winner"='Rui Costa';
1-25999087-2
What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "young_rider_classification" text, "team_classification" text, "combativity_award" text );
SELECT "team_classification" FROM "classification_leadership" WHERE "points_classification"='Philippe Gilbert' AND "mountains_classification"='Johnny Hoogerland' AND "stage"<9.0;
1-25999087-2
how many million u.s. viewers watched the episode directed by dan lerner?
CREATE TABLE "table1_25997153_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_25997153_1" WHERE "directed_by"='Dan Lerner';
1-25997153-1
what is the latest episode in the series that had 16.17 million u.s. viewers?
CREATE TABLE "table1_25997153_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT MAX("no_in_series") FROM "table1_25997153_1" WHERE "u_s_viewers_million"='16.17';
1-25997153-1
What is the title of the episode with the production code 3x5362?
CREATE TABLE "table1_25997153_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_25997153_1" WHERE "production_code"='3X5362';
1-25997153-1
What Nature reserve number was established on 19961220 20.12.1996
CREATE TABLE "table1_26013618_1" ( "nsg_nr" real, "name_of_the_nature_reserve" text, "district_town" text, "area_ha" text, "date_established" text );
SELECT MIN("nsg_nr") FROM "table1_26013618_1" WHERE "date_established"='19961220 20.12.1996';
1-26013618-1
How many reserves were established on 19740329 29.03.1974?
CREATE TABLE "table1_26013618_1" ( "nsg_nr" real, "name_of_the_nature_reserve" text, "district_town" text, "area_ha" text, "date_established" text );
SELECT COUNT("nsg_nr") FROM "table1_26013618_1" WHERE "date_established"='19740329 29.03.1974';
1-26013618-1
When was Stellbrookmoor established?
CREATE TABLE "table1_26013618_1" ( "nsg_nr" real, "name_of_the_nature_reserve" text, "district_town" text, "area_ha" text, "date_established" text );
SELECT "date_established" FROM "table1_26013618_1" WHERE "name_of_the_nature_reserve"='Stellbrookmoor';
1-26013618-1
What town has the reserve with an area of 163,62?
CREATE TABLE "table1_26013618_1" ( "nsg_nr" real, "name_of_the_nature_reserve" text, "district_town" text, "area_ha" text, "date_established" text );
SELECT "district_town" FROM "table1_26013618_1" WHERE "area_ha"='163,62';
1-26013618-1
How many reserves are in Herzogtum Lauenburg with an area of 123,14?
CREATE TABLE "table1_26013618_1" ( "nsg_nr" real, "name_of_the_nature_reserve" text, "district_town" text, "area_ha" text, "date_established" text );
SELECT COUNT("nsg_nr") FROM "table1_26013618_1" WHERE "district_town"='Herzogtum Lauenburg' AND "area_ha"='123,14';
1-26013618-1
How many names does nature reserve 54 have?
CREATE TABLE "table1_26013618_1" ( "nsg_nr" real, "name_of_the_nature_reserve" text, "district_town" text, "area_ha" text, "date_established" text );
SELECT COUNT("name_of_the_nature_reserve") FROM "table1_26013618_1" WHERE "nsg_nr"=54;
1-26013618-1
Which episode did 18.74 million people tune in?
CREATE TABLE "table1_25996938_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_25996938_1" WHERE "u_s_viewers_million"='18.74';
1-25996938-1
Which prod code was series 11?
CREATE TABLE "table1_25996938_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "production_code" FROM "table1_25996938_1" WHERE "no_in_series"=11;
1-25996938-1
What is the highest localities?
CREATE TABLE "table1_26007767_1" ( "metropolitan_ring" text, "localities" real, "total" real, "jews_and_others_1" real, "thereof_jews" real, "arabs" real, "population_density_per_km" text, "annual_population_growth_rate" text );
SELECT MAX("localities") FROM "table1_26007767_1";
1-26007767-1
What is the least arabs when the metropolitan ring is inner ring 3?
CREATE TABLE "table1_26007767_1" ( "metropolitan_ring" text, "localities" real, "total" real, "jews_and_others_1" real, "thereof_jews" real, "arabs" real, "population_density_per_km" text, "annual_population_growth_rate" text );
SELECT MIN("arabs") FROM "table1_26007767_1" WHERE "metropolitan_ring"='Inner Ring 3';
1-26007767-1
How many time is the population density (per km²) is 2.5?
CREATE TABLE "table1_26007767_1" ( "metropolitan_ring" text, "localities" real, "total" real, "jews_and_others_1" real, "thereof_jews" real, "arabs" real, "population_density_per_km" text, "annual_population_growth_rate" text );
SELECT COUNT("localities") FROM "table1_26007767_1" WHERE "population_density_per_km"='2.5';
1-26007767-1
What is the metropolitan ring when thereof: jews is 30600?
CREATE TABLE "table1_26007767_1" ( "metropolitan_ring" text, "localities" real, "total" real, "jews_and_others_1" real, "thereof_jews" real, "arabs" real, "population_density_per_km" text, "annual_population_growth_rate" text );
SELECT "metropolitan_ring" FROM "table1_26007767_1" WHERE "thereof_jews"=30600;
1-26007767-1
What is the number of stages where the teams classification leader is Cervélo Testteam?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "young_rider_classification" text, "teams_classification" text );
SELECT COUNT("stage") FROM "classification_leadership" WHERE "teams_classification"='Cervélo TestTeam';
1-26010857-13
How many stages did Team Sky lead the teams classification?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "young_rider_classification" text, "teams_classification" text );
SELECT MAX("stage") FROM "classification_leadership" WHERE "teams_classification"='Team Sky';
1-26010857-13
Who leads the general classification in stage 3?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "young_rider_classification" text, "teams_classification" text );
SELECT "general_classification" FROM "classification_leadership" WHERE "stage"=3;
1-26010857-13
How many production codes are there for episode number 45?
CREATE TABLE "table1_2602958_4" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT COUNT("prod_code") FROM "table1_2602958_4" WHERE "no"=45;
1-2602958-4
Who wrote episode 6 in season 3?
CREATE TABLE "table1_2602958_4" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "writer_s" FROM "table1_2602958_4" WHERE "num"=6;
1-2602958-4
Which episodein season 3 had 175020 for a production code?
CREATE TABLE "table1_2602958_4" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "num" FROM "table1_2602958_4" WHERE "prod_code"=175020;
1-2602958-4
How many production codes does the episode "keg! max!" have?
CREATE TABLE "table1_2602958_4" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT COUNT("prod_code") FROM "table1_2602958_4" WHERE "title"='\"Keg! Max!\"';
1-2602958-4
What was the original air date of "they shoot gilmores, don't they?"
CREATE TABLE "table1_2602958_4" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "original_air_date" FROM "table1_2602958_4" WHERE "title"='\"They Shoot Gilmores, Don''t They?\"';
1-2602958-4
Who wrote episode number 45?
CREATE TABLE "table1_2602958_4" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "writer_s" FROM "table1_2602958_4" WHERE "no"=45;
1-2602958-4
Who directed the episode "hammers and veils"?
CREATE TABLE "table1_2602958_3" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "director" FROM "table1_2602958_3" WHERE "title"='\"Hammers and Veils\"';
1-2602958-3
How many viewers in millions for episode number 38?
CREATE TABLE "table1_2602958_3" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_2602958_3" WHERE "no"=38;
1-2602958-3
Who directed the episode with production code 227451?
CREATE TABLE "table1_2602958_3" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "director" FROM "table1_2602958_3" WHERE "prod_code"=227451;
1-2602958-3
What is the original air date for the episode directed by kevin dowling?
CREATE TABLE "table1_2602958_3" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "original_air_date" FROM "table1_2602958_3" WHERE "director"='Kevin Dowling';
1-2602958-3
How many episodes are titled "like mother, like daughter"?
CREATE TABLE "table1_2602958_3" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT COUNT("original_air_date") FROM "table1_2602958_3" WHERE "title"='\"Like Mother, Like Daughter\"';
1-2602958-3
what is ba - running bear where b - bishop is rn - running stag?
CREATE TABLE "table1_2603017_2" ( "ab_angry_boar" text, "b_bishop" text, "ba_running_bear" text, "bb_blind_bear" text, "bc_beast_cadet" text );
SELECT "ba_running_bear" FROM "table1_2603017_2" WHERE "b_bishop"='RN - Running Stag';
1-2603017-2
what is b - bishop where ab - angry boar is vw - vertical wolf?
CREATE TABLE "table1_2603017_2" ( "ab_angry_boar" text, "b_bishop" text, "ba_running_bear" text, "bb_blind_bear" text, "bc_beast_cadet" text );
SELECT "b_bishop" FROM "table1_2603017_2" WHERE "ab_angry_boar"='VW - Vertical Wolf';
1-2603017-2
what is ba - running bear where ab - angry boar is os - ox soldier?
CREATE TABLE "table1_2603017_2" ( "ab_angry_boar" text, "b_bishop" text, "ba_running_bear" text, "bb_blind_bear" text, "bc_beast_cadet" text );
SELECT "ba_running_bear" FROM "table1_2603017_2" WHERE "ab_angry_boar"='OS - Ox Soldier';
1-2603017-2
what is b - bishop where bc - beast cadet is gr - great dove?
CREATE TABLE "table1_2603017_2" ( "ab_angry_boar" text, "b_bishop" text, "ba_running_bear" text, "bb_blind_bear" text, "bc_beast_cadet" text );
SELECT "b_bishop" FROM "table1_2603017_2" WHERE "bc_beast_cadet"='GR - Great Dove';
1-2603017-2
what is bb - blind bear where ba - running bear is mf - mountain falcon?
CREATE TABLE "table1_2603017_2" ( "ab_angry_boar" text, "b_bishop" text, "ba_running_bear" text, "bb_blind_bear" text, "bc_beast_cadet" text );
SELECT "bb_blind_bear" FROM "table1_2603017_2" WHERE "ba_running_bear"='MF - Mountain Falcon';
1-2603017-2
what is bb - blind bear where ba - running bear is tc - tile chariot?
CREATE TABLE "table1_2603017_2" ( "ab_angry_boar" text, "b_bishop" text, "ba_running_bear" text, "bb_blind_bear" text, "bc_beast_cadet" text );
SELECT "bb_blind_bear" FROM "table1_2603017_2" WHERE "ba_running_bear"='TC - Tile Chariot';
1-2603017-2
What is the minimum die size for an SM count of exactly 2?
CREATE TABLE "table1_26040604_1" ( "model" text, "launch" text, "code_name" text, "transistors_million" real, "die_size_mm_2" real, "bus_interface" text, "memory_mb" text, "sm_count" real, "core_config_1_3" text, "core_m_hz" real, "shader_m_hz" real, "memory_m_hz" text, "pixel_gp_s" text, "t...
SELECT MIN("die_size_mm_2") FROM "table1_26040604_1" WHERE "sm_count"=2;
1-26040604-1
How many die sizes have a texture of exactly 34?
CREATE TABLE "table1_26040604_1" ( "model" text, "launch" text, "code_name" text, "transistors_million" real, "die_size_mm_2" real, "bus_interface" text, "memory_mb" text, "sm_count" real, "core_config_1_3" text, "core_m_hz" real, "shader_m_hz" real, "memory_m_hz" text, "pixel_gp_s" text, "t...
SELECT COUNT("die_size_mm_2") FROM "table1_26040604_1" WHERE "texture_gt_s"='34';
1-26040604-1
What model has a launch of September 3, 2010?
CREATE TABLE "table1_26040604_1" ( "model" text, "launch" text, "code_name" text, "transistors_million" real, "die_size_mm_2" real, "bus_interface" text, "memory_mb" text, "sm_count" real, "core_config_1_3" text, "core_m_hz" real, "shader_m_hz" real, "memory_m_hz" text, "pixel_gp_s" text, "t...
SELECT "model" FROM "table1_26040604_1" WHERE "launch"='September 3, 2010';
1-26040604-1
What was the DRAM type of an SM Count of 6?
CREATE TABLE "table1_26040604_1" ( "model" text, "launch" text, "code_name" text, "transistors_million" real, "die_size_mm_2" real, "bus_interface" text, "memory_mb" text, "sm_count" real, "core_config_1_3" text, "core_m_hz" real, "shader_m_hz" real, "memory_m_hz" text, "pixel_gp_s" text, "t...
SELECT "dram_type" FROM "table1_26040604_1" WHERE "sm_count"=6;
1-26040604-1
Who wrote the movie positioned at 8 on the list?
CREATE TABLE "table1_2602958_5" ( "no" real, "num" real, "title" text, "director" text, "writer_s" text, "original_air_date" text, "prod_code" real, "u_s_viewers_million" text );
SELECT "writer_s" FROM "table1_2602958_5" WHERE "num"=8;
1-2602958-5
What district does the road with a MDR number of 47 pass through?
CREATE TABLE "table1_26036389_1" ( "sr_no" real, "name_of_road" text, "passes_through_district_s" text, "length_in_km" text, "mdr_no" real );
SELECT "passes_through_district_s" FROM "table1_26036389_1" WHERE "mdr_no"=47;
1-26036389-1
What is the MDR number of Rait Charhi Dharamshala?
CREATE TABLE "table1_26036389_1" ( "sr_no" real, "name_of_road" text, "passes_through_district_s" text, "length_in_km" text, "mdr_no" real );
SELECT MIN("mdr_no") FROM "table1_26036389_1" WHERE "name_of_road"='Rait Charhi Dharamshala';
1-26036389-1
What is the Sr. number of Banikhet Dalhouse Khajiar?
CREATE TABLE "table1_26036389_1" ( "sr_no" real, "name_of_road" text, "passes_through_district_s" text, "length_in_km" text, "mdr_no" real );
SELECT MAX("sr_no") FROM "table1_26036389_1" WHERE "name_of_road"='Banikhet Dalhouse Khajiar';
1-26036389-1
What is the smallest number of runs?
CREATE TABLE "most_career_runs" ( "rank" real, "runs" real, "average" text, "strike_rate" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT MIN("runs") FROM "most_career_runs";
1-26041144-10
How many innings are there when the average is 32.3?
CREATE TABLE "most_career_runs" ( "rank" real, "runs" real, "average" text, "strike_rate" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT MIN("innings") FROM "most_career_runs" WHERE "average"='32.3';
1-26041144-10
What was the average when the strike rate is 75.78?
CREATE TABLE "most_career_runs" ( "rank" real, "runs" real, "average" text, "strike_rate" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT "average" FROM "most_career_runs" WHERE "strike_rate"='75.78';
1-26041144-10
What is the catches maximum number?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "catches" real, "stumps" real, "player" text, "period" text );
SELECT MAX("catches") FROM "most_dismissals_catches_plus_stumpings_i";
1-26041144-16
If the player is Hashan Tillakaratne, what is the catches minimum?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "catches" real, "stumps" real, "player" text, "period" text );
SELECT MIN("catches") FROM "most_dismissals_catches_plus_stumpings_i" WHERE "player"='Hashan Tillakaratne';
1-26041144-16
what is the period if the player is Hashan Tillakaratne?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "catches" real, "stumps" real, "player" text, "period" text );
SELECT "period" FROM "most_dismissals_catches_plus_stumpings_i" WHERE "player"='Hashan Tillakaratne';
1-26041144-16
What is the ranktotal number if the Hashan Tillakaratne?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "catches" real, "stumps" real, "player" text, "period" text );
SELECT COUNT("rank") FROM "most_dismissals_catches_plus_stumpings_i" WHERE "player"='Hashan Tillakaratne';
1-26041144-16
If the catches is 131, what is the rank total number?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "catches" real, "stumps" real, "player" text, "period" text );
SELECT COUNT("rank") FROM "most_dismissals_catches_plus_stumpings_i" WHERE "catches"=131;
1-26041144-16
What was the maximum burglary statistics if the property crimes is 168630?
CREATE TABLE "crime_statistics_1995_2011_non_homicide" ( "year" real, "population" real, "total" real, "violent" real, "property_crimes" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT MAX("burglary") FROM "crime_statistics_1995_2011_non_homicide" WHERE "property_crimes"=168630;
1-26060884-2
How many burglary crimes were committed if the forcible rapes were 1233?
CREATE TABLE "crime_statistics_1995_2011_non_homicide" ( "year" real, "population" real, "total" real, "violent" real, "property_crimes" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT "burglary" FROM "crime_statistics_1995_2011_non_homicide" WHERE "forcible_rape"=1233;
1-26060884-2
How many vehicle thefts data were recorded if forcible rape is 1232?
CREATE TABLE "crime_statistics_1995_2011_non_homicide" ( "year" real, "population" real, "total" real, "violent" real, "property_crimes" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT COUNT("vehicle_theft") FROM "crime_statistics_1995_2011_non_homicide" WHERE "forcible_rape"=1232;
1-26060884-2
How many vehicle theft data were recorded for a year with a population of 4465430?
CREATE TABLE "crime_statistics_1995_2011_non_homicide" ( "year" real, "population" real, "total" real, "violent" real, "property_crimes" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT COUNT("vehicle_theft") FROM "crime_statistics_1995_2011_non_homicide" WHERE "population"=4465430;
1-26060884-2
What was the minimum property crimes stats if the burglary committed was 45350?
CREATE TABLE "crime_statistics_1995_2011_non_homicide" ( "year" real, "population" real, "total" real, "violent" real, "property_crimes" real, "forcible_rape" real, "robbery" real, "aggravated_assault" real, "burglary" real, "larceny_theft" real, "vehicle_theft" real );
SELECT MIN("property_crimes") FROM "crime_statistics_1995_2011_non_homicide" WHERE "burglary"=45350;
1-26060884-2
What was kumar sangakkara's average?
CREATE TABLE "highest_career_averages" ( "rank" real, "average" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT "average" FROM "highest_career_averages" WHERE "player"='Kumar Sangakkara';
1-26041144-11
Who was the player with a 36.74 average?
CREATE TABLE "highest_career_averages" ( "rank" real, "average" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT "player" FROM "highest_career_averages" WHERE "average"='36.74';
1-26041144-11
What is the rank of the player with the 39.69 average?
CREATE TABLE "highest_career_averages" ( "rank" real, "average" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT "rank" FROM "highest_career_averages" WHERE "average"='39.69';
1-26041144-11
What is the lowest number of matches for a record holder?
CREATE TABLE "highest_career_averages" ( "rank" real, "average" text, "player" text, "matches" real, "innings" real, "period" text );
SELECT MIN("matches") FROM "highest_career_averages";
1-26041144-11
When theora is 2.3, how much is the h.264?
CREATE TABLE "table1_26099252_1" ( "browser" text, "operating_system" text, "latest_stable_release" text, "theora" text, "h_264" text, "vp8_web_m" text, "vp9_web_m" text );
SELECT "h_264" FROM "table1_26099252_1" WHERE "theora"='2.3';
1-26099252-1
When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )?
CREATE TABLE "table1_26099252_1" ( "browser" text, "operating_system" text, "latest_stable_release" text, "theora" text, "h_264" text, "vp8_web_m" text, "vp9_web_m" text );
SELECT "vp9_web_m" FROM "table1_26099252_1" WHERE "vp8_web_m"='6.0';
1-26099252-1
When vp8 ( webm ) is 4.4, how much is vp9 ( webm )
CREATE TABLE "table1_26099252_1" ( "browser" text, "operating_system" text, "latest_stable_release" text, "theora" text, "h_264" text, "vp8_web_m" text, "vp9_web_m" text );
SELECT "vp9_web_m" FROM "table1_26099252_1" WHERE "vp8_web_m"='4.4';
1-26099252-1
What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no.
CREATE TABLE "table1_26099252_1" ( "browser" text, "operating_system" text, "latest_stable_release" text, "theora" text, "h_264" text, "vp8_web_m" text, "vp9_web_m" text );
SELECT "latest_stable_release" FROM "table1_26099252_1" WHERE "vp9_web_m"='No' AND "h_264"='3.0';
1-26099252-1
When h.264 is 9.0, how much is vp9 ( webm )
CREATE TABLE "table1_26099252_1" ( "browser" text, "operating_system" text, "latest_stable_release" text, "theora" text, "h_264" text, "vp8_web_m" text, "vp9_web_m" text );
SELECT "vp9_web_m" FROM "table1_26099252_1" WHERE "h_264"='9.0';
1-26099252-1
Name the peletier for systematics being million 1
CREATE TABLE "see_also" ( "shortscale_comparison" text, "chuquet" text, "peletier" text, "systematics" text, "base_10" text, "si_prefix" text );
SELECT "peletier" FROM "see_also" WHERE "systematics"='Million 1';
1-260938-1
Name the si prefix for thousand chuquet
CREATE TABLE "see_also" ( "shortscale_comparison" text, "chuquet" text, "peletier" text, "systematics" text, "base_10" text, "si_prefix" text );
SELECT "si_prefix" FROM "see_also" WHERE "chuquet"='thousand';
1-260938-1
Name the base 10 for peletier for bi llion
CREATE TABLE "see_also" ( "shortscale_comparison" text, "chuquet" text, "peletier" text, "systematics" text, "base_10" text, "si_prefix" text );
SELECT "base_10" FROM "see_also" WHERE "peletier"='Bi llion';
1-260938-1
Name the total number of peletier for shortscale comparison billion
CREATE TABLE "see_also" ( "shortscale_comparison" text, "chuquet" text, "peletier" text, "systematics" text, "base_10" text, "si_prefix" text );
SELECT COUNT("peletier") FROM "see_also" WHERE "shortscale_comparison"='Billion';
1-260938-1
Name the base 10 for shortscale comparison for billion
CREATE TABLE "see_also" ( "shortscale_comparison" text, "chuquet" text, "peletier" text, "systematics" text, "base_10" text, "si_prefix" text );
SELECT "base_10" FROM "see_also" WHERE "shortscale_comparison"='Billion';
1-260938-1
What is the branding of the callsign DWBA-TV?
CREATE TABLE "studio_23" ( "branding" text, "callsign" text, "ch_num" text, "station_type" text, "power_k_w_erp" text, "location_transmitter_site" text );
SELECT "branding" FROM "studio_23" WHERE "callsign"='DWBA-TV';
1-2610582-3
What is the station type of DWMC-TV?
CREATE TABLE "studio_23" ( "branding" text, "callsign" text, "ch_num" text, "station_type" text, "power_k_w_erp" text, "location_transmitter_site" text );
SELECT "station_type" FROM "studio_23" WHERE "callsign"='DWMC-TV';
1-2610582-3
What is the location that has a power of 5kw (10kw ERP)?
CREATE TABLE "studio_23" ( "branding" text, "callsign" text, "ch_num" text, "station_type" text, "power_k_w_erp" text, "location_transmitter_site" text );
SELECT "location_transmitter_site" FROM "studio_23" WHERE "power_k_w_erp"='5kW (10kW ERP)';
1-2610582-3
What is the power, in kW, of channel TV-23, callsign DYCG-TV?
CREATE TABLE "studio_23" ( "branding" text, "callsign" text, "ch_num" text, "station_type" text, "power_k_w_erp" text, "location_transmitter_site" text );
SELECT "power_k_w_erp" FROM "studio_23" WHERE "ch_num"='TV-23' AND "callsign"='DYCG-TV';
1-2610582-3
What's the power for General Santos?
CREATE TABLE "regional" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "location" text );
SELECT "power_k_w" FROM "regional" WHERE "location"='General Santos';
1-2610582-7
What bran is the callsign dytc-fm?
CREATE TABLE "regional" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "location" text );
SELECT "branding" FROM "regional" WHERE "callsign"='DYTC-FM';
1-2610582-7
What frequency is dxec-fm?
CREATE TABLE "regional" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "location" text );
SELECT "frequency" FROM "regional" WHERE "callsign"='DXEC-FM';
1-2610582-7
Who was the opponent when there was 117 rushing yards?
CREATE TABLE "2013_season" ( "rank" real, "player" text, "year" real, "opponent" text, "passing_yards" real, "rushing_yards" real, "total_offense" real );
SELECT "opponent" FROM "2013_season" WHERE "rushing_yards"=117;
1-26108103-2
What was the earliest year?
CREATE TABLE "2013_season" ( "rank" real, "player" text, "year" real, "opponent" text, "passing_yards" real, "rushing_yards" real, "total_offense" real );
SELECT MIN("year") FROM "2013_season";
1-26108103-2
Who was the opponent when there was 81 rushing yards?
CREATE TABLE "2013_season" ( "rank" real, "player" text, "year" real, "opponent" text, "passing_yards" real, "rushing_yards" real, "total_offense" real );
SELECT "opponent" FROM "2013_season" WHERE "rushing_yards"=81;
1-26108103-2
How many rushing yards where there when the opponent was Indiana and there was 503 passing yards?
CREATE TABLE "2013_season" ( "rank" real, "player" text, "year" real, "opponent" text, "passing_yards" real, "rushing_yards" real, "total_offense" real );
SELECT "rushing_yards" FROM "2013_season" WHERE "opponent"='Indiana' AND "passing_yards"=503;
1-26108103-2
Who was the opponent when Devin Gardner was the player?
CREATE TABLE "2013_season" ( "rank" real, "player" text, "year" real, "opponent" text, "passing_yards" real, "rushing_yards" real, "total_offense" real );
SELECT "opponent" FROM "2013_season" WHERE "player"='Devin Gardner';
1-26108103-2
How many points were scored on pole services?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "podiums" real, "points" text, "position" text );
SELECT "points" FROM "career_summary" WHERE "team"='Pole Services';
1-26124171-1
How many teams were in the series championnat de france formula renault 2.0?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "podiums" real, "points" text, "position" text );
SELECT "team" FROM "career_summary" WHERE "series"='Championnat de France Formula Renault 2.0';
1-26124171-1
What is the area (km2) for the place with a 2010 population of 153085?
CREATE TABLE "bukidnon" ( "city_municipality" text, "date_of_creation" text, "area_km_2" text, "population_2010" real, "income_classification_dof" text );
SELECT "area_km_2" FROM "bukidnon" WHERE "population_2010"=153085;
1-261222-1
How many city/municipalties have an area (km2) of 506.64?
CREATE TABLE "bukidnon" ( "city_municipality" text, "date_of_creation" text, "area_km_2" text, "population_2010" real, "income_classification_dof" text );
SELECT COUNT("city_municipality") FROM "bukidnon" WHERE "area_km_2"='506.64';
1-261222-1
How many places have an area of 409.41 (km2)?
CREATE TABLE "bukidnon" ( "city_municipality" text, "date_of_creation" text, "area_km_2" text, "population_2010" real, "income_classification_dof" text );
SELECT COUNT("population_2010") FROM "bukidnon" WHERE "area_km_2"='409.41';
1-261222-1
What day was kibawe created?
CREATE TABLE "bukidnon" ( "city_municipality" text, "date_of_creation" text, "area_km_2" text, "population_2010" real, "income_classification_dof" text );
SELECT "date_of_creation" FROM "bukidnon" WHERE "city_municipality"='Kibawe';
1-261222-1
How many places are named manolo fortich?
CREATE TABLE "bukidnon" ( "city_municipality" text, "date_of_creation" text, "area_km_2" text, "population_2010" real, "income_classification_dof" text );
SELECT COUNT("area_km_2") FROM "bukidnon" WHERE "city_municipality"='Manolo Fortich';
1-261222-1
Which player for Project-40 in his college team?
CREATE TABLE "super_draft" ( "season" real, "player" text, "position" text, "nationality" text, "team" text, "previous_college_team" text );
SELECT "player" FROM "super_draft" WHERE "previous_college_team"='Project-40';
1-26141160-2
Dallas Burn's draft pick was which position?
CREATE TABLE "super_draft" ( "season" real, "player" text, "position" text, "nationality" text, "team" text, "previous_college_team" text );
SELECT "position" FROM "super_draft" WHERE "team"='Dallas Burn';
1-26141160-2
Who wrote the episode that had 1.08 million U.S. viewers?
CREATE TABLE "table1_26136228_3" ( "series_no" real, "episode_no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_26136228_3" WHERE "u_s_viewers_millions"='1.08';
1-26136228-3
Who directed episode 11 in the series?
CREATE TABLE "table1_26136228_3" ( "series_no" real, "episode_no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_26136228_3" WHERE "series_no"=11;
1-26136228-3
What episode number in the season had 1.05 million U.S. viewers?
CREATE TABLE "table1_26136228_3" ( "series_no" real, "episode_no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT MAX("episode_no") FROM "table1_26136228_3" WHERE "u_s_viewers_millions"='1.05';
1-26136228-3
What is the name of the episode that had 8.51 million viewers?
CREATE TABLE "episodes" ( "episode_num" real, "series_num" real, "title" text, "director" text, "writer" text, "original_airdate" text, "viewers_in_millions" text );
SELECT "title" FROM "episodes" WHERE "viewers_in_millions"='8.51';
1-26139405-1