question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
If the proteam is Jacksonville bulls, what is the position?
CREATE TABLE "third_round" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "pro_team" text, "college" text );
SELECT "position" FROM "third_round" WHERE "pro_team"='Jacksonville Bulls';
1-27132791-3
If the college is SMU, what is the position?
CREATE TABLE "third_round" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "pro_team" text, "college" text );
SELECT "position" FROM "third_round" WHERE "college"='SMU';
1-27132791-3
Who wrote the episode with the production code of 3t7255?
CREATE TABLE "table1_27116696_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 "written_by" FROM "table1_27116696_1" WHERE "production_code"='3T7255';
1-27116696-1
How many U.S. viewers (million) watched the episode directed by Allison Liddi-Brown?
CREATE TABLE "table1_27116696_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_27116696_1" WHERE "directed_by"='Allison Liddi-Brown';
1-27116696-1
What is the total number of production code listings of episodes written by Matthew Lau?
CREATE TABLE "table1_27116696_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 COUNT("production_code") FROM "table1_27116696_1" WHERE "written_by"='Matthew Lau';
1-27116696-1
What was the prize pool in New Orleans?
CREATE TABLE "nsc_events_and_division_1_winners" ( "year" real, "winner" text, "location" text, "entrants" real, "winners_prize" text, "total_prize_pool" text );
SELECT "total_prize_pool" FROM "nsc_events_and_division_1_winners" WHERE "location"='New Orleans';
1-2715355-1
How many prizes were available in the competition where 696 people entered?
CREATE TABLE "nsc_events_and_division_1_winners" ( "year" real, "winner" text, "location" text, "entrants" real, "winners_prize" text, "total_prize_pool" text );
SELECT COUNT("winners_prize") FROM "nsc_events_and_division_1_winners" WHERE "entrants"=696;
1-2715355-1
Name the accession number for rhodopseudomonas palustris
CREATE TABLE "homologs" ( "genus_species" text, "gene_name" text, "accession_number" text, "sequence_length" text, "sequence_similarity" real );
SELECT "accession_number" FROM "homologs" WHERE "genus_species"='Rhodopseudomonas palustris';
1-27155678-2
Name the genus/species of accession number bx897699.1
CREATE TABLE "homologs" ( "genus_species" text, "gene_name" text, "accession_number" text, "sequence_length" text, "sequence_similarity" real );
SELECT "genus_species" FROM "homologs" WHERE "accession_number"='BX897699.1';
1-27155678-2
Name the accession number for sequence similarity being 54
CREATE TABLE "homologs" ( "genus_species" text, "gene_name" text, "accession_number" text, "sequence_length" text, "sequence_similarity" real );
SELECT "accession_number" FROM "homologs" WHERE "sequence_similarity"=54;
1-27155678-2
Name the gene name for methylobacterium nodulans
CREATE TABLE "homologs" ( "genus_species" text, "gene_name" text, "accession_number" text, "sequence_length" text, "sequence_similarity" real );
SELECT "gene_name" FROM "homologs" WHERE "genus_species"='Methylobacterium nodulans';
1-27155678-2
Name the gene name for accession number bx897700.1
CREATE TABLE "homologs" ( "genus_species" text, "gene_name" text, "accession_number" text, "sequence_length" text, "sequence_similarity" real );
SELECT "gene_name" FROM "homologs" WHERE "accession_number"='BX897700.1';
1-27155678-2
What was the minimum % funded of the project that was closed on 2012-05-18?
CREATE TABLE "ten_largest_successfully_completed_kicks" ( "rank" real, "total_usd" real, "project_name" text, "creator" text, "category" text, "pct_funded" real, "backers" real, "closing_date" text );
SELECT MIN("pct_funded") FROM "ten_largest_successfully_completed_kicks" WHERE "closing_date"='2012-05-18';
1-27155990-1
What was the maximum total USD collected by Pebble Technology?
CREATE TABLE "ten_largest_successfully_completed_kicks" ( "rank" real, "total_usd" real, "project_name" text, "creator" text, "category" text, "pct_funded" real, "backers" real, "closing_date" text );
SELECT MAX("total_usd") FROM "ten_largest_successfully_completed_kicks" WHERE "creator"='Pebble Technology';
1-27155990-1
What was the category of the project name Mighty No. 9?
CREATE TABLE "ten_largest_successfully_completed_kicks" ( "rank" real, "total_usd" real, "project_name" text, "creator" text, "category" text, "pct_funded" real, "backers" real, "closing_date" text );
SELECT "category" FROM "ten_largest_successfully_completed_kicks" WHERE "project_name"='Mighty No. 9';
1-27155990-1
Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times?
CREATE TABLE "ten_largest_successfully_completed_kicks" ( "rank" real, "total_usd" real, "project_name" text, "creator" text, "category" text, "pct_funded" real, "backers" real, "closing_date" text );
SELECT COUNT("rank") FROM "ten_largest_successfully_completed_kicks" WHERE "project_name"='Pebble: E-Paper Watch for iPhone and Android';
1-27155990-1
How many league apps did the player with 11 team goals have?
CREATE TABLE "player_statistics" ( "position" text, "nationality" text, "name" text, "league_apps" real, "league_goals" real, "fa_cup_apps" real, "fa_cup_goals" real, "total_apps" real, "total_goals" real );
SELECT "league_apps" FROM "player_statistics" WHERE "total_goals"=11;
1-27170987-5
What is the lowest number of total goals for a player with 6 league goals?
CREATE TABLE "player_statistics" ( "position" text, "nationality" text, "name" text, "league_apps" real, "league_goals" real, "fa_cup_apps" real, "fa_cup_goals" real, "total_apps" real, "total_goals" real );
SELECT MIN("total_goals") FROM "player_statistics" WHERE "league_goals"=6;
1-27170987-5
What is the lowest number of fa cup goals by a player?
CREATE TABLE "player_statistics" ( "position" text, "nationality" text, "name" text, "league_apps" real, "league_goals" real, "fa_cup_apps" real, "fa_cup_goals" real, "total_apps" real, "total_goals" real );
SELECT MIN("fa_cup_goals") FROM "player_statistics";
1-27170987-5
Who wrote the episode that aired on September 26, 2010?
CREATE TABLE "table1_27169029_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_27169029_1" WHERE "original_air_date"='September 26, 2010';
1-27169029-1
How many radio stations were built in Asia?
CREATE TABLE "baha_i_social_and_economic_development_p" ( "programs" text, "world" real, "africa" real, "americas" real, "asia" real, "australasia" real, "europe" real );
SELECT "asia" FROM "baha_i_social_and_economic_development_p" WHERE "programs"='Radio Stations';
1-27184837-1
How many program data on Asia was written if the organization launched 14 programs iin the Americas?
CREATE TABLE "baha_i_social_and_economic_development_p" ( "programs" text, "world" real, "africa" real, "americas" real, "asia" real, "australasia" real, "europe" real );
SELECT COUNT("asia") FROM "baha_i_social_and_economic_development_p" WHERE "americas"=14;
1-27184837-1
How many times did Australasia received a program if the Americas received 115 program?
CREATE TABLE "baha_i_social_and_economic_development_p" ( "programs" text, "world" real, "africa" real, "americas" real, "asia" real, "australasia" real, "europe" real );
SELECT COUNT("australasia") FROM "baha_i_social_and_economic_development_p" WHERE "americas"=115;
1-27184837-1
What is every episode number for the series number 3?
CREATE TABLE "table1_27208311_1" ( "episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series_whereas_series_no_refers_to_the_episodes_number_in_this_particular_series" real, "series_no" real, "episode" text, "director" text, "writer" text, "original_airdate" text );
SELECT "episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series_whereas_series_no_refers_to_the_episodes_number_in_this_particular_series" FROM "table1_27208311_1" WHERE "series_no"=3;
1-27208311-1
What is every episode with Barry Purchese as the writer?
CREATE TABLE "table1_27208311_1" ( "episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series_whereas_series_no_refers_to_the_episodes_number_in_this_particular_series" real, "series_no" real, "episode" text, "director" text, "writer" text, "original_airdate" text );
SELECT "episode" FROM "table1_27208311_1" WHERE "writer"='Barry Purchese';
1-27208311-1
Name the episod for number 64
CREATE TABLE "table1_27208817_1" ( "episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series_whereas_series_no_refers_to_the_episodes_number_in_this_particular_series" real, "series_no" real, "episode" text, "director" text, "writer" text, "original_airdate" text );
SELECT "episode" FROM "table1_27208817_1" WHERE "episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series_whereas_series_no_refers_to_the_episodes_number_in_this_particular_series"=64;
1-27208817-1
Name the number of episodes for sam snape
CREATE TABLE "table1_27208817_1" ( "episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series_whereas_series_no_refers_to_the_episodes_number_in_this_particular_series" real, "series_no" real, "episode" text, "director" text, "writer" text, "original_airdate" text );
SELECT COUNT("episode") FROM "table1_27208817_1" WHERE "writer"='Sam Snape';
1-27208817-1
What was the aspect ratio if the vertical pixel is 480 and pixel aspect ratio is 1:1?
CREATE TABLE "table1_272313_1" ( "vertical" real, "horizontal" real, "aspect_ratio" text, "pixel_aspect_ratio" text, "scanning" text, "frame_rate_hz" text );
SELECT "aspect_ratio" FROM "table1_272313_1" WHERE "vertical"=480 AND "pixel_aspect_ratio"='1:1';
1-272313-1
What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced?
CREATE TABLE "table1_272313_1" ( "vertical" real, "horizontal" real, "aspect_ratio" text, "pixel_aspect_ratio" text, "scanning" text, "frame_rate_hz" text );
SELECT MIN("vertical") FROM "table1_272313_1" WHERE "aspect_ratio"='16:9' AND "scanning"='interlaced';
1-272313-1
What was the maximum vertical measurement if the horizon measurement is 640?
CREATE TABLE "table1_272313_1" ( "vertical" real, "horizontal" real, "aspect_ratio" text, "pixel_aspect_ratio" text, "scanning" text, "frame_rate_hz" text );
SELECT MAX("vertical") FROM "table1_272313_1" WHERE "horizontal"=640;
1-272313-1
Name the outgoing manager for mutual consent and position 16th
CREATE TABLE "table1_27225944_3" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "outgoing_manager" FROM "table1_27225944_3" WHERE "manner_of_departure"='Mutual consent' AND "position_in_table"='16th';
1-27225944-3
Name the replaced by for slaven belupo
CREATE TABLE "table1_27225944_3" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "replaced_by" FROM "table1_27225944_3" WHERE "team"='Slaven Belupo';
1-27225944-3
Name the number of outgoing manager for rijeka
CREATE TABLE "table1_27225944_3" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT COUNT("outgoing_manager") FROM "table1_27225944_3" WHERE "team"='Rijeka';
1-27225944-3
Name the least horizontal for smpte 259m three quarters
CREATE TABLE "table1_272313_2" ( "vertical" real, "horizontal" real, "aspect_ratio" text, "pixel_aspect_ratio" text, "scanning" text, "frame_rate_hz" text );
SELECT MIN("horizontal") FROM "table1_272313_2" WHERE "pixel_aspect_ratio"='SMPTE 259M three quarters';
1-272313-2
Name the aspect ratio for smpte 259m and interlaced scanning
CREATE TABLE "table1_272313_2" ( "vertical" real, "horizontal" real, "aspect_ratio" text, "pixel_aspect_ratio" text, "scanning" text, "frame_rate_hz" text );
SELECT "aspect_ratio" FROM "table1_272313_2" WHERE "pixel_aspect_ratio"='SMPTE 259M' AND "scanning"='interlaced';
1-272313-2
What were the ratings for "episode 6"?
CREATE TABLE "table1_27218002_2" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "ratings" text );
SELECT "ratings" FROM "table1_27218002_2" WHERE "title"='\"Episode 6\"';
1-27218002-2
What date did the episode that was written by Fintan Ryan originally air?
CREATE TABLE "table1_27218002_2" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "ratings" text );
SELECT "originalairdate" FROM "table1_27218002_2" WHERE "written_by"='Fintan Ryan';
1-27218002-2
What date did the epiode that had 1.37 million as the rating originally air?
CREATE TABLE "table1_27218002_2" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "ratings" text );
SELECT "originalairdate" FROM "table1_27218002_2" WHERE "ratings"='1.37 Million';
1-27218002-2
What is the title of the episode no. 16 by season?
CREATE TABLE "table1_27250813_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_27250813_1" WHERE "no_in_season"=16;
1-27250813-1
How many times did an episode with a production code of 12003 was aired?
CREATE TABLE "table1_27250813_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT COUNT("original_air_date") FROM "table1_27250813_1" WHERE "production_code"=12003;
1-27250813-1
Name the color analyst for terry bowden and 17.2
CREATE TABLE "television" ( "year" real, "network_s" text, "bowl" text, "play_by_play_announcer" text, "color_analyst_s" text, "sideline_reporter_s" text, "studio_host_s" text, "studio_analyst_s" text, "tv_rating" text );
SELECT "color_analyst_s" FROM "television" WHERE "studio_analyst_s"='Terry Bowden' AND "tv_rating"='17.2';
1-2724704-5
Name the number of bowl for lee corso, gene chizik and chip kelly
CREATE TABLE "television" ( "year" real, "network_s" text, "bowl" text, "play_by_play_announcer" text, "color_analyst_s" text, "sideline_reporter_s" text, "studio_host_s" text, "studio_analyst_s" text, "tv_rating" text );
SELECT COUNT("bowl") FROM "television" WHERE "studio_analyst_s"='Lee Corso, Gene Chizik and Chip Kelly';
1-2724704-5
Name the studio analysts for espn with erin andrews and tom rinaldi
CREATE TABLE "television" ( "year" real, "network_s" text, "bowl" text, "play_by_play_announcer" text, "color_analyst_s" text, "sideline_reporter_s" text, "studio_host_s" text, "studio_analyst_s" text, "tv_rating" text );
SELECT "studio_analyst_s" FROM "television" WHERE "network_s"='ESPN' AND "sideline_reporter_s"='Erin Andrews and Tom Rinaldi';
1-2724704-5
What is the highest series number with 9.17 million US viewers?
CREATE TABLE "table1_27255755_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT MAX("no_in_series") FROM "table1_27255755_1" WHERE "u_s_viewers_millions"='9.17';
1-27255755-1
name the podiums for start of 22
CREATE TABLE "wtcc_statistics" ( "season" real, "series" text, "team" text, "starts" real, "wins" real, "podiums" real, "poles" real, "fastest_laps" real, "points" text, "place" text );
SELECT "podiums" FROM "wtcc_statistics" WHERE "starts"=22;
1-2725949-6
Name the number of poles for fastest laps being 6
CREATE TABLE "wtcc_statistics" ( "season" real, "series" text, "team" text, "starts" real, "wins" real, "podiums" real, "poles" real, "fastest_laps" real, "points" text, "place" text );
SELECT COUNT("poles") FROM "wtcc_statistics" WHERE "fastest_laps"=6;
1-2725949-6
Name the least podiums for 2009
CREATE TABLE "wtcc_statistics" ( "season" real, "series" text, "team" text, "starts" real, "wins" real, "podiums" real, "poles" real, "fastest_laps" real, "points" text, "place" text );
SELECT MIN("podiums") FROM "wtcc_statistics" WHERE "season"=2009;
1-2725949-6
Name the starts for 2009
CREATE TABLE "wtcc_statistics" ( "season" real, "series" text, "team" text, "starts" real, "wins" real, "podiums" real, "poles" real, "fastest_laps" real, "points" text, "place" text );
SELECT "starts" FROM "wtcc_statistics" WHERE "season"=2009;
1-2725949-6
Name the most starts for 6 wins
CREATE TABLE "wtcc_statistics" ( "season" real, "series" text, "team" text, "starts" real, "wins" real, "podiums" real, "poles" real, "fastest_laps" real, "points" text, "place" text );
SELECT MAX("starts") FROM "wtcc_statistics" WHERE "wins"=6;
1-2725949-6
How many matches were wickets 16?
CREATE TABLE "bowling_averages_top_10" ( "player" text, "team" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real, "5wi" real );
SELECT COUNT("matches") FROM "bowling_averages_top_10" WHERE "wickets"=16;
1-27268238-5
What is the lowest wickets?
CREATE TABLE "bowling_averages_top_10" ( "player" text, "team" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real, "5wi" real );
SELECT MIN("wickets") FROM "bowling_averages_top_10";
1-27268238-5
What is the 4wi when the economy is 7.82?
CREATE TABLE "bowling_averages_top_10" ( "player" text, "team" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real, "5wi" real );
SELECT "4wi" FROM "bowling_averages_top_10" WHERE "economy"='7.82';
1-27268238-5
Who is the player when the bbi is 5/27?
CREATE TABLE "bowling_averages_top_10" ( "player" text, "team" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real, "5wi" real );
SELECT "player" FROM "bowling_averages_top_10" WHERE "bbi"='5/27';
1-27268238-5
What is the team when the economy is 5.73?
CREATE TABLE "bowling_averages_top_10" ( "player" text, "team" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real, "5wi" real );
SELECT "team" FROM "bowling_averages_top_10" WHERE "economy"='5.73';
1-27268238-5
When Denizli was the province, what was the total number of valid votes?
CREATE TABLE "results_by_province" ( "province" text, "registered_voters" real, "people_voted" real, "valid_votes" real, "invalid_votes" real, "yes" real, "yes_pct" text, "no" real, "no_pct" text, "turnout_pct" text );
SELECT COUNT("valid_votes") FROM "results_by_province" WHERE "province"='Denizli';
1-27274222-2
When 54.86% of people votes yes, howe many votes were invalid?
CREATE TABLE "results_by_province" ( "province" text, "registered_voters" real, "people_voted" real, "valid_votes" real, "invalid_votes" real, "yes" real, "yes_pct" text, "no" real, "no_pct" text, "turnout_pct" text );
SELECT "invalid_votes" FROM "results_by_province" WHERE "yes_pct"='54.86';
1-27274222-2
How many registered voters were there when 36.32% of people voted yes?
CREATE TABLE "results_by_province" ( "province" text, "registered_voters" real, "people_voted" real, "valid_votes" real, "invalid_votes" real, "yes" real, "yes_pct" text, "no" real, "no_pct" text, "turnout_pct" text );
SELECT MIN("registered_voters") FROM "results_by_province" WHERE "yes_pct"='36.32';
1-27274222-2
What province had a turnout of 54.09%?
CREATE TABLE "results_by_province" ( "province" text, "registered_voters" real, "people_voted" real, "valid_votes" real, "invalid_votes" real, "yes" real, "yes_pct" text, "no" real, "no_pct" text, "turnout_pct" text );
SELECT "province" FROM "results_by_province" WHERE "turnout_pct"='54.09';
1-27274222-2
How many people voted yes when the percentage of yeses was 95.17?
CREATE TABLE "results_by_province" ( "province" text, "registered_voters" real, "people_voted" real, "valid_votes" real, "invalid_votes" real, "yes" real, "yes_pct" text, "no" real, "no_pct" text, "turnout_pct" text );
SELECT MAX("yes") FROM "results_by_province" WHERE "yes_pct"='95.17';
1-27274222-2
What was the turnout percentage when the percentage of people that voted no was 36.51?
CREATE TABLE "results_by_province" ( "province" text, "registered_voters" real, "people_voted" real, "valid_votes" real, "invalid_votes" real, "yes" real, "yes_pct" text, "no" real, "no_pct" text, "turnout_pct" text );
SELECT "turnout_pct" FROM "results_by_province" WHERE "no_pct"='36.51';
1-27274222-2
What is the model number for the order part numbered tmrm75dam22gg?
CREATE TABLE "lion_65_nm" ( "model_number" text, "frequency" text, "l2_cache" text, "ht" text, "mult_1" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "order_part_number" text );
SELECT "model_number" FROM "lion_65_nm" WHERE "order_part_number"='TMRM75DAM22GG';
1-27277284-28
What is the oder part number for the model with 10x mult. 1?
CREATE TABLE "lion_65_nm" ( "model_number" text, "frequency" text, "l2_cache" text, "ht" text, "mult_1" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "order_part_number" text );
SELECT "order_part_number" FROM "lion_65_nm" WHERE "mult_1"='10x';
1-27277284-28
How much ht does the model with 10x mult. 1 have?
CREATE TABLE "lion_65_nm" ( "model_number" text, "frequency" text, "l2_cache" text, "ht" text, "mult_1" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "order_part_number" text );
SELECT "ht" FROM "lion_65_nm" WHERE "mult_1"='10x';
1-27277284-28
What's the ht for the model released on June 4, 2008?
CREATE TABLE "lion_65_nm" ( "model_number" text, "frequency" text, "l2_cache" text, "ht" text, "mult_1" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "order_part_number" text );
SELECT "ht" FROM "lion_65_nm" WHERE "release_date"='June 4, 2008';
1-27277284-28
How many pole position achieved 0 points from Mexico?
CREATE TABLE "by_name" ( "name" text, "nation" text, "seasons" text, "championship_titles" text, "races_starts" text, "poles" real, "wins" real, "podiums" real, "fastest_laps" real, "points" text );
SELECT COUNT("poles") FROM "by_name" WHERE "points"='0' AND "nation"='Mexico';
1-27279050-1
Name the vcore for multi 11x
CREATE TABLE "claw_hammer_c0_cg_130_nm_desktop_replace" ( "model_number" text, "frequency" text, "l2_cache" text, "ht" text, "mult_1" text, "v_core" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "v_core" FROM "claw_hammer_c0_cg_130_nm_desktop_replace" WHERE "mult_1"='11x';
1-27277284-8
Name the number of v core for model number mobile athlon 64 3000+
CREATE TABLE "claw_hammer_c0_cg_130_nm_desktop_replace" ( "model_number" text, "frequency" text, "l2_cache" text, "ht" text, "mult_1" text, "v_core" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT COUNT("v_core") FROM "claw_hammer_c0_cg_130_nm_desktop_replace" WHERE "model_number"='Mobile Athlon 64 3000+';
1-27277284-8
Name the total number of points for for played
CREATE TABLE "wru_division_one_east" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "points" text );
SELECT COUNT("points_for") FROM "wru_division_one_east" WHERE "played"='Played';
1-27293285-4
Name the total number of points for 46 tries for
CREATE TABLE "wru_division_one_east" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "points" text );
SELECT COUNT("points") FROM "wru_division_one_east" WHERE "tries_for"='46';
1-27293285-4
Name the total number of club for lost being 16
CREATE TABLE "wru_division_one_east" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "points" text );
SELECT COUNT("club") FROM "wru_division_one_east" WHERE "lost"='16';
1-27293285-4
Name the drawn for lost being 5 and tries for 89
CREATE TABLE "wru_division_one_east" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "points" text );
SELECT "drawn" FROM "wru_division_one_east" WHERE "lost"='5' AND "tries_for"='89';
1-27293285-4
Name the won for played being 22 and points against 511 and lost being 15
CREATE TABLE "wru_division_one_east" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "points" text );
SELECT "won" FROM "wru_division_one_east" WHERE "played"='22' AND "lost"='15' AND "points_against"='511';
1-27293285-4
Which pronoun has će biti / biće in first person?
CREATE TABLE "table1_27298240_26" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "pronoun" FROM "table1_27298240_26" WHERE "1st"='će biti / biće';
1-27298240-26
What aorist has bude in present tense?
CREATE TABLE "table1_27298240_26" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "aorist" FROM "table1_27298240_26" WHERE "present"='bude';
1-27298240-26
Which aorist has imperfect form of bijasmo / bejasmo / besmo?
CREATE TABLE "table1_27298240_26" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "aorist" FROM "table1_27298240_26" WHERE "imperfect"='bijasmo / bejasmo / besmo';
1-27298240-26
What is the pluperfect for the perfect si bio/la; bio/la si?
CREATE TABLE "table1_27298240_26" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "pluperfect" FROM "table1_27298240_26" WHERE "perfect"='si bio/la; bio/la si';
1-27298240-26
What was the event when suárez ( tri ) w 16–6 was round of 32?
CREATE TABLE "table1_27294107_11" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "event" FROM "table1_27294107_11" WHERE "round_of_32"='Suárez ( TRI ) W 16–6';
1-27294107-11
What is the semifinals for the light flyweight event?
CREATE TABLE "table1_27294107_11" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "semifinals" FROM "table1_27294107_11" WHERE "event"='Light flyweight';
1-27294107-11
How many semifinals did ferhat pehlivan attend?
CREATE TABLE "table1_27294107_11" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT COUNT("semifinals") FROM "table1_27294107_11" WHERE "athlete"='Ferhat Pehlivan';
1-27294107-11
What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11?
CREATE TABLE "table1_27294107_11" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "round_of_32" FROM "table1_27294107_11" WHERE "round_of_16"='Drenovak ( SRB ) W 20–11';
1-27294107-11
When yakup şener is the athlete what is the round of 32?
CREATE TABLE "table1_27294107_11" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "round_of_32" FROM "table1_27294107_11" WHERE "athlete"='Yakup Şener';
1-27294107-11
What is the round of 32 for fatih keleş?
CREATE TABLE "table1_27294107_11" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "round_of_32" FROM "table1_27294107_11" WHERE "athlete"='Fatih Keleş';
1-27294107-11
What is the pronoun when budemo mogli/le is 2nd?
CREATE TABLE "table1_27298240_28" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "pronoun" FROM "table1_27298240_28" WHERE "2nd"='budemo mogli/le';
1-27298240-28
What is in 1st place when present is mogu?
CREATE TABLE "table1_27298240_28" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "1st" FROM "table1_27298240_28" WHERE "present"='mogu';
1-27298240-28
What is aorist when budete mogli/le is 2nd?
CREATE TABLE "table1_27298240_28" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "aorist" FROM "table1_27298240_28" WHERE "2nd"='budete mogli/le';
1-27298240-28
what is 2nd when the pronoun is vi (you pl.)?
CREATE TABLE "table1_27298240_28" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "2nd" FROM "table1_27298240_28" WHERE "pronoun"='vi (you pl.)';
1-27298240-28
When the present is mogu what is 1st?
CREATE TABLE "table1_27298240_28" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "1st" FROM "table1_27298240_28" WHERE "present"='mogu';
1-27298240-28
What is 2nd when ćemo moći is 1st?
CREATE TABLE "table1_27298240_28" ( "pronoun" text, "present" text, "1st" text, "2nd" text, "perfect" text, "aorist" text, "imperfect" text, "pluperfect" text );
SELECT "2nd" FROM "table1_27298240_28" WHERE "1st"='ćemo moći';
1-27298240-28
What is the R when the total is 1 and the position is fw?
CREATE TABLE "assists" ( "r" real, "player" text, "position" text, "the_championship" real, "fa_cup" real, "league_cup" real, "total" real );
SELECT "r" FROM "assists" WHERE "total"=1 AND "position"='FW';
1-27304165-5
What is the lowest league cup?
CREATE TABLE "assists" ( "r" real, "player" text, "position" text, "the_championship" real, "fa_cup" real, "league_cup" real, "total" real );
SELECT MIN("league_cup") FROM "assists";
1-27304165-5
What is the position for the player becchio?
CREATE TABLE "assists" ( "r" real, "player" text, "position" text, "the_championship" real, "fa_cup" real, "league_cup" real, "total" real );
SELECT "position" FROM "assists" WHERE "player"='Becchio';
1-27304165-5
How many times was the r 4?
CREATE TABLE "assists" ( "r" real, "player" text, "position" text, "the_championship" real, "fa_cup" real, "league_cup" real, "total" real );
SELECT COUNT("league_cup") FROM "assists" WHERE "r"=4;
1-27304165-5
What is the parent for peak cima tosa?
CREATE TABLE "see_also" ( "no" real, "peak" text, "location" text, "elevation_m" real, "prominence_m" real, "col_height_m" real, "col_location" text, "parent" text );
SELECT "parent" FROM "see_also" WHERE "peak"='Cima Tosa';
1-2731431-1
What is the elevation for the peak wildspitze in Austria?
CREATE TABLE "see_also" ( "no" real, "peak" text, "location" text, "elevation_m" real, "prominence_m" real, "col_height_m" real, "col_location" text, "parent" text );
SELECT MIN("elevation_m") FROM "see_also" WHERE "location"='Austria' AND "peak"='Wildspitze';
1-2731431-1
What is the elevation for number 39?
CREATE TABLE "see_also" ( "no" real, "peak" text, "location" text, "elevation_m" real, "prominence_m" real, "col_height_m" real, "col_location" text, "parent" text );
SELECT MAX("elevation_m") FROM "see_also" WHERE "no"=39;
1-2731431-1
What is the col location for the location of france / italy?
CREATE TABLE "see_also" ( "no" real, "peak" text, "location" text, "elevation_m" real, "prominence_m" real, "col_height_m" real, "col_location" text, "parent" text );
SELECT "col_location" FROM "see_also" WHERE "location"='France / Italy';
1-2731431-1
What is the col location with a col height (m) of 1107?
CREATE TABLE "see_also" ( "no" real, "peak" text, "location" text, "elevation_m" real, "prominence_m" real, "col_height_m" real, "col_location" text, "parent" text );
SELECT "col_location" FROM "see_also" WHERE "col_height_m"=1107;
1-2731431-1
Which location has an elevation of 3798?
CREATE TABLE "see_also" ( "no" real, "peak" text, "location" text, "elevation_m" real, "prominence_m" real, "col_height_m" real, "col_location" text, "parent" text );
SELECT "location" FROM "see_also" WHERE "elevation_m"=3798;
1-2731431-1
What is the title when the catalog number is cal01 / 0091037137319?
CREATE TABLE "official_callanetics_dv_ds_by_callan_pin" ( "year" real, "title" text, "format" text, "studio" text, "release_date" text, "copyright_information" text, "catalog_number" text );
SELECT "title" FROM "official_callanetics_dv_ds_by_callan_pin" WHERE "catalog_number"='CAL01 / 0091037137319';
1-27303975-3
How many times is the title am/pm callanetics?
CREATE TABLE "official_callanetics_dv_ds_by_callan_pin" ( "year" real, "title" text, "format" text, "studio" text, "release_date" text, "copyright_information" text, "catalog_number" text );
SELECT COUNT("studio") FROM "official_callanetics_dv_ds_by_callan_pin" WHERE "title"='AM/PM Callanetics';
1-27303975-3