question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What is the highest win for the team Nacional?
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MAX("wins") FROM "torneo_apertura" WHERE "team"='Nacional';
1-14871601-1
What is the smallest conceded value for the team 12 De Octubre?
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MIN("conceded") FROM "torneo_apertura" WHERE "team"='12 de Octubre';
1-14871601-1
What is the smallest draws value with 21 points?
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MIN("draws") FROM "torneo_apertura" WHERE "points"=21;
1-14871601-1
What is the largest loss for the Tacuary team?
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MAX("losses") FROM "torneo_apertura" WHERE "team"='Tacuary';
1-14871601-1
What is the name of the venue where the opponent scored 51?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "packers_points" real, "opponents" real, "first_downs" real, "record" text, "streak" text, "venue" text, "attendance" real );
SELECT "venue" FROM "schedule" WHERE "opponents"=51;
1-14877831-2
How many first downs were there when the attendance was 13196?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "packers_points" real, "opponents" real, "first_downs" real, "record" text, "streak" text, "venue" text, "attendance" real );
SELECT MIN("first_downs") FROM "schedule" WHERE "attendance"=13196;
1-14877831-2
What was the site of the game against Buffalo Bills ?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "game_site" FROM "schedule" WHERE "opponent"='Buffalo Bills';
1-14875671-1
What was the attendance in week 8?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT MAX("attendance") FROM "schedule" WHERE "week"=8;
1-14875671-1
What was the date when the attendance was 63995
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "attendance"=63995;
1-14875671-1
Who was the opponent in week 4?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "week"=4;
1-14875671-1
How many different skippers of the yacht City Index Leopard?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT COUNT("skipper") FROM "line_honours_results_top_10" WHERE "yacht"='City Index Leopard';
1-14882588-2
What are all elapsed time amounts for yacht type Reichel Pugh 55?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "elapsed_time_d_hh_mm_ss" FROM "line_honours_results_top_10" WHERE "yacht_type"='Reichel Pugh 55';
1-14882588-2
What are all elapsed time for yacht type STP 65?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "elapsed_time_d_hh_mm_ss" FROM "line_honours_results_top_10" WHERE "yacht_type"='STP 65';
1-14882588-2
If sail number is AUS 03, what are all associated race numbers?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "race_number" FROM "line_honours_results_top_10" WHERE "sail_number"='AUS 03';
1-14882588-2
What are all values of LOA(metres) for an elapsed time of 2:17:01:05?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "loa_metres" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='2:17:01:05';
1-14882588-2
When the elapsed time is 2:14:12:49, what are all yachts associated with this value?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "yacht" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='2:14:12:49';
1-14882588-2
In what location was the fastest time 1:37.071s?
CREATE TABLE "women_kayak" ( "distance" text, "event" text, "record" text, "athletes" text, "nationality" text, "year" real, "location" text );
SELECT "location" FROM "women_kayak" WHERE "record"='1:37.071s';
1-14884844-2
What are all the places where Birgit Fischer competed?
CREATE TABLE "women_kayak" ( "distance" text, "event" text, "record" text, "athletes" text, "nationality" text, "year" real, "location" text );
SELECT "location" FROM "women_kayak" WHERE "athletes"='Birgit Fischer';
1-14884844-2
What are the records when Elzbieta Urbanczik competed?
CREATE TABLE "women_kayak" ( "distance" text, "event" text, "record" text, "athletes" text, "nationality" text, "year" real, "location" text );
SELECT "record" FROM "women_kayak" WHERE "athletes"='Elzbieta Urbanczik';
1-14884844-2
Name the number of wins for when points is 17
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT COUNT("wins") FROM "torneo_apertura" WHERE "points"=17;
1-14889048-1
Name the number of draws for when conceded is 25
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT COUNT("draws") FROM "torneo_apertura" WHERE "conceded"=25;
1-14889048-1
Name the most conceded when draws is 5 and position is 1
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MAX("conceded") FROM "torneo_apertura" WHERE "draws"=5 AND "position"=1;
1-14889048-1
What date was the episode with production code 176265 aired?
CREATE TABLE "table1_14889988_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_14889988_1" WHERE "production_code"=176265;
1-14889988-1
On what dates were episodes written by Robert Carlock aired?
CREATE TABLE "table1_14889988_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_14889988_1" WHERE "written_by"='Robert Carlock';
1-14889988-1
What is the production code for episode 229?
CREATE TABLE "table1_14889988_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT MAX("production_code") FROM "table1_14889988_1" WHERE "no_in_series"=229;
1-14889988-1
What is the title for the episode written by Robert Carlock & Dana Klein Borkow?
CREATE TABLE "table1_14889988_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "title" FROM "table1_14889988_1" WHERE "written_by"='Robert Carlock & Dana Klein Borkow';
1-14889988-1
Who directed the episode with the production code 176252?
CREATE TABLE "table1_14889988_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "directed_by" FROM "table1_14889988_1" WHERE "production_code"=176252;
1-14889988-1
What date was the episode entitled "The One Where Ross is Fine" aired?
CREATE TABLE "table1_14889988_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_14889988_1" WHERE "title"='\"The One Where Ross is Fine\"';
1-14889988-1
How many points when 15 is scored is considered the minimum?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MIN("points") FROM "torneo_clausura" WHERE "scored"=15;
1-14889048-2
When a team wins 4, how much is the Maximum amount of points?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MAX("points") FROM "torneo_clausura" WHERE "wins"=4;
1-14889048-2
How may draws did libertad have?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT COUNT("draws") FROM "torneo_clausura" WHERE "team"='Libertad';
1-14889048-2
Name the men doubles for els baert
CREATE TABLE "national_junior_champions" ( "year" real, "mens_singles" text, "womens_singles" text, "men_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "men_doubles" FROM "national_junior_champions" WHERE "womens_singles"='Els Baert';
1-14903355-2
Name the men doubles for caroline persyn smids
CREATE TABLE "national_junior_champions" ( "year" real, "mens_singles" text, "womens_singles" text, "men_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "men_doubles" FROM "national_junior_champions" WHERE "womens_doubles"='Caroline Persyn Smids';
1-14903355-2
Name the number of men doubles for 2007
CREATE TABLE "national_junior_champions" ( "year" real, "mens_singles" text, "womens_singles" text, "men_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT COUNT("men_doubles") FROM "national_junior_champions" WHERE "year"=2007;
1-14903355-2
Name the womens singles for raina tzvetkova petya nedelcheva
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_singles" FROM "past_winners" WHERE "womens_doubles"='Raina Tzvetkova Petya Nedelcheva';
1-14903491-1
Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT COUNT("year") FROM "past_winners" WHERE "womens_doubles"='Diana Koleva Emilia Dimitrova' AND "mens_singles"='Jeliazko Valkov';
1-14903491-1
Name the mens singles for jeliazko valkov dobrinka peneva
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "past_winners" WHERE "mixed_doubles"='Jeliazko Valkov Dobrinka Peneva';
1-14903491-1
Name the mens singles for 1989
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "past_winners" WHERE "year"=1989;
1-14903491-1
Name the year for victoria hristova neli nedialkova
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "year" FROM "past_winners" WHERE "womens_doubles"='Victoria Hristova Neli Nedialkova';
1-14903491-1
Name the year for womens doubles being raina tzvetkova emilia dimitrova
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "year" FROM "past_winners" WHERE "womens_doubles"='Raina Tzvetkova Emilia Dimitrova';
1-14903491-1
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_doubles" FROM "past_winners" WHERE "womens_doubles"='Piret Hamer Helen Reino';
1-14903627-1
WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_doubles" FROM "past_winners" WHERE "womens_doubles"='Helen Reino Kai-Riin Saluste';
1-14903627-1
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mixed_doubles" FROM "past_winners" WHERE "womens_singles"='Kairi Viilup';
1-14903627-1
HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT COUNT("year") FROM "past_winners" WHERE "mens_doubles"='Heiki Sorge Meelis Maiste';
1-14903627-1
Name the womens doubles when mens doubles is charalambos kazilas stepan partemian
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_doubles" FROM "past_winners" WHERE "mens_doubles"='Charalambos Kazilas Stepan Partemian';
1-14903881-1
Name the womens doubles when mixed doubles is potten ruth scott
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_doubles" FROM "past_winners" WHERE "mixed_doubles"='Potten Ruth Scott';
1-14903881-1
Name the mens singles when mens doubles is george georgoudis gerostergiou
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "past_winners" WHERE "mens_doubles"='George Georgoudis Gerostergiou';
1-14903881-1
Name the womens doubles when mens doubles is theodoros velkos giorgos patis
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_doubles" FROM "past_winners" WHERE "mens_doubles"='Theodoros Velkos Giorgos Patis';
1-14903881-1
What was the earliest year Þorvaldur Ásgeirsson Lovísa Sigurðardóttir won mixed doubles
CREATE TABLE "table1_14903999_1" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT MIN("year") FROM "table1_14903999_1" WHERE "mixed_doubles"='Þorvaldur Ásgeirsson Lovísa Sigurðardóttir';
1-14903999-1
Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010
CREATE TABLE "table1_14903999_1" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_doubles" FROM "table1_14903999_1" WHERE "mixed_doubles"='Magnús Ingi Helgason Tinna Helgadóttir' AND "womens_singles"='Ragna Ingólfsdóttir' AND "year"=2010;
1-14903999-1
How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles
CREATE TABLE "table1_14903999_1" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT COUNT("womens_doubles") FROM "table1_14903999_1" WHERE "mixed_doubles"='Broddi Kristjánsson Drífa Harðardóttir';
1-14903999-1
Who won mixed doubles the years einar jónsson wagner walbom won mens doubles and wagner walbom won mens singles
CREATE TABLE "table1_14903999_1" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mixed_doubles" FROM "table1_14903999_1" WHERE "mens_doubles"='Einar Jónsson Wagner Walbom' AND "mens_singles"='Wagner Walbom';
1-14903999-1
What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles
CREATE TABLE "table1_14903999_1" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT MAX("year") FROM "table1_14903999_1" WHERE "mixed_doubles"='Árni Þór Hallgrímsson Drífa Harðardóttir';
1-14903999-1
Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles
CREATE TABLE "table1_14903999_1" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "table1_14903999_1" WHERE "mens_doubles"='Sveinn Logi Sölvason Tryggvi Nilsen' AND "womens_singles"='Elsa Nielsen';
1-14903999-1
In which position is the team Cerro Porteño?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT "position" FROM "torneo_clausura" WHERE "team"='Cerro Porteño';
1-14911550-5
How many games were played?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MIN("played") FROM "torneo_clausura";
1-14911550-5
What is the result of men's doubles when there was no competition?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mixed_doubles" FROM "past_winners" WHERE "mens_doubles"='no competition';
1-14904221-1
WHo won men's singles in 1994?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mens_singles" FROM "past_winners" WHERE "year"=1994;
1-14904221-1
Who won women's singles in 2001?
CREATE TABLE "past_winners" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "womens_singles" FROM "past_winners" WHERE "year"=2001;
1-14904221-1
Name the least wins
CREATE TABLE "torneo_apertura" ( "position" real, "team" text, "played" real, "wins" real, "draws" real, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT MIN("wins") FROM "torneo_apertura";
1-14911550-1
is γолемата вода nominated for anything?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "language_s" text, "director_s" text, "result" text );
SELECT "result" FROM "submissions" WHERE "original_title"='Γолемата Вода';
1-14928423-1
how many years has сенки been nominated?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "language_s" text, "director_s" text, "result" text );
SELECT COUNT("year_ceremony") FROM "submissions" WHERE "original_title"='Сенки';
1-14928423-1
how many directors for the film мајки
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "language_s" text, "director_s" text, "result" text );
SELECT COUNT("director_s") FROM "submissions" WHERE "original_title"='Мајки';
1-14928423-1
Who is the second performer in episode 5?
CREATE TABLE "radio_series" ( "date" text, "episode" real, "performer_1" text, "performer_2" text, "performer_3" text, "performer_4" text );
SELECT "performer_2" FROM "radio_series" WHERE "episode"=5;
1-14934885-1
How many times was performer 3 Kate Robbins?
CREATE TABLE "radio_series" ( "date" text, "episode" real, "performer_1" text, "performer_2" text, "performer_3" text, "performer_4" text );
SELECT COUNT("date") FROM "radio_series" WHERE "performer_3"='Kate Robbins';
1-14934885-1
Who was perfomer one on 30 January 1988?
CREATE TABLE "radio_series" ( "date" text, "episode" real, "performer_1" text, "performer_2" text, "performer_3" text, "performer_4" text );
SELECT "performer_1" FROM "radio_series" WHERE "date"='30 January 1988';
1-14934885-1
Who was performer 4 when Kate Robbins was performer 3?
CREATE TABLE "radio_series" ( "date" text, "episode" real, "performer_1" text, "performer_2" text, "performer_3" text, "performer_4" text );
SELECT "performer_4" FROM "radio_series" WHERE "performer_3"='Kate Robbins';
1-14934885-1
How many episodes was Jimmy Mulville performer 4?
CREATE TABLE "radio_series" ( "date" text, "episode" real, "performer_1" text, "performer_2" text, "performer_3" text, "performer_4" text );
SELECT COUNT("episode") FROM "radio_series" WHERE "performer_4"='Jimmy Mulville';
1-14934885-1
How many instruments did Stuart play on "We Got Married"?
CREATE TABLE "instruments_played_by_band_members" ( "songs" text, "paul_mc_cartney" text, "stuart" text, "mc_intosh" text, "wix" text, "whitten" text, "linda_mc_cartney" text );
SELECT COUNT("stuart") FROM "instruments_played_by_band_members" WHERE "songs"='\"We Got Married\"';
1-14936656-2
Which general election had a vote swing of 1.84?
CREATE TABLE "in_general_elections" ( "year" text, "general_election" text, "seats_won" real, "change_in_seat" real, "pct_of_votes" text, "votes_swing" text );
SELECT "general_election" FROM "in_general_elections" WHERE "votes_swing"='1.84';
1-149330-1
What was the total number of seats won where the % of votes is equal to 20.29?
CREATE TABLE "in_general_elections" ( "year" text, "general_election" text, "seats_won" real, "change_in_seat" real, "pct_of_votes" text, "votes_swing" text );
SELECT COUNT("seats_won") FROM "in_general_elections" WHERE "pct_of_votes"='20.29';
1-149330-1
What was the number of seat changes when the % of votes was 23.75?
CREATE TABLE "in_general_elections" ( "year" text, "general_election" text, "seats_won" real, "change_in_seat" real, "pct_of_votes" text, "votes_swing" text );
SELECT "change_in_seat" FROM "in_general_elections" WHERE "pct_of_votes"='23.75';
1-149330-1
Which general election had a vote swing of 1.69?
CREATE TABLE "in_general_elections" ( "year" text, "general_election" text, "seats_won" real, "change_in_seat" real, "pct_of_votes" text, "votes_swing" text );
SELECT "general_election" FROM "in_general_elections" WHERE "votes_swing"='1.69';
1-149330-1
What was the vote swing for the general election of the 12th lok sabha?
CREATE TABLE "in_general_elections" ( "year" text, "general_election" text, "seats_won" real, "change_in_seat" real, "pct_of_votes" text, "votes_swing" text );
SELECT "votes_swing" FROM "in_general_elections" WHERE "general_election"='12th Lok Sabha';
1-149330-1
What was the team's result in week 4?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "week"=4;
1-14942535-1
When the network mask is 255.255.255.252 what is the prefix size?
CREATE TABLE "subnet_and_host_counts" ( "prefix_size" text, "network_mask" text, "available_subnets" real, "usable_hosts_per_subnet" real, "total_usable_hosts" real );
SELECT "prefix_size" FROM "subnet_and_host_counts" WHERE "network_mask"='255.255.255.252';
1-149426-4
available subnets leading total is?
CREATE TABLE "subnet_and_host_counts" ( "prefix_size" text, "network_mask" text, "available_subnets" real, "usable_hosts_per_subnet" real, "total_usable_hosts" real );
SELECT MAX("available_subnets") FROM "subnet_and_host_counts";
1-149426-4
When the network mask is 255.255.255.128 what is the lowest available subnet?
CREATE TABLE "subnet_and_host_counts" ( "prefix_size" text, "network_mask" text, "available_subnets" real, "usable_hosts_per_subnet" real, "total_usable_hosts" real );
SELECT MIN("available_subnets") FROM "subnet_and_host_counts" WHERE "network_mask"='255.255.255.128';
1-149426-4
When the network mask is 255.255.255.224 what is the highest total usable host?
CREATE TABLE "subnet_and_host_counts" ( "prefix_size" text, "network_mask" text, "available_subnets" real, "usable_hosts_per_subnet" real, "total_usable_hosts" real );
SELECT MAX("total_usable_hosts") FROM "subnet_and_host_counts" WHERE "network_mask"='255.255.255.224';
1-149426-4
Who were all of the opponents when the date was November 12, 1978?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "date"='November 12, 1978';
1-14945112-1
What is the total number of values for attendance for the date October 1, 1978?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT COUNT("attendance") FROM "schedule" WHERE "date"='October 1, 1978';
1-14945112-1
What was the highest attendance?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT MAX("attendance") FROM "schedule";
1-14945608-1
What date did the Colts play New York Jets?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "opponent"='New York Jets';
1-14945608-1
How many games had the attendance of 60225?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT COUNT("result") FROM "schedule" WHERE "attendance"=60225;
1-14945608-1
What was the result of the game on October 6, 1974?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "date"='October 6, 1974';
1-14954150-1
What was the record on September 22, 1974?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "record" FROM "schedule" WHERE "date"='September 22, 1974';
1-14954150-1
What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?
CREATE TABLE "overall_standings" ( "rank" real, "name" text, "nationality" text, "total_points" text, "oberstdorf_rk" text, "ga_pa_rk" text, "bhofennum1_rk" text, "bhofennum2_rk" text );
SELECT "bhofennum1_rk" FROM "overall_standings" WHERE "bhofennum2_rk"='231.2 (8)';
1-14948647-1
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?
CREATE TABLE "overall_standings" ( "rank" real, "name" text, "nationality" text, "total_points" text, "oberstdorf_rk" text, "ga_pa_rk" text, "bhofennum1_rk" text, "bhofennum2_rk" text );
SELECT "bhofennum2_rk" FROM "overall_standings" WHERE "ga_pa_rk"='233.4 (16)';
1-14948647-1
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)?
CREATE TABLE "overall_standings" ( "rank" real, "name" text, "nationality" text, "total_points" text, "oberstdorf_rk" text, "ga_pa_rk" text, "bhofennum1_rk" text, "bhofennum2_rk" text );
SELECT "bhofennum2_rk" FROM "overall_standings" WHERE "ga_pa_rk"='227.5 (19)';
1-14948647-1
How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?
CREATE TABLE "overall_standings" ( "rank" real, "name" text, "nationality" text, "total_points" text, "oberstdorf_rk" text, "ga_pa_rk" text, "bhofennum1_rk" text, "bhofennum2_rk" text );
SELECT "total_points" FROM "overall_standings" WHERE "oberstdorf_rk"='252.6 (11)';
1-14948647-1
On which week was the attendance 74303?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT MAX("week") FROM "schedule" WHERE "attendance"=74303;
1-14958620-1
On which date was the game played at Tiger Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "game_site"='Tiger Stadium';
1-14958620-1
What was the final score of the game against the Dallas Cowboys?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "opponent"='Dallas Cowboys';
1-14959246-2
What was the attendance at the game played on December 10, 1972?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "attendance" FROM "schedule" WHERE "date"='December 10, 1972';
1-14959246-2
Name the french actor with javier romano
CREATE TABLE "list_of_voice_actors_in_the_jak_and_daxt" ( "character" text, "french_voice_actor" text, "italian_voice_actor" text, "german_voice_actor" text, "spanish_voice_actor" text );
SELECT COUNT("french_voice_actor") FROM "list_of_voice_actors_in_the_jak_and_daxt" WHERE "spanish_voice_actor"='Javier Romano';
1-14960574-6
Name the german voice actor for alain dorval
CREATE TABLE "list_of_voice_actors_in_the_jak_and_daxt" ( "character" text, "french_voice_actor" text, "italian_voice_actor" text, "german_voice_actor" text, "spanish_voice_actor" text );
SELECT "german_voice_actor" FROM "list_of_voice_actors_in_the_jak_and_daxt" WHERE "french_voice_actor"='Alain Dorval';
1-14960574-6
Name the german voice actor for rafael torres
CREATE TABLE "list_of_voice_actors_in_the_jak_and_daxt" ( "character" text, "french_voice_actor" text, "italian_voice_actor" text, "german_voice_actor" text, "spanish_voice_actor" text );
SELECT "german_voice_actor" FROM "list_of_voice_actors_in_the_jak_and_daxt" WHERE "spanish_voice_actor"='Rafael Torres';
1-14960574-6
Name the character for sophie arthuys
CREATE TABLE "list_of_voice_actors_in_the_jak_and_daxt" ( "character" text, "french_voice_actor" text, "italian_voice_actor" text, "german_voice_actor" text, "spanish_voice_actor" text );
SELECT "character" FROM "list_of_voice_actors_in_the_jak_and_daxt" WHERE "french_voice_actor"='Sophie Arthuys';
1-14960574-6
Name the italian voice actor for dirk fenselau
CREATE TABLE "list_of_voice_actors_in_the_jak_and_daxt" ( "character" text, "french_voice_actor" text, "italian_voice_actor" text, "german_voice_actor" text, "spanish_voice_actor" text );
SELECT "italian_voice_actor" FROM "list_of_voice_actors_in_the_jak_and_daxt" WHERE "german_voice_actor"='Dirk Fenselau';
1-14960574-6
what is the Europe number for the league cup of 36 (0)?
CREATE TABLE "appearances" ( "name" text, "years" text, "league" text, "fa_cup" text, "league_cup" text, "europe" text, "other_a" text, "total" text );
SELECT "europe" FROM "appearances" WHERE "league_cup"='36 (0)';
1-14962287-1