question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What location is listed from 2005-2010?
CREATE TABLE "former_members" ( "institution" text, "location" text, "team_nickname" text, "years" text, "new_conference" text, "new_classification" text );
SELECT "location" FROM "former_members" WHERE "years"='2005-2010';
1-26476336-2
Where is the nickname the Red Raiders?
CREATE TABLE "former_members" ( "institution" text, "location" text, "team_nickname" text, "years" text, "new_conference" text, "new_classification" text );
SELECT "location" FROM "former_members" WHERE "team_nickname"='Red Raiders';
1-26476336-2
What school has the new conference as SELC?
CREATE TABLE "former_members" ( "institution" text, "location" text, "team_nickname" text, "years" text, "new_conference" text, "new_classification" text );
SELECT "institution" FROM "former_members" WHERE "new_conference"='SELC';
1-26476336-2
What are the years that the new classification was MCLA division i?
CREATE TABLE "former_members" ( "institution" text, "location" text, "team_nickname" text, "years" text, "new_conference" text, "new_classification" text );
SELECT "years" FROM "former_members" WHERE "new_classification"='MCLA Division I';
1-26476336-2
Name the colors for north canton
CREATE TABLE "table1_26466528_1" ( "school" text, "nickname" text, "location" text, "colors" text, "join_date" real );
SELECT "colors" FROM "table1_26466528_1" WHERE "location"='North Canton';
1-26466528-1
Name the most join date
CREATE TABLE "table1_26466528_1" ( "school" text, "nickname" text, "location" text, "colors" text, "join_date" real );
SELECT MAX("join_date") FROM "table1_26466528_1";
1-26466528-1
Name the least join date
CREATE TABLE "table1_26466528_1" ( "school" text, "nickname" text, "location" text, "colors" text, "join_date" real );
SELECT MIN("join_date") FROM "table1_26466528_1";
1-26466528-1
Name the location for black, orange
CREATE TABLE "table1_26466528_1" ( "school" text, "nickname" text, "location" text, "colors" text, "join_date" real );
SELECT "location" FROM "table1_26466528_1" WHERE "colors"='Black, Orange';
1-26466528-1
Name when north canton joined
CREATE TABLE "table1_26466528_1" ( "school" text, "nickname" text, "location" text, "colors" text, "join_date" real );
SELECT "join_date" FROM "table1_26466528_1" WHERE "location"='North Canton';
1-26466528-1
How many "series" were in the 12th "position?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT COUNT("series") FROM "career_summary" WHERE "position"='12th';
1-26473176-1
How many teams were at 10 points?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT COUNT("team") FROM "career_summary" WHERE "points"=10;
1-26473176-1
What was the number of podiums in 12th position?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT "podiums" FROM "career_summary" WHERE "position"='12th';
1-26473176-1
Where did he finish when he started at 21.6?
CREATE TABLE "career_nascar_statistics" ( "year" real, "races" real, "wins" real, "poles" real, "top_5" real, "top_10" real, "dnf" real, "finish" text, "start" text, "winnings" text, "season_rank" text, "team_s" text );
SELECT COUNT("finish") FROM "career_nascar_statistics" WHERE "start"='21.6';
1-2649597-1
What teams started at 39.1?
CREATE TABLE "career_nascar_statistics" ( "year" real, "races" real, "wins" real, "poles" real, "top_5" real, "top_10" real, "dnf" real, "finish" text, "start" text, "winnings" text, "season_rank" text, "team_s" text );
SELECT "team_s" FROM "career_nascar_statistics" WHERE "start"='39.1';
1-2649597-1
Where did they finish in the season when when they won $491,977?
CREATE TABLE "career_nascar_statistics" ( "year" real, "races" real, "wins" real, "poles" real, "top_5" real, "top_10" real, "dnf" real, "finish" text, "start" text, "winnings" text, "season_rank" text, "team_s" text );
SELECT "season_rank" FROM "career_nascar_statistics" WHERE "winnings"='$491,977';
1-2649597-1
How many vocal parts are there when the year of songs original release date as listed in rock band 3 was 2000?
CREATE TABLE "track_listing" ( "song_title" text, "artist" text, "year_year_of_songs_original_release_as_listed_in_rock_band_3" real, "genre" text, "keyboard_support" text, "vocal_parts" real, "nintendo_ds_setlist" text );
SELECT MIN("vocal_parts") FROM "track_listing" WHERE "year_year_of_songs_original_release_as_listed_in_rock_band_3"=2000;
1-26488540-1
How many different genres appear for the Jimi Hendrix Experience?
CREATE TABLE "track_listing" ( "song_title" text, "artist" text, "year_year_of_songs_original_release_as_listed_in_rock_band_3" real, "genre" text, "keyboard_support" text, "vocal_parts" real, "nintendo_ds_setlist" text );
SELECT COUNT("genre") FROM "track_listing" WHERE "artist"='The Jimi Hendrix Experience';
1-26488540-1
Name the total viewers on fx+ for night on the sun
CREATE TABLE "united_kingdom" ( "episode_number_production_number" text, "title" text, "original_air_date" text, "total_viewers_on_fx" text, "total_viewers_on_fx" text, "total_viewers" text, "rank_on_channel" text );
SELECT "total_viewers_on_fx" FROM "united_kingdom" WHERE "title"='Night on the Sun';
1-26493520-3
Name the episode number for total viewers on fx+ being 102,000
CREATE TABLE "united_kingdom" ( "episode_number_production_number" text, "title" text, "original_air_date" text, "total_viewers_on_fx" text, "total_viewers_on_fx" text, "total_viewers" text, "rank_on_channel" text );
SELECT "episode_number_production_number" FROM "united_kingdom" WHERE "total_viewers_on_fx"='102,000';
1-26493520-3
Name the title for total viewers on fx+ being 483,000
CREATE TABLE "united_kingdom" ( "episode_number_production_number" text, "title" text, "original_air_date" text, "total_viewers_on_fx" text, "total_viewers_on_fx" text, "total_viewers" text, "rank_on_channel" text );
SELECT "title" FROM "united_kingdom" WHERE "total_viewers_on_fx"='483,000';
1-26493520-3
Name the total viewers on fx+ for 583,000 total viewers
CREATE TABLE "united_kingdom" ( "episode_number_production_number" text, "title" text, "original_air_date" text, "total_viewers_on_fx" text, "total_viewers_on_fx" text, "total_viewers" text, "rank_on_channel" text );
SELECT "total_viewers_on_fx" FROM "united_kingdom" WHERE "total_viewers"='583,000';
1-26493520-3
Name the rank on channel for january 21, 2011
CREATE TABLE "united_kingdom" ( "episode_number_production_number" text, "title" text, "original_air_date" text, "total_viewers_on_fx" text, "total_viewers_on_fx" text, "total_viewers" text, "rank_on_channel" text );
SELECT "rank_on_channel" FROM "united_kingdom" WHERE "original_air_date"='January 21, 2011';
1-26493520-3
How many different people wrote the episode "Beautifully Broken"?
CREATE TABLE "table1_26493520_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT COUNT("written_by") FROM "table1_26493520_1" WHERE "title"='\"Beautifully Broken\"';
1-26493520-1
How many episodes were written by Alexander Woo and directed by Scott Winant?
CREATE TABLE "table1_26493520_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT COUNT("title") FROM "table1_26493520_1" WHERE "written_by"='Alexander Woo' AND "directed_by"='Scott Winant';
1-26493520-1
Name the most round for jordan cameron
CREATE TABLE "2010_pacific_10_conference_football_seas" ( "round" real, "overall_pick" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT MAX("round") FROM "2010_pacific_10_conference_football_seas" WHERE "player"='Jordan Cameron';
1-26533354-8
Name the position for jordan cameron
CREATE TABLE "2010_pacific_10_conference_football_seas" ( "round" real, "overall_pick" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "2010_pacific_10_conference_football_seas" WHERE "player"='Jordan Cameron';
1-26533354-8
Name the position for stanley havili
CREATE TABLE "2010_pacific_10_conference_football_seas" ( "round" real, "overall_pick" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "2010_pacific_10_conference_football_seas" WHERE "player"='Stanley Havili';
1-26533354-8
Name the college for david carter
CREATE TABLE "2010_pacific_10_conference_football_seas" ( "round" real, "overall_pick" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "college" FROM "2010_pacific_10_conference_football_seas" WHERE "player"='David Carter';
1-26533354-8
What is the democratic coalation when together we can do more is sergio castro ( pc )?
CREATE TABLE "chamber_of_deputies" ( "dist" real, "democratic_coalition" text, "alliance" text, "together_we_can_do_more" text, "independent_regional_force" text, "independents" text );
SELECT "democratic_coalition" FROM "chamber_of_deputies" WHERE "together_we_can_do_more"='Sergio Castro ( PC )';
1-2651755-1
What is the independent regional force when alliance is (r) iván norambuena ( udi )?
CREATE TABLE "chamber_of_deputies" ( "dist" real, "democratic_coalition" text, "alliance" text, "together_we_can_do_more" text, "independent_regional_force" text, "independents" text );
SELECT "independent_regional_force" FROM "chamber_of_deputies" WHERE "alliance"='(R) Iván Norambuena ( UDI )';
1-2651755-1
Who is the together we can do more when democratic coalition is rené alinco ( ppd )?
CREATE TABLE "chamber_of_deputies" ( "dist" real, "democratic_coalition" text, "alliance" text, "together_we_can_do_more" text, "independent_regional_force" text, "independents" text );
SELECT "together_we_can_do_more" FROM "chamber_of_deputies" WHERE "democratic_coalition"='René Alinco ( PPD )';
1-2651755-1
Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )?
CREATE TABLE "chamber_of_deputies" ( "dist" real, "democratic_coalition" text, "alliance" text, "together_we_can_do_more" text, "independent_regional_force" text, "independents" text );
SELECT "independent_regional_force" FROM "chamber_of_deputies" WHERE "democratic_coalition"='(R) Jorge Tarud ( PPD )';
1-2651755-1
where together we can do more is gloria mujica ( ph ) what are all the cons.
CREATE TABLE "senate" ( "cons" text, "democratic_coalition" text, "alliance" text, "together_we_can_do_more" text, "independent_regional_force" text, "independents" text );
SELECT "cons" FROM "senate" WHERE "together_we_can_do_more"='Gloria Mujica ( PH )';
1-2651755-2
where democratic coalition is eduardo frei ( pdc ) what are all the alliance
CREATE TABLE "senate" ( "cons" text, "democratic_coalition" text, "alliance" text, "together_we_can_do_more" text, "independent_regional_force" text, "independents" text );
SELECT "alliance" FROM "senate" WHERE "democratic_coalition"='Eduardo Frei ( PDC )';
1-2651755-2
What's the name of the episode associated with Nick production number 342?
CREATE TABLE "table1_2655016_4" ( "season_num" real, "series_num" real, "episode_title" text, "original_air_date" text, "nick_prod_num" real );
SELECT "episode_title" FROM "table1_2655016_4" WHERE "nick_prod_num"=342;
1-2655016-4
What date did season 12 premiere?
CREATE TABLE "table1_2655016_4" ( "season_num" real, "series_num" real, "episode_title" text, "original_air_date" text, "nick_prod_num" real );
SELECT "original_air_date" FROM "table1_2655016_4" WHERE "season_num"=12;
1-2655016-4
What is the lowest Nick production number?
CREATE TABLE "table1_2655016_4" ( "season_num" real, "series_num" real, "episode_title" text, "original_air_date" text, "nick_prod_num" real );
SELECT MIN("nick_prod_num") FROM "table1_2655016_4";
1-2655016-4
When did the episode originally air with a nick production number of 945?
CREATE TABLE "table1_2655016_10" ( "season_num" real, "series_num" real, "episode_title" text, "original_air_date" text, "nick_prod_num" real );
SELECT "original_air_date" FROM "table1_2655016_10" WHERE "nick_prod_num"=945;
1-2655016-10
What was the latest season with a nick production number of 942?
CREATE TABLE "table1_2655016_10" ( "season_num" real, "series_num" real, "episode_title" text, "original_air_date" text, "nick_prod_num" real );
SELECT MAX("season_num") FROM "table1_2655016_10" WHERE "nick_prod_num"=942;
1-2655016-10
Name the metrical equivalence for linha
CREATE TABLE "table1_26538461_2" ( "portuguese_name" text, "english_name" text, "subdivides_in" text, "equivalence_in_varas" text, "metrical_equivalence" text );
SELECT "metrical_equivalence" FROM "table1_26538461_2" WHERE "portuguese_name"='Linha';
1-26538461-2
Name the equivalence for varas for geometrical pace
CREATE TABLE "table1_26538461_2" ( "portuguese_name" text, "english_name" text, "subdivides_in" text, "equivalence_in_varas" text, "metrical_equivalence" text );
SELECT "equivalence_in_varas" FROM "table1_26538461_2" WHERE "english_name"='Geometrical pace';
1-26538461-2
Name the subdivides in equivalence for varas 1/5
CREATE TABLE "table1_26538461_2" ( "portuguese_name" text, "english_name" text, "subdivides_in" text, "equivalence_in_varas" text, "metrical_equivalence" text );
SELECT "subdivides_in" FROM "table1_26538461_2" WHERE "equivalence_in_varas"='1/5';
1-26538461-2
How many season # where episode title is " Avril Lavigne "?
CREATE TABLE "season_10_2005" ( "season_num" real, "series_num" real, "episode_title" text, "original_air_date" text, "nick_prod_num" real );
SELECT "season_num" FROM "season_10_2005" WHERE "episode_title"='\" Avril Lavigne \"';
1-2655016-11
When موسم زيتون is the arabic title when is the year (ceremony)?
CREATE TABLE "submissions" ( "year_ceremony" text, "english_title" text, "arabic_title" text, "director" text, "result" text );
SELECT "year_ceremony" FROM "submissions" WHERE "arabic_title"='موسم زيتون';
1-26555737-1
When ملح هذا البحر is the arabic title what is the english title?
CREATE TABLE "submissions" ( "year_ceremony" text, "english_title" text, "arabic_title" text, "director" text, "result" text );
SELECT "english_title" FROM "submissions" WHERE "arabic_title"='ملح هذا البحر';
1-26555737-1
When nominee is the result who is the director?
CREATE TABLE "submissions" ( "year_ceremony" text, "english_title" text, "arabic_title" text, "director" text, "result" text );
SELECT "director" FROM "submissions" WHERE "result"='Nominee';
1-26555737-1
When hany abu-assad category:articles with hcards is the director what is the result?
CREATE TABLE "submissions" ( "year_ceremony" text, "english_title" text, "arabic_title" text, "director" text, "result" text );
SELECT "result" FROM "submissions" WHERE "director"='Hany Abu-Assad Category:Articles with hCards';
1-26555737-1
When 2012 (85th) is the year (ceremony) how many results?
CREATE TABLE "submissions" ( "year_ceremony" text, "english_title" text, "arabic_title" text, "director" text, "result" text );
SELECT COUNT("result") FROM "submissions" WHERE "year_ceremony"='2012 (85th)';
1-26555737-1
When salt of this sea is the english title who is the director?
CREATE TABLE "submissions" ( "year_ceremony" text, "english_title" text, "arabic_title" text, "director" text, "result" text );
SELECT "director" FROM "submissions" WHERE "english_title"='Salt of this Sea';
1-26555737-1
What was the record lowest temperature with a precipitation of 1.71 in.?
CREATE TABLE "climate" ( "month" text, "avg_high" text, "avg_low" text, "mean_avg" text, "precip" text, "record_high" text, "record_low" text );
SELECT "record_low" FROM "climate" WHERE "precip"='1.71 in.';
1-26558-1
who directed and produced 176452?
CREATE TABLE "table1_26561498_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" real );
SELECT "directed_by" FROM "table1_26561498_1" WHERE "production_code"=176452;
1-26561498-1
what is the original air date for julie warner?
CREATE TABLE "table1_26561498_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_26561498_1" WHERE "patient_portrayer"='Julie Warner';
1-26561498-1
what was written by alex carter?
CREATE TABLE "table1_26561498_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" real );
SELECT "written_by" FROM "table1_26561498_1" WHERE "patient_portrayer"='Alex Carter';
1-26561498-1
Who is the patient portrayer of the episode with the production code 3T5004?
CREATE TABLE "table1_26561509_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" text );
SELECT "patient_portrayer" FROM "table1_26561509_1" WHERE "production_code"='3T5004';
1-26561509-1
Who directed the episode with the title "Conor McNamara, 2026"?
CREATE TABLE "table1_26561509_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" text );
SELECT "directed_by" FROM "table1_26561509_1" WHERE "title"='\"Conor McNamara, 2026\"';
1-26561509-1
The episode with the no. 54, directed by Charles Haid, is written by who?
CREATE TABLE "table1_26561509_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" text );
SELECT "written_by" FROM "table1_26561509_1" WHERE "directed_by"='Charles Haid' AND "no"=54;
1-26561509-1
What is the original air date of the episode with the title "Monica Wilder"?
CREATE TABLE "table1_26561509_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" text );
SELECT "original_air_date" FROM "table1_26561509_1" WHERE "title"='\"Monica Wilder\"';
1-26561509-1
How many are directed by episodes with the production code 3T5009?
CREATE TABLE "table1_26561509_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "patient_portrayer" text, "original_air_date" text, "production_code" text );
SELECT COUNT("directed_by") FROM "table1_26561509_1" WHERE "production_code"='3T5009';
1-26561509-1
How many millions of US viewers for the episode "the last word"?
CREATE TABLE "table1_26565904_2" ( "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 "u_s_viewers_millions" FROM "table1_26565904_2" WHERE "title"='\"The Last Word\"';
1-26565904-2
When was the first UK broadcast for episode 9?
CREATE TABLE "episodes_and_ratings" ( "episode" real, "first_broadcast_denmark_dr1" text, "official_tns_gallup_ratings" real, "first_broadcast_uk_bbc_four" text, "official_barb_ratings" real );
SELECT "first_broadcast_uk_bbc_four" FROM "episodes_and_ratings" WHERE "episode"=9;
1-26591309-2
When was the first UK broadcast for the episode with an official TNS Gallup rating of 1575000?
CREATE TABLE "episodes_and_ratings" ( "episode" real, "first_broadcast_denmark_dr1" text, "official_tns_gallup_ratings" real, "first_broadcast_uk_bbc_four" text, "official_barb_ratings" real );
SELECT "first_broadcast_uk_bbc_four" FROM "episodes_and_ratings" WHERE "official_tns_gallup_ratings"=1575000;
1-26591309-2
When was the first UK broadcast when the official Barb ratings was 1085000?
CREATE TABLE "episodes_and_ratings" ( "episode" real, "first_broadcast_denmark_dr1" text, "official_tns_gallup_ratings" real, "first_broadcast_uk_bbc_four" text, "official_barb_ratings" real );
SELECT "first_broadcast_uk_bbc_four" FROM "episodes_and_ratings" WHERE "official_barb_ratings"=1085000;
1-26591309-2
Who is the writer with the ratings 14.8?
CREATE TABLE "episode_information" ( "episode" real, "title" text, "writer" text, "director" text, "original_airdate" text, "ratings_kanto" text, "ratings_kansai" text );
SELECT "writer" FROM "episode_information" WHERE "ratings_kanto"='14.8';
1-26591434-1
What is the original air date for the writer tanaka shinichi?
CREATE TABLE "episode_information" ( "episode" real, "title" text, "writer" text, "director" text, "original_airdate" text, "ratings_kanto" text, "ratings_kansai" text );
SELECT "original_airdate" FROM "episode_information" WHERE "writer"='Tanaka Shinichi';
1-26591434-1
What is the ratings for the original air date may 25, 2010 22.00 - 22.54?
CREATE TABLE "episode_information" ( "episode" real, "title" text, "writer" text, "director" text, "original_airdate" text, "ratings_kanto" text, "ratings_kansai" text );
SELECT "ratings_kansai" FROM "episode_information" WHERE "original_airdate"='May 25, 2010 22.00 - 22.54';
1-26591434-1
What was the ratings for episode 11?
CREATE TABLE "episode_information" ( "episode" real, "title" text, "writer" text, "director" text, "original_airdate" text, "ratings_kanto" text, "ratings_kansai" text );
SELECT "ratings_kanto" FROM "episode_information" WHERE "episode"=11;
1-26591434-1
Who was the outgoing manager of the team whose incoming manager was Dougie Freedman?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "position_in_table" text, "incoming_manager" text, "date_of_appointment" text );
SELECT "outgoing_manager" FROM "managerial_changes" WHERE "incoming_manager"='Dougie Freedman';
1-26593762-3
What was the table position for the team whose outgoing manager was Brian Laws?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "position_in_table" text, "incoming_manager" text, "date_of_appointment" text );
SELECT "position_in_table" FROM "managerial_changes" WHERE "outgoing_manager"='Brian Laws';
1-26593762-3
How many incoming managers did Burnley have?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "position_in_table" text, "incoming_manager" text, "date_of_appointment" text );
SELECT COUNT("incoming_manager") FROM "managerial_changes" WHERE "team"='Burnley';
1-26593762-3
What was the manner of departure for the team whose incoming manager was George Burley?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "position_in_table" text, "incoming_manager" text, "date_of_appointment" text );
SELECT "manner_of_departure" FROM "managerial_changes" WHERE "incoming_manager"='George Burley';
1-26593762-3
What is the Galician (reintegrationist) word of the Galician (Official) is bo día / bos días?
CREATE TABLE "examples" ( "english" text, "galician_official" text, "galician_reintegrationist" text, "portuguese" text, "spanish" text );
SELECT "galician_reintegrationist" FROM "examples" WHERE "galician_official"='Bo día / Bos días';
1-26614365-5
What is the Galician (reintegrationist) word of the Galician (Official) is adeus*?
CREATE TABLE "examples" ( "english" text, "galician_official" text, "galician_reintegrationist" text, "portuguese" text, "spanish" text );
SELECT "galician_reintegrationist" FROM "examples" WHERE "galician_official"='Adeus*';
1-26614365-5
What is the Portuguese word for the English word 'grandfather'?
CREATE TABLE "examples" ( "english" text, "galician_official" text, "galician_reintegrationist" text, "portuguese" text, "spanish" text );
SELECT "portuguese" FROM "examples" WHERE "english"='Grandfather';
1-26614365-5
How many Spanish word is there for the Portuguese bem-vindo?
CREATE TABLE "examples" ( "english" text, "galician_official" text, "galician_reintegrationist" text, "portuguese" text, "spanish" text );
SELECT COUNT("spanish") FROM "examples" WHERE "portuguese"='Bem-vindo';
1-26614365-5
What is the Portuguese word for the English word 'welcome'?
CREATE TABLE "examples" ( "english" text, "galician_official" text, "galician_reintegrationist" text, "portuguese" text, "spanish" text );
SELECT "portuguese" FROM "examples" WHERE "english"='Welcome';
1-26614365-5
what gender has an asian black bear?
CREATE TABLE "sweetspets" ( "name" text, "sweet" text, "species" text, "gender" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "gender" FROM "sweetspets" WHERE "species"='Asian black bear';
1-26615633-3
what is the sweet for voice actor saki fujita?
CREATE TABLE "sweetspets" ( "name" text, "sweet" text, "species" text, "gender" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "sweet" FROM "sweetspets" WHERE "voice_actor"='Saki Fujita';
1-26615633-3
whatis the gender wher ethe species is holland lop?
CREATE TABLE "sweetspets" ( "name" text, "sweet" text, "species" text, "gender" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "gender" FROM "sweetspets" WHERE "species"='Holland Lop';
1-26615633-3
what is the media debut for the asian black bear?
CREATE TABLE "sweetspets" ( "name" text, "sweet" text, "species" text, "gender" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "media_debut" FROM "sweetspets" WHERE "species"='Asian black bear';
1-26615633-3
What is the Spanish word for cas [ˈkas]?
CREATE TABLE "table1_26614365_1" ( "western" text, "central" text, "eastern" text, "old_galician_13th_15th_c" text, "portuguese" text, "spanish" text, "latin" text, "english" text );
SELECT "spanish" FROM "table1_26614365_1" WHERE "central"='cas [ˈkas]';
1-26614365-1
What is the eastern word for "light"?
CREATE TABLE "table1_26614365_1" ( "western" text, "central" text, "eastern" text, "old_galician_13th_15th_c" text, "portuguese" text, "spanish" text, "latin" text, "english" text );
SELECT "eastern" FROM "table1_26614365_1" WHERE "english"='light';
1-26614365-1
What is the central word for "robbers"?
CREATE TABLE "table1_26614365_1" ( "western" text, "central" text, "eastern" text, "old_galician_13th_15th_c" text, "portuguese" text, "spanish" text, "latin" text, "english" text );
SELECT "central" FROM "table1_26614365_1" WHERE "english"='robbers';
1-26614365-1
What is the Latin for "you sang"?
CREATE TABLE "table1_26614365_1" ( "western" text, "central" text, "eastern" text, "old_galician_13th_15th_c" text, "portuguese" text, "spanish" text, "latin" text, "english" text );
SELECT "latin" FROM "table1_26614365_1" WHERE "english"='you sang';
1-26614365-1
What is the western word for "latrones" in Latin?
CREATE TABLE "table1_26614365_1" ( "western" text, "central" text, "eastern" text, "old_galician_13th_15th_c" text, "portuguese" text, "spanish" text, "latin" text, "english" text );
SELECT "western" FROM "table1_26614365_1" WHERE "latin"='latrones';
1-26614365-1
What is the Old Galician for cantaste in Portuguese?
CREATE TABLE "table1_26614365_1" ( "western" text, "central" text, "eastern" text, "old_galician_13th_15th_c" text, "portuguese" text, "spanish" text, "latin" text, "english" text );
SELECT "old_galician_13th_15th_c" FROM "table1_26614365_1" WHERE "portuguese"='cantaste';
1-26614365-1
What is the lowest overall amount of rainfall totals (million m 3)?
CREATE TABLE "major_water_basins_of_jamaica" ( "hydrographic_basin" text, "surface_area_km_2" real, "rainfall_totals_million_m_3" real, "evapotranspiration_million_m_3" real, "surface_water_runoff_million_m_3" real, "groundwater_discharge_million_m_3" real );
SELECT MIN("rainfall_totals_million_m_3") FROM "major_water_basins_of_jamaica";
1-26609958-1
When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?
CREATE TABLE "major_water_basins_of_jamaica" ( "hydrographic_basin" text, "surface_area_km_2" real, "rainfall_totals_million_m_3" real, "evapotranspiration_million_m_3" real, "surface_water_runoff_million_m_3" real, "groundwater_discharge_million_m_3" real );
SELECT MIN("groundwater_discharge_million_m_3") FROM "major_water_basins_of_jamaica" WHERE "hydrographic_basin"='Cabarita River';
1-26609958-1
When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)?
CREATE TABLE "major_water_basins_of_jamaica" ( "hydrographic_basin" text, "surface_area_km_2" real, "rainfall_totals_million_m_3" real, "evapotranspiration_million_m_3" real, "surface_water_runoff_million_m_3" real, "groundwater_discharge_million_m_3" real );
SELECT "rainfall_totals_million_m_3" FROM "major_water_basins_of_jamaica" WHERE "hydrographic_basin"='Martha Brae, River';
1-26609958-1
Name the average for assists per game
CREATE TABLE "statistics_leaders" ( "category" text, "player" text, "games_played" real, "totals" text, "average" text );
SELECT "average" FROM "statistics_leaders" WHERE "category"='Assists per game';
1-26611679-3
Name the average for 23 games played
CREATE TABLE "statistics_leaders" ( "category" text, "player" text, "games_played" real, "totals" text, "average" text );
SELECT "average" FROM "statistics_leaders" WHERE "games_played"=23;
1-26611679-3
Name the category for 50 totals
CREATE TABLE "statistics_leaders" ( "category" text, "player" text, "games_played" real, "totals" text, "average" text );
SELECT "category" FROM "statistics_leaders" WHERE "totals"='50';
1-26611679-3
Name the number of average for steals per game
CREATE TABLE "statistics_leaders" ( "category" text, "player" text, "games_played" real, "totals" text, "average" text );
SELECT COUNT("average") FROM "statistics_leaders" WHERE "category"='Steals per game';
1-26611679-3
who was the voice actor when the species is hedgehog?
CREATE TABLE "jewelpets" ( "name" text, "jewel" text, "species" text, "gender" text, "jewel_power" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "voice_actor" FROM "jewelpets" WHERE "species"='Hedgehog';
1-26615633-1
who is the voice actor with the birthday march 26?
CREATE TABLE "jewelpets" ( "name" text, "jewel" text, "species" text, "gender" text, "jewel_power" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "voice_actor" FROM "jewelpets" WHERE "birthday"='March 26';
1-26615633-1
what is the jewel power when the media debut is ep 17?
CREATE TABLE "jewelpets" ( "name" text, "jewel" text, "species" text, "gender" text, "jewel_power" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "jewel_power" FROM "jewelpets" WHERE "media_debut"='EP 17';
1-26615633-1
how many times is the jewel malachite?
CREATE TABLE "jewelpets" ( "name" text, "jewel" text, "species" text, "gender" text, "jewel_power" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT COUNT("birthday") FROM "jewelpets" WHERE "jewel"='Malachite';
1-26615633-1
What is the species when jewel is coal?
CREATE TABLE "jewelpets" ( "name" text, "jewel" text, "species" text, "gender" text, "jewel_power" text, "attribute" text, "birthday" text, "media_debut" text, "voice_actor" text );
SELECT "species" FROM "jewelpets" WHERE "jewel"='Coal';
1-26615633-1
Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?
CREATE TABLE "table1_26638600_3" ( "rnd" real, "circuit" text, "lites_1_race_one_winning_team" text, "lites_2_race_one_winning_team" text, "lites_1_race_two_winning_team" text, "lites_2_race_two_winning_team" text );
SELECT "lites_2_race_two_winning_team" FROM "table1_26638600_3" WHERE "lites_1_race_one_winning_team"='#13 Inspire Motorsports';
1-26638600-3
How many different circuits had Gary Gibson has the Lites 1 race two winning team?
CREATE TABLE "table1_26638600_3" ( "rnd" real, "circuit" text, "lites_1_race_one_winning_team" text, "lites_2_race_one_winning_team" text, "lites_1_race_two_winning_team" text, "lites_2_race_two_winning_team" text );
SELECT COUNT("lites_2_race_one_winning_team") FROM "table1_26638600_3" WHERE "lites_1_race_two_winning_team"='Gary Gibson';
1-26638600-3
Who is the lites 2 race two winning team when #11 Performance Tech is the lites 1 race two winning team?
CREATE TABLE "table1_26638600_3" ( "rnd" real, "circuit" text, "lites_1_race_one_winning_team" text, "lites_2_race_one_winning_team" text, "lites_1_race_two_winning_team" text, "lites_2_race_two_winning_team" text );
SELECT "lites_2_race_two_winning_team" FROM "table1_26638600_3" WHERE "lites_1_race_two_winning_team"='#11 Performance Tech';
1-26638600-3