question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What class year was the player whose highlights were 35 career INTs from?
CREATE TABLE "sycamores_in_professional_leagues_50" ( "player" text, "class_year" real, "position" text, "teams" text, "career" text, "highlight_s" text );
SELECT MIN("class_year") FROM "sycamores_in_professional_leagues_50" WHERE "highlight_s"='35 Career INTs';
1-22982552-9
What class year was the player who played for Buffalo from?
CREATE TABLE "sycamores_in_professional_leagues_50" ( "player" text, "class_year" real, "position" text, "teams" text, "career" text, "highlight_s" text );
SELECT MIN("class_year") FROM "sycamores_in_professional_leagues_50" WHERE "teams"='Buffalo';
1-22982552-9
Name the gore number for others # 6.6%
CREATE TABLE "by_county" ( "county" text, "gore_pct" text, "gore_num" real, "bush_pct" text, "bush_num" real, "others_pct" text, "others_num" text );
SELECT MIN("gore_num") FROM "by_county" WHERE "others_num"='6.6%';
1-23014476-1
Name the others % for bush number 1372
CREATE TABLE "by_county" ( "county" text, "gore_pct" text, "gore_num" real, "bush_pct" text, "bush_num" real, "others_pct" text, "others_num" text );
SELECT "others_pct" FROM "by_county" WHERE "bush_num"=1372;
1-23014476-1
Name the gore number for others % being 5.3%
CREATE TABLE "by_county" ( "county" text, "gore_pct" text, "gore_num" real, "bush_pct" text, "bush_num" real, "others_pct" text, "others_num" text );
SELECT "gore_num" FROM "by_county" WHERE "others_pct"='5.3%';
1-23014476-1
Name the couty for others% 5.8
CREATE TABLE "by_county" ( "county" text, "gore_pct" text, "gore_num" real, "bush_pct" text, "bush_num" real, "others_pct" text, "others_num" text );
SELECT "county" FROM "by_county" WHERE "others_pct"='5.8';
1-23014476-1
Name the number of bush % for elko
CREATE TABLE "by_county" ( "county" text, "gore_pct" text, "gore_num" real, "bush_pct" text, "bush_num" real, "others_pct" text, "others_num" text );
SELECT COUNT("bush_pct") FROM "by_county" WHERE "county"='Elko';
1-23014476-1
If the series is ADAC GT Masters and poles is 1, what is the name of the team?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "team" FROM "career_summary" WHERE "poles"=1 AND "series"='ADAC GT Masters';
1-22998777-1
If the position of 26th what is the season total number?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT COUNT("season") FROM "career_summary" WHERE "position"='26th';
1-22998777-1
If the points is 41, what is the season?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "season" FROM "career_summary" WHERE "points"='41';
1-22998777-1
If the primary (South) winners is Inter The Bloomfield, what is the season total number?
CREATE TABLE "list_of_recent_lower_tier_county_cup_sou" ( "season" text, "junior_south_winners" text, "intermediate_south_winners" text, "minor_south_winners" text, "primary_south_winners" text );
SELECT COUNT("season") FROM "list_of_recent_lower_tier_county_cup_sou" WHERE "primary_south_winners"='Inter The Bloomfield';
1-23014923-1
What is the season total number if the primary (South) winners is Ridings High 'A'?
CREATE TABLE "list_of_recent_lower_tier_county_cup_sou" ( "season" text, "junior_south_winners" text, "intermediate_south_winners" text, "minor_south_winners" text, "primary_south_winners" text );
SELECT COUNT("season") FROM "list_of_recent_lower_tier_county_cup_sou" WHERE "primary_south_winners"='Ridings High ''A''';
1-23014923-1
What is the year of the season if the intermediate (South) winners is Southmead Athletic?
CREATE TABLE "list_of_recent_lower_tier_county_cup_sou" ( "season" text, "junior_south_winners" text, "intermediate_south_winners" text, "minor_south_winners" text, "primary_south_winners" text );
SELECT "season" FROM "list_of_recent_lower_tier_county_cup_sou" WHERE "intermediate_south_winners"='Southmead Athletic';
1-23014923-1
What is the season date if the minor (South) winners is Bristol Sanctuary XI?
CREATE TABLE "list_of_recent_lower_tier_county_cup_sou" ( "season" text, "junior_south_winners" text, "intermediate_south_winners" text, "minor_south_winners" text, "primary_south_winners" text );
SELECT "season" FROM "list_of_recent_lower_tier_county_cup_sou" WHERE "minor_south_winners"='Bristol Sanctuary XI';
1-23014923-1
What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?
CREATE TABLE "list_of_recent_lower_tier_county_cup_sou" ( "season" text, "junior_south_winners" text, "intermediate_south_winners" text, "minor_south_winners" text, "primary_south_winners" text );
SELECT COUNT("minor_south_winners") FROM "list_of_recent_lower_tier_county_cup_sou" WHERE "primary_south_winners"='Mendip Gate';
1-23014923-1
What area was damaged when King Khalid Military City was targeted?
CREATE TABLE "table1_23014685_1" ( "no" real, "place_date" text, "target" text, "area_damaged" text, "cause_of_damage" text, "intercepted_by_patriot" text );
SELECT "area_damaged" FROM "table1_23014685_1" WHERE "target"='King Khalid Military City';
1-23014685-1
What was the place and date that the Apartments area was damaged?
CREATE TABLE "table1_23014685_1" ( "no" real, "place_date" text, "target" text, "area_damaged" text, "cause_of_damage" text, "intercepted_by_patriot" text );
SELECT "place_date" FROM "table1_23014685_1" WHERE "area_damaged"='Apartments area';
1-23014685-1
Was the missile intercepted by patriot when the parking lot was damaged?
CREATE TABLE "table1_23014685_1" ( "no" real, "place_date" text, "target" text, "area_damaged" text, "cause_of_damage" text, "intercepted_by_patriot" text );
SELECT "intercepted_by_patriot" FROM "table1_23014685_1" WHERE "area_damaged"='Parking lot';
1-23014685-1
What number missile led to damage to the Islamic University campus?
CREATE TABLE "table1_23014685_1" ( "no" real, "place_date" text, "target" text, "area_damaged" text, "cause_of_damage" text, "intercepted_by_patriot" text );
SELECT MIN("no") FROM "table1_23014685_1" WHERE "area_damaged"='Islamic University campus';
1-23014685-1
Name the number of year for mark martin
CREATE TABLE "table1_23015396_1" ( "year" real, "date" text, "driver" text, "manufacturer" text, "laps" real, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT COUNT("year") FROM "table1_23015396_1" WHERE "driver"='Mark Martin';
1-23015396-1
Name the number of year for june 30
CREATE TABLE "table1_23015396_1" ( "year" real, "date" text, "driver" text, "manufacturer" text, "laps" real, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT COUNT("year") FROM "table1_23015396_1" WHERE "date"='June 30';
1-23015396-1
What is the model number for part numbers of cm80616003177acbx80616i5660?
CREATE TABLE "32_nm_dual_core" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "gpu_frequency" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "p...
SELECT "model_number" FROM "32_nm_dual_core" WHERE "part_number_s"='CM80616003177ACBX80616I5660';
1-23028629-2
What is every release price(USD) for model number core i5-650?
CREATE TABLE "32_nm_dual_core" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "gpu_frequency" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "p...
SELECT "release_price_usd" FROM "32_nm_dual_core" WHERE "model_number"='Core i5-650';
1-23028629-2
How many frequencies have a model number of core i5-655k?
CREATE TABLE "32_nm_dual_core" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "gpu_frequency" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "p...
SELECT COUNT("frequency") FROM "32_nm_dual_core" WHERE "model_number"='Core i5-655K';
1-23028629-2
What is every part number with model number core i5-670?
CREATE TABLE "32_nm_dual_core" ( "model_number" text, "s_spec_number" text, "frequency" text, "turbo" text, "gpu_frequency" text, "cores" real, "l2_cache" text, "l3_cache" text, "i_o_bus" text, "mult" text, "memory" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "p...
SELECT "part_number_s" FROM "32_nm_dual_core" WHERE "model_number"='Core i5-670';
1-23028629-2
What is the record for Big Ten Team #4 Purdue?
CREATE TABLE "2009_10_big_ten_conference_men_s_basketb" ( "acc_team" text, "big_ten_team" text, "location" text, "attendance" real, "winner" text, "challenge_leader" text );
SELECT "winner" FROM "2009_10_big_ten_conference_men_s_basketb" WHERE "big_ten_team"='#4 Purdue';
1-23058971-8
Name the avg start for avg finish being 24.2
CREATE TABLE "nascar_sprint_cup_series" ( "year" real, "starts" real, "wins" real, "top_5" real, "top_10" real, "poles" real, "avg_start" text, "avg_finish" text, "winnings" text, "position" text, "team_s" text );
SELECT "avg_start" FROM "nascar_sprint_cup_series" WHERE "avg_finish"='24.2';
1-2308381-1
Name the year for avg start being 22.4
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 "year" FROM "nascar_sprint_cup_series" WHERE "avg_start"='22.4';
1-2308381-1
How many KEI catagories are listed when the economic incentive regime is 2.56?
CREATE TABLE "kei_and_ki_indexes_by_country" ( "country" text, "kei" text, "ki" text, "economic_incentive_regime" text, "innovation" text, "education" text, "ict" text, "2008_rank" real );
SELECT COUNT("kei") FROM "kei_and_ki_indexes_by_country" WHERE "economic_incentive_regime"='2.56';
1-23050383-1
What is the innovation when the economic incentive grime is 7.14?
CREATE TABLE "kei_and_ki_indexes_by_country" ( "country" text, "kei" text, "ki" text, "economic_incentive_regime" text, "innovation" text, "education" text, "ict" text, "2008_rank" real );
SELECT "innovation" FROM "kei_and_ki_indexes_by_country" WHERE "economic_incentive_regime"='7.14';
1-23050383-1
What is the education in Nepal?
CREATE TABLE "kei_and_ki_indexes_by_country" ( "country" text, "kei" text, "ki" text, "economic_incentive_regime" text, "innovation" text, "education" text, "ict" text, "2008_rank" real );
SELECT "education" FROM "kei_and_ki_indexes_by_country" WHERE "country"='Nepal';
1-23050383-1
What is the 2008 rank of Djibouti?
CREATE TABLE "kei_and_ki_indexes_by_country" ( "country" text, "kei" text, "ki" text, "economic_incentive_regime" text, "innovation" text, "education" text, "ict" text, "2008_rank" real );
SELECT "2008_rank" FROM "kei_and_ki_indexes_by_country" WHERE "country"='Djibouti';
1-23050383-1
What is the ICT when education is 1.73 and KI is ag 1.99?
CREATE TABLE "kei_and_ki_indexes_by_country" ( "country" text, "kei" text, "ki" text, "economic_incentive_regime" text, "innovation" text, "education" text, "ict" text, "2008_rank" real );
SELECT "ict" FROM "kei_and_ki_indexes_by_country" WHERE "education"='1.73' AND "ki"='1.99';
1-23050383-1
What is the education when the economic incentive regime is 1.58?
CREATE TABLE "kei_and_ki_indexes_by_country" ( "country" text, "kei" text, "ki" text, "economic_incentive_regime" text, "innovation" text, "education" text, "ict" text, "2008_rank" real );
SELECT "education" FROM "kei_and_ki_indexes_by_country" WHERE "economic_incentive_regime"='1.58';
1-23050383-1
How many thousands of viewers tuned in for "Make Mad the Guilty and Appal the Free"?
CREATE TABLE "table1_23114705_7" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "n_z_viewers_thousand" text );
SELECT "n_z_viewers_thousand" FROM "table1_23114705_7" WHERE "title"='\"Make Mad the Guilty and Appal the Free\"';
1-23114705-7
When did "Follow Her Close" air?
CREATE TABLE "table1_23114705_7" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "n_z_viewers_thousand" text );
SELECT "original_air_date" FROM "table1_23114705_7" WHERE "title"='\"Follow Her Close\"';
1-23114705-7
What was the air date of the episod that had 456.58 thousand viewers?
CREATE TABLE "table1_23114705_7" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "n_z_viewers_thousand" text );
SELECT "original_air_date" FROM "table1_23114705_7" WHERE "n_z_viewers_thousand"='456.58';
1-23114705-7
What season had a winning profit of $15,000?
CREATE TABLE "table1_2311410_1" ( "season" text, "episodes" real, "series_premiere" text, "series_finale" text, "winning_couple" text, "winning_profit_aud" text, "host_s" text, "judges" text );
SELECT "season" FROM "table1_2311410_1" WHERE "winning_profit_aud"='$15,000';
1-2311410-1
How many series premieres did the season "All-stars" have?
CREATE TABLE "table1_2311410_1" ( "season" text, "episodes" real, "series_premiere" text, "series_finale" text, "winning_couple" text, "winning_profit_aud" text, "host_s" text, "judges" text );
SELECT COUNT("series_premiere") FROM "table1_2311410_1" WHERE "season"='All-Stars';
1-2311410-1
Name the erin and jake for week 4
CREATE TABLE "table1_2311410_5" ( "week" real, "room_s" text, "john_and_neisha" text, "mark_and_duncan" text, "erin_and_jake" text, "chez_and_brenton" text, "winner" text );
SELECT "erin_and_jake" FROM "table1_2311410_5" WHERE "week"=4;
1-2311410-5
when the number of spectator are 5.28 millions, which is the smallest number of the episode in series?
CREATE TABLE "table1_23117208_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT MIN("no_in_series") FROM "table1_23117208_3" WHERE "viewers_millions"='5.28';
1-23117208-3
which is the biggest number of episode in the season, where the number of the episode in series is 20?
CREATE TABLE "table1_23117208_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT MAX("no_in_season") FROM "table1_23117208_3" WHERE "no_in_series"=20;
1-23117208-3
what is the name of the episode when the number of spectators was 5.60 millions?
CREATE TABLE "table1_23117208_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT "title" FROM "table1_23117208_3" WHERE "viewers_millions"='5.60';
1-23117208-3
how many millions of spectator did has the episode whose prod.code was rp#213?
CREATE TABLE "table1_23117208_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT "viewers_millions" FROM "table1_23117208_3" WHERE "prod_code"='RP#213';
1-23117208-3
which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?
CREATE TABLE "table1_23117208_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT MAX("no_in_season") FROM "table1_23117208_3" WHERE "directed_by"='Constantine Makris';
1-23117208-3
What is the name of the episode that was written by Michael Rauch?
CREATE TABLE "table1_23117208_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT "title" FROM "table1_23117208_5" WHERE "written_by"='Michael Rauch';
1-23117208-5
For the episode directed by Matthew Penn, what is the total number in the series?
CREATE TABLE "table1_23117208_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT "no_in_series" FROM "table1_23117208_5" WHERE "directed_by"='Matthew Penn';
1-23117208-5
Name the production code for 4.92 million viewers
CREATE TABLE "table1_23117208_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT "prod_code" FROM "table1_23117208_4" WHERE "viewers_millions"='4.92';
1-23117208-4
Name the least number in season for jessica ball
CREATE TABLE "table1_23117208_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "prod_code" text, "viewers_millions" text );
SELECT MIN("no_in_season") FROM "table1_23117208_4" WHERE "written_by"='Jessica Ball';
1-23117208-4
How many flaps did he have when he had 109 points?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team_name" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "final_placing" text );
SELECT MAX("f_laps") FROM "career_summary" WHERE "points"=109;
1-23128286-1
How many wins did he have with carlin motorsport?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team_name" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "final_placing" text );
SELECT COUNT("wins") FROM "career_summary" WHERE "team_name"='Carlin Motorsport';
1-23128286-1
What was the most races he had in a season?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team_name" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "final_placing" text );
SELECT MAX("races") FROM "career_summary";
1-23128286-1
What are Ken Rosewall's sets w-l?
CREATE TABLE "standings" ( "player" text, "rr_w_l" text, "sets_w_l" text, "games_w_l" text, "standings" real );
SELECT "sets_w_l" FROM "standings" WHERE "player"='Ken Rosewall';
1-23133482-1
What are Arthur Ashe's games w-l?
CREATE TABLE "standings" ( "player" text, "rr_w_l" text, "sets_w_l" text, "games_w_l" text, "standings" real );
SELECT "games_w_l" FROM "standings" WHERE "player"='Arthur Ashe';
1-23133482-1
Name the games w-1 for cliff richey
CREATE TABLE "standings" ( "player" text, "rr_w_l" text, "sets_w_l" text, "games_w_l" text, "standings" real );
SELECT "games_w_l" FROM "standings" WHERE "player"='Cliff Richey';
1-23145653-1
What stage number had the general classification Rory Sutherland?
CREATE TABLE "classification_leadership_progress_table" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "points_classification" text, "youth_classification" text, "team_classification" text );
SELECT COUNT("stage") FROM "classification_leadership_progress_table" WHERE "general_classification"='Rory Sutherland';
1-23157997-13
Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?
CREATE TABLE "classification_leadership_progress_table" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "points_classification" text, "youth_classification" text, "team_classification" text );
SELECT "youth_classification" FROM "classification_leadership_progress_table" WHERE "mountains_classification"='Kenneth Hanson' AND "winner"='Lucas Sebastian Haedo';
1-23157997-13
Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification?
CREATE TABLE "classification_leadership_progress_table" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "points_classification" text, "youth_classification" text, "team_classification" text );
SELECT "winner" FROM "classification_leadership_progress_table" WHERE "mountains_classification"='Tom Zirbel' AND "points_classification"='Thomas Soladay';
1-23157997-13
Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification?
CREATE TABLE "classification_leadership_progress_table" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "points_classification" text, "youth_classification" text, "team_classification" text );
SELECT "mountains_classification" FROM "classification_leadership_progress_table" WHERE "youth_classification"='Nick Frey' AND "points_classification"='Tom Zirbel';
1-23157997-13
How many Mountains Classifications were in the race with Mike Northey as Youth Classification?
CREATE TABLE "classification_leadership_progress_table" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "points_classification" text, "youth_classification" text, "team_classification" text );
SELECT COUNT("mountains_classification") FROM "classification_leadership_progress_table" WHERE "youth_classification"='Mike Northey';
1-23157997-13
How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi?
CREATE TABLE "table1_23143607_1" ( "autonomous_community" text, "organization" text, "television_channels" text, "radio_stations" text, "foundation" real );
SELECT COUNT("foundation") FROM "table1_23143607_1" WHERE "television_channels"='Canal Nou Canal Nou Dos Canal Nou 24 TVVi';
1-23143607-1
If the radio stations is radio nou si radio radio nou música; what were the total number of television channels?
CREATE TABLE "table1_23143607_1" ( "autonomous_community" text, "organization" text, "television_channels" text, "radio_stations" text, "foundation" real );
SELECT COUNT("television_channels") FROM "table1_23143607_1" WHERE "radio_stations"='Radio Nou Si Radio Radio Nou Música';
1-23143607-1
What is the total number of television channels when one of the radio stations is onda madrid?
CREATE TABLE "table1_23143607_1" ( "autonomous_community" text, "organization" text, "television_channels" text, "radio_stations" text, "foundation" real );
SELECT COUNT("television_channels") FROM "table1_23143607_1" WHERE "radio_stations"='Onda Madrid';
1-23143607-1
Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)?
CREATE TABLE "table1_23143607_1" ( "autonomous_community" text, "organization" text, "television_channels" text, "radio_stations" text, "foundation" real );
SELECT "radio_stations" FROM "table1_23143607_1" WHERE "organization"='Ente Público Radio Televisión Madrid (EPRTVM)';
1-23143607-1
What is the autonomous community with television channels tpa tpa2 rtpa internacional?
CREATE TABLE "table1_23143607_1" ( "autonomous_community" text, "organization" text, "television_channels" text, "radio_stations" text, "foundation" real );
SELECT "autonomous_community" FROM "table1_23143607_1" WHERE "television_channels"='TPA TPA2 RTPA Internacional';
1-23143607-1
Who was the writer of "Face Off"?
CREATE TABLE "table1_23170118_2" ( "episode_number" text, "title" text, "villains" text, "director" text, "writer" text, "original_airdate" text );
SELECT "writer" FROM "table1_23170118_2" WHERE "title"='\"Face Off\"';
1-23170118-2
Who were the directors of the episode "nano nits" written by nathan cockerill?
CREATE TABLE "table1_23170118_2" ( "episode_number" text, "title" text, "villains" text, "director" text, "writer" text, "original_airdate" text );
SELECT "director" FROM "table1_23170118_2" WHERE "writer"='Nathan Cockerill' AND "title"='\"Nano Nits\"';
1-23170118-2
Who are the villains in "the others"?
CREATE TABLE "table1_23170118_2" ( "episode_number" text, "title" text, "villains" text, "director" text, "writer" text, "original_airdate" text );
SELECT "villains" FROM "table1_23170118_2" WHERE "title"='\"The Others\"';
1-23170118-2
What was the original air date of the episode "nano nits"?
CREATE TABLE "table1_23170118_2" ( "episode_number" text, "title" text, "villains" text, "director" text, "writer" text, "original_airdate" text );
SELECT "original_airdate" FROM "table1_23170118_2" WHERE "title"='\"Nano Nits\"';
1-23170118-2
How many villains were in episode 3 (13)?
CREATE TABLE "table1_23170118_2" ( "episode_number" text, "title" text, "villains" text, "director" text, "writer" text, "original_airdate" text );
SELECT COUNT("villains") FROM "table1_23170118_2" WHERE "episode_number"='3 (13)';
1-23170118-2
What was the title of the episode where reg lacey (aka mr. b) played the villain?
CREATE TABLE "table1_23170118_2" ( "episode_number" text, "title" text, "villains" text, "director" text, "writer" text, "original_airdate" text );
SELECT "title" FROM "table1_23170118_2" WHERE "villains"='Reg Lacey (AKA Mr. B)';
1-23170118-2
Name the most three pointers for dewanna bonner
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT MAX("three_pointers") FROM "player_stats" WHERE "player"='DeWanna Bonner';
1-23183195-5
Name the least field goals for chantel hilliard
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT MIN("field_goals") FROM "player_stats" WHERE "player"='Chantel Hilliard';
1-23183195-5
Name the most minutes for morgan jennings
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT MAX("minutes") FROM "player_stats" WHERE "player"='Morgan Jennings';
1-23183195-5
Name the most free throws for 4 steals
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT MAX("free_throws") FROM "player_stats" WHERE "steals"=4;
1-23183195-5
What is the road record for the team with an overall record of 22-11?
CREATE TABLE "conference_standings" ( "team" text, "sec_wins" real, "sec_losses" real, "percentage" text, "home_record" text, "road_record" text, "overall_record" text );
SELECT "road_record" FROM "conference_standings" WHERE "overall_record"='22-11';
1-23183195-2
What is the road record for Vanderbilt?
CREATE TABLE "conference_standings" ( "team" text, "sec_wins" real, "sec_losses" real, "percentage" text, "home_record" text, "road_record" text, "overall_record" text );
SELECT COUNT("road_record") FROM "conference_standings" WHERE "team"='Vanderbilt';
1-23183195-2
What team's overal record is 22-11?
CREATE TABLE "conference_standings" ( "team" text, "sec_wins" real, "sec_losses" real, "percentage" text, "home_record" text, "road_record" text, "overall_record" text );
SELECT "team" FROM "conference_standings" WHERE "overall_record"='22-11';
1-23183195-2
What is the percentage for the team with a road record of 3-4 and a home record of 7-0?
CREATE TABLE "conference_standings" ( "team" text, "sec_wins" real, "sec_losses" real, "percentage" text, "home_record" text, "road_record" text, "overall_record" text );
SELECT "percentage" FROM "conference_standings" WHERE "road_record"='3-4' AND "home_record"='7-0';
1-23183195-2
Name the number of three pointers for 67
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT COUNT("three_pointers") FROM "player_stats" WHERE "points"=67;
1-23184448-4
Name the field goals for alexis yackley
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT MAX("field_goals") FROM "player_stats" WHERE "player"='Alexis Yackley';
1-23184448-4
Name the number of assists for 321 minutes
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT COUNT("assists") FROM "player_stats" WHERE "minutes"=321;
1-23184448-4
Name the number of players for field goals being 25 and blocks is 6
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "minutes" real, "field_goals" real, "three_pointers" real, "free_throws" real, "rebounds" real, "assists" real, "blocks" real, "steals" real, "points" real );
SELECT COUNT("player") FROM "player_stats" WHERE "field_goals"=25 AND "blocks"=6;
1-23184448-4
Name the location attendance of 5-15
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "record"='5-15';
1-23186738-6
Name the record for golden state
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "team"='Golden State';
1-23186738-6
Name the number of high points for record 5-17
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_points") FROM "game_log" WHERE "record"='5-17';
1-23186738-6
Name the record for houston
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "team"='Houston';
1-23186738-6
Name the cardinal points for 19-4 record
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "cardinal_points" real, "opp_points" real, "record" text );
SELECT MIN("cardinal_points") FROM "schedule" WHERE "record"='19-4';
1-23192661-3
Name the location for 2-1 record
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "cardinal_points" real, "opp_points" real, "record" text );
SELECT "location" FROM "schedule" WHERE "record"='2-1';
1-23192661-3
Name the total number of step 6 for 11 gs grade
CREATE TABLE "base_salary" ( "gs_grade" real, "step_1" text, "step_2" text, "step_3" text, "step_4" text, "step_5" text, "step_6" text, "step_7" text, "step_8" text, "step_9" text, "step_10" text );
SELECT COUNT("step_6") FROM "base_salary" WHERE "gs_grade"=11;
1-2319437-1
such as are entire the rating of closing where championship is moscow
CREATE TABLE "wta_tier_i" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_final" text, "score_in_final" text );
SELECT "score_in_final" FROM "wta_tier_i" WHERE "championship"='Moscow';
1-23197088-4
as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat
CREATE TABLE "wta_tier_i" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_final" text, "score_in_final" text );
SELECT COUNT("score_in_final") FROM "wta_tier_i" WHERE "opponents_in_final"='Alexandra Fusai Nathalie Tauziat';
1-23197088-4
what are every one of the rivals in conclusive where title is zürich
CREATE TABLE "wta_tier_i" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_final" text, "score_in_final" text );
SELECT "opponents_in_final" FROM "wta_tier_i" WHERE "championship"='Zürich';
1-23197088-4
what are all the score in conclusive where title is rome
CREATE TABLE "wta_tier_i" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_final" text, "score_in_final" text );
SELECT "score_in_final" FROM "wta_tier_i" WHERE "championship"='Rome';
1-23197088-4
At what # does 10 3 bbl/day (2006) equal 5097?
CREATE TABLE "import" ( "num" real, "importing_nation" text, "10_3_bbl_day_2011" real, "10_3_m_3_day_2011" real, "10_3_bbl_day_2009" real, "10_3_m_3_day_2009" real, "10_3_bbl_day_2006" real, "10_3_m_3_day_2006" real );
SELECT MIN("num") FROM "import" WHERE "10_3_bbl_day_2006"=5097;
1-23195-7
In how many importing nations is 10 3 m 3 /day (2006) equivalent to 150?
CREATE TABLE "import" ( "num" real, "importing_nation" text, "10_3_bbl_day_2011" real, "10_3_m_3_day_2011" real, "10_3_bbl_day_2009" real, "10_3_m_3_day_2009" real, "10_3_bbl_day_2006" real, "10_3_m_3_day_2006" real );
SELECT COUNT("importing_nation") FROM "import" WHERE "10_3_m_3_day_2006"=150;
1-23195-7
What is the highest number in 10 3 m 3 /day (2011) where 10 3 bbl/day (2006) is equivalent to 787?
CREATE TABLE "import" ( "num" real, "importing_nation" text, "10_3_bbl_day_2011" real, "10_3_m_3_day_2011" real, "10_3_bbl_day_2009" real, "10_3_m_3_day_2009" real, "10_3_bbl_day_2006" real, "10_3_m_3_day_2006" real );
SELECT MAX("10_3_m_3_day_2011") FROM "import" WHERE "10_3_bbl_day_2006"=787;
1-23195-7
Name the most 10 3 bbl/d (2008) for present share being 1.7%
CREATE TABLE "production" ( "num" real, "producing_nation" text, "10_3_bbl_d_2006" text, "10_3_bbl_d_2007" real, "10_3_bbl_d_2008" real, "10_3_bbl_d_2009" real, "present_share" text );
SELECT MAX("10_3_bbl_d_2008") FROM "production" WHERE "present_share"='1.7%';
1-23195-5
Name the present share for australia
CREATE TABLE "production" ( "num" real, "producing_nation" text, "10_3_bbl_d_2006" text, "10_3_bbl_d_2007" real, "10_3_bbl_d_2008" real, "10_3_bbl_d_2009" real, "present_share" text );
SELECT "present_share" FROM "production" WHERE "producing_nation"='Australia';
1-23195-5
Name the 10 3 bbl/d (2009) when 10 3 bbl/d (2007) is 180
CREATE TABLE "production" ( "num" real, "producing_nation" text, "10_3_bbl_d_2006" text, "10_3_bbl_d_2007" real, "10_3_bbl_d_2008" real, "10_3_bbl_d_2009" real, "present_share" text );
SELECT "10_3_bbl_d_2009" FROM "production" WHERE "10_3_bbl_d_2007"=180;
1-23195-5