question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Who was the turbine manufacturer for the Wheatland county?
CREATE TABLE "table1_24837750_1" ( "wind_farm" text, "installed_capacity_mw" text, "turbine_manufacturer" text, "county" text, "date_in_service" text );
SELECT "turbine_manufacturer" FROM "table1_24837750_1" WHERE "county"='Wheatland';
1-24837750-1
How many turbine manufacturers installed a capacity of 189 MW?
CREATE TABLE "table1_24837750_1" ( "wind_farm" text, "installed_capacity_mw" text, "turbine_manufacturer" text, "county" text, "date_in_service" text );
SELECT COUNT("turbine_manufacturer") FROM "table1_24837750_1" WHERE "installed_capacity_mw"='189';
1-24837750-1
How much capacity was installed in Wheatland?
CREATE TABLE "table1_24837750_1" ( "wind_farm" text, "installed_capacity_mw" text, "turbine_manufacturer" text, "county" text, "date_in_service" text );
SELECT "installed_capacity_mw" FROM "table1_24837750_1" WHERE "county"='Wheatland';
1-24837750-1
Who was the turbine manufacturer of the wind farm that started service on 2005?
CREATE TABLE "table1_24837750_1" ( "wind_farm" text, "installed_capacity_mw" text, "turbine_manufacturer" text, "county" text, "date_in_service" text );
SELECT "turbine_manufacturer" FROM "table1_24837750_1" WHERE "date_in_service"='2005';
1-24837750-1
When did this wind farm started service with a capacity of 135 MW?
CREATE TABLE "table1_24837750_1" ( "wind_farm" text, "installed_capacity_mw" text, "turbine_manufacturer" text, "county" text, "date_in_service" text );
SELECT "date_in_service" FROM "table1_24837750_1" WHERE "installed_capacity_mw"='135';
1-24837750-1
When did the wind farm in Musselshell started service?
CREATE TABLE "table1_24837750_1" ( "wind_farm" text, "installed_capacity_mw" text, "turbine_manufacturer" text, "county" text, "date_in_service" text );
SELECT "date_in_service" FROM "table1_24837750_1" WHERE "county"='Musselshell';
1-24837750-1
What was the largest attendance at the Rheinstadion?
CREATE TABLE "table1_24814477_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT MAX("attendance") FROM "table1_24814477_2" WHERE "game_site"='Rheinstadion';
1-24814477-2
What week did the Galaxy play the Amsterdam Admirals?
CREATE TABLE "table1_24814477_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "week" FROM "table1_24814477_2" WHERE "opponent"='Amsterdam Admirals';
1-24814477-2
Who was the opponent in Week 8?
CREATE TABLE "table1_24814477_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "table1_24814477_2" WHERE "week"=8;
1-24814477-2
Who was the Class A winner when the Class C winner was David Haynes?
CREATE TABLE "calendar_winners" ( "round" text, "circuit" text, "date" text, "class_a_winner" text, "class_b_winner" text, "class_c_winner" text, "class_d_winner" text );
SELECT "class_a_winner" FROM "calendar_winners" WHERE "class_c_winner"='David Haynes';
1-24852622-1
Who was the Class C winner in round 8?
CREATE TABLE "calendar_winners" ( "round" text, "circuit" text, "date" text, "class_a_winner" text, "class_b_winner" text, "class_c_winner" text, "class_d_winner" text );
SELECT "class_c_winner" FROM "calendar_winners" WHERE "round"='8';
1-24852622-1
Who was the Class D winner in round 6?
CREATE TABLE "calendar_winners" ( "round" text, "circuit" text, "date" text, "class_a_winner" text, "class_b_winner" text, "class_c_winner" text, "class_d_winner" text );
SELECT "class_d_winner" FROM "calendar_winners" WHERE "round"='6';
1-24852622-1
What was the circuit in round 2?
CREATE TABLE "calendar_winners" ( "round" text, "circuit" text, "date" text, "class_a_winner" text, "class_b_winner" text, "class_c_winner" text, "class_d_winner" text );
SELECT "circuit" FROM "calendar_winners" WHERE "round"='2';
1-24852622-1
In which round did Roy Salvadori won Class D and Alan Hutcheson won Class B?
CREATE TABLE "calendar_winners" ( "round" real, "circuit" text, "date" text, "class_a_winner" text, "class_b_winner" text, "class_c_winner" text, "class_d_winner" text );
SELECT "round" FROM "calendar_winners" WHERE "class_d_winner"='Roy Salvadori' AND "class_b_winner"='Alan Hutcheson';
1-24853015-1
When did Alan Hutcheson won Class B on round 1?
CREATE TABLE "calendar_winners" ( "round" real, "circuit" text, "date" text, "class_a_winner" text, "class_b_winner" text, "class_c_winner" text, "class_d_winner" text );
SELECT "date" FROM "calendar_winners" WHERE "class_b_winner"='Alan Hutcheson' AND "round"=1;
1-24853015-1
How many field goals did Stacey Thomas have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "field_goals" FROM "player_stats" WHERE "player"='Stacey Thomas';
1-24850487-5
How many assists did the player who had 121 rebounds have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("assists") FROM "player_stats" WHERE "rebounds"=121;
1-24850487-5
How many field goals did the player who had 8 blocks have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("field_goals") FROM "player_stats" WHERE "blocks"=8;
1-24850487-5
How many assists did the player who had 863 minutes have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("assists") FROM "player_stats" WHERE "minutes"=863;
1-24850487-5
How many blocks did the player who had 59 rebounds have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "blocks" FROM "player_stats" WHERE "rebounds"=59;
1-24850487-5
Who were the opponents that had an attendance of exactly 16115?
CREATE TABLE "table1_24852001_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "table1_24852001_2" WHERE "attendance"=16115;
1-24852001-2
What was the team record after the Frankfurt Galaxy matchup?
CREATE TABLE "table1_24852001_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "team_record" FROM "table1_24852001_2" WHERE "opponent"='Frankfurt Galaxy';
1-24852001-2
What was the game site for the matchup against the Frankfurt Galaxy?
CREATE TABLE "table1_24852001_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "game_site" FROM "table1_24852001_2" WHERE "opponent"='Frankfurt Galaxy';
1-24852001-2
How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit?
CREATE TABLE "table1_24865763_2" ( "rnd" real, "circuit" text, "lmp1_winning_team" text, "lmp2_winning_team" text, "flm_winning_team" text, "gt1_winning_team" text, "gt2_winning_team" text, "results" text );
SELECT COUNT("results") FROM "table1_24865763_2" WHERE "circuit"='Algarve' AND "gt1_winning_team"='No. 50 Larbre Compétition';
1-24865763-2
How many winning teams are there on LMP2 if Gabriele Gardel Patrice Goueslard Fernando Rees was the GT1 Winning Team on the Algarve circuit?
CREATE TABLE "table1_24865763_2" ( "rnd" real, "circuit" text, "lmp1_winning_team" text, "lmp2_winning_team" text, "flm_winning_team" text, "gt1_winning_team" text, "gt2_winning_team" text, "results" text );
SELECT COUNT("lmp2_winning_team") FROM "table1_24865763_2" WHERE "gt1_winning_team"='Gabriele Gardel Patrice Goueslard Fernando Rees' AND "circuit"='Algarve';
1-24865763-2
Who was the GT2 Winning Team if Greg Mansell Leo Mansell was the LMP1 Winning Team?
CREATE TABLE "table1_24865763_2" ( "rnd" real, "circuit" text, "lmp1_winning_team" text, "lmp2_winning_team" text, "flm_winning_team" text, "gt1_winning_team" text, "gt2_winning_team" text, "results" text );
SELECT "gt2_winning_team" FROM "table1_24865763_2" WHERE "lmp1_winning_team"='Greg Mansell Leo Mansell';
1-24865763-2
What was the maximum round where Marc Lieb Richard Lietz was on the GT2 Winning Team?
CREATE TABLE "table1_24865763_2" ( "rnd" real, "circuit" text, "lmp1_winning_team" text, "lmp2_winning_team" text, "flm_winning_team" text, "gt1_winning_team" text, "gt2_winning_team" text, "results" text );
SELECT MAX("rnd") FROM "table1_24865763_2" WHERE "gt2_winning_team"='Marc Lieb Richard Lietz';
1-24865763-2
How many won the LMP1 on round 4 if No. 42 Strakka Racing was the LMP2 Winning Team?
CREATE TABLE "table1_24865763_2" ( "rnd" real, "circuit" text, "lmp1_winning_team" text, "lmp2_winning_team" text, "flm_winning_team" text, "gt1_winning_team" text, "gt2_winning_team" text, "results" text );
SELECT COUNT("lmp1_winning_team") FROM "table1_24865763_2" WHERE "rnd"=4 AND "lmp2_winning_team"='No. 42 Strakka Racing';
1-24865763-2
In what round did Mike Newton Thomas Erdos Ben Collins won the LMP2?
CREATE TABLE "table1_24865763_2" ( "rnd" real, "circuit" text, "lmp1_winning_team" text, "lmp2_winning_team" text, "flm_winning_team" text, "gt1_winning_team" text, "gt2_winning_team" text, "results" text );
SELECT "rnd" FROM "table1_24865763_2" WHERE "lmp2_winning_team"='Mike Newton Thomas Erdos Ben Collins';
1-24865763-2
How many blocks did tye'sha fluker have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("blocks") FROM "player_stats" WHERE "player"='Tye''sha Fluker';
1-24856332-4
What is the highest number of steals for a player with 324 minutes?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("steals") FROM "player_stats" WHERE "minutes"=324;
1-24856332-4
What is the lowest number of minutes for a player with 47 steals?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("minutes") FROM "player_stats" WHERE "steals"=47;
1-24856332-4
Who played Mixed Doubles in 1991?
CREATE TABLE "world_championships_of_the_wbf" ( "year" real, "mens_singles" text, "womens_singles" text, "mens_doubles" text, "womens_doubles" text, "mixed_doubles" text );
SELECT "mixed_doubles" FROM "world_championships_of_the_wbf" WHERE "year"=1991;
1-2486023-1
Who was the home team who played plymouth argyle?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "home_team" FROM "ties" WHERE "away_team"='Plymouth Argyle';
1-24887326-8
What was the score when the away team was norwich city?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "score_1" FROM "ties" WHERE "away_team"='Norwich City';
1-24887326-8
Who played as the away team when coventry city was the home team?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "away_team" FROM "ties" WHERE "home_team"='Coventry City';
1-24887326-8
What is the final score when they played Frankfurt Galaxy?
CREATE TABLE "table1_24882796_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "final_score" FROM "table1_24882796_2" WHERE "opponent"='Frankfurt Galaxy';
1-24882796-2
Who is the away team for tie no 11?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "away_team" FROM "ties" WHERE "tie_no"=11;
1-24887326-6
Who is the away team for tie no 15?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "away_team" FROM "ties" WHERE "tie_no"=15;
1-24887326-6
What is the highest tie that had 19129 attendance?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT MAX("tie_no") FROM "ties" WHERE "attendance"=19129;
1-24887326-6
What is the tie when the home team is Stoke City?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "tie_no" FROM "ties" WHERE "home_team"='Stoke City';
1-24887326-6
What tie has Orient as the home team?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT "tie_no" FROM "ties" WHERE "home_team"='Orient';
1-24887326-6
How many dates are there for tie number 12?
CREATE TABLE "ties" ( "tie_no" real, "home_team" text, "score_1" text, "away_team" text, "attendance" real, "date" text );
SELECT COUNT("date") FROM "ties" WHERE "tie_no"=12;
1-24887326-6
When 556 is the amount of points how much equipment is there?
CREATE TABLE "riders" ( "position" real, "driver_passenger" text, "equipment" text, "bike_no" real, "points" real );
SELECT COUNT("equipment") FROM "riders" WHERE "points"=556;
1-24898185-4
Which championship was the score 6–4, 5–7, 6–2?
CREATE TABLE "doubles_6_4_2" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "championship" FROM "doubles_6_4_2" WHERE "score"='6–4, 5–7, 6–2';
1-24901152-4
Who were the opponents in the Rome championship?
CREATE TABLE "doubles_6_4_2" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "opponents" FROM "doubles_6_4_2" WHERE "championship"='Rome';
1-24901152-4
What is the maximum number of minutes associated with exactly 70 field goals?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("minutes") FROM "player_stats" WHERE "field_goals"=70;
1-24908692-5
What is the minimum number of field goals associated with exactly 84 assists?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("field_goals") FROM "player_stats" WHERE "assists"=84;
1-24908692-5
How many steals did Tamika Williams have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "steals" FROM "player_stats" WHERE "player"='Tamika Williams';
1-24908692-5
List the number of takeaways with 1 rejection.
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("steals") FROM "player_stats" WHERE "blocks"=1;
1-24906653-5
How many long range shots did tonya edwards make.
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("field_goals") FROM "player_stats" WHERE "player"='Tonya Edwards';
1-24906653-5
List the number of long range shors where the score is 171.
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("field_goals") FROM "player_stats" WHERE "points"=171;
1-24906653-5
Who won best amiga demo when tribes ( pulse & melon dezign) won best pc demo?
CREATE TABLE "the_party_demo_intro_compo_winners_1991_" ( "year" text, "amiga_demo" text, "pc_demo" text, "c64_demo" text, "amiga_intro" text, "pc_intro" text );
SELECT "amiga_demo" FROM "the_party_demo_intro_compo_winners_1991_" WHERE "pc_demo"='Tribes ( Pulse & Melon Dezign)';
1-2490289-1
What won best amiga demo when alto knallo (free electric band) won best pc demo?
CREATE TABLE "the_party_demo_intro_compo_winners_1991_" ( "year" text, "amiga_demo" text, "pc_demo" text, "c64_demo" text, "amiga_intro" text, "pc_intro" text );
SELECT "amiga_demo" FROM "the_party_demo_intro_compo_winners_1991_" WHERE "pc_demo"='Alto Knallo (Free Electric Band)';
1-2490289-1
What won best pc intro when my kingdom (haujobb & scoopex) won best amiga demo?
CREATE TABLE "the_party_demo_intro_compo_winners_1991_" ( "year" text, "amiga_demo" text, "pc_demo" text, "c64_demo" text, "amiga_intro" text, "pc_intro" text );
SELECT "pc_intro" FROM "the_party_demo_intro_compo_winners_1991_" WHERE "amiga_demo"='My Kingdom (Haujobb & Scoopex)';
1-2490289-1
What won est pc intro when 4k0 (polka brothers) won best amiga intro?
CREATE TABLE "the_party_demo_intro_compo_winners_1991_" ( "year" text, "amiga_demo" text, "pc_demo" text, "c64_demo" text, "amiga_intro" text, "pc_intro" text );
SELECT "pc_intro" FROM "the_party_demo_intro_compo_winners_1991_" WHERE "amiga_intro"='4k0 (Polka Brothers)';
1-2490289-1
What won best pc demo when tower power (camelot) won best c64 demo?
CREATE TABLE "the_party_demo_intro_compo_winners_1991_" ( "year" text, "amiga_demo" text, "pc_demo" text, "c64_demo" text, "amiga_intro" text, "pc_intro" text );
SELECT "pc_demo" FROM "the_party_demo_intro_compo_winners_1991_" WHERE "c64_demo"='Tower Power (Camelot)';
1-2490289-1
What year did fr-08: the product ( farbrausch ) win best pc intro?
CREATE TABLE "the_party_demo_intro_compo_winners_1991_" ( "year" text, "amiga_demo" text, "pc_demo" text, "c64_demo" text, "amiga_intro" text, "pc_intro" text );
SELECT "year" FROM "the_party_demo_intro_compo_winners_1991_" WHERE "pc_intro"='FR-08: The Product ( Farbrausch )';
1-2490289-1
What is the episode title that had a US viewership of 8.16?
CREATE TABLE "table1_24910737_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_24910737_1" WHERE "u_s_viewers_millions"='8.16';
1-24910737-1
What is the number in the series written by Steve Blackman and had a title of "Worlds Apart"?
CREATE TABLE "table1_24910737_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "no_in_series" FROM "table1_24910737_1" WHERE "written_by"='Steve Blackman' AND "title"='\"Worlds Apart\"';
1-24910737-1
What is the number in the series that was titled "Past Tense"?
CREATE TABLE "table1_24910737_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "no_in_series" FROM "table1_24910737_1" WHERE "title"='\"Past Tense\"';
1-24910737-1
Who wrote the episodes that had a viewership of 7.14?
CREATE TABLE "table1_24910737_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_24910737_1" WHERE "u_s_viewers_millions"='7.14';
1-24910737-1
What is the timeslot for the episode "In which Addison finds the magic"?
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" real );
SELECT "timeslot_est" FROM "u_s" WHERE "episode"='\"In Which Addison Finds the Magic\"';
1-24910733-2
How many episodes received rating of 8.2?
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" real );
SELECT COUNT("episode") FROM "u_s" WHERE "rating"='8.2';
1-24910733-2
What is the rating for the episode "in which cooper finds a port in his storm"?
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" real );
SELECT "rating" FROM "u_s" WHERE "episode"='\"In Which Cooper Finds a Port In His Storm\"';
1-24910733-2
How many share figures are there for the episode that aired on October 17, 2007?
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" real );
SELECT COUNT("share") FROM "u_s" WHERE "air_date"='October 17, 2007';
1-24910733-2
How many episodes aired on October 17, 2007?
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" real );
SELECT COUNT("episode") FROM "u_s" WHERE "air_date"='October 17, 2007';
1-24910733-2
How many timeslots received a rating of 5.7?
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" real );
SELECT COUNT("timeslot_est") FROM "u_s" WHERE "rating"='5.7';
1-24910733-2
How many writers are listed when the U.S viewers are 11.21 million?
CREATE TABLE "table1_24910733_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("written_by") FROM "table1_24910733_1" WHERE "u_s_viewers_millions"='11.21';
1-24910733-1
Who is the director when there is 8.44 million viewers?
CREATE TABLE "table1_24910733_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_24910733_1" WHERE "u_s_viewers_millions"='8.44';
1-24910733-1
Who is the director when the writter is Andrea Newman?
CREATE TABLE "table1_24910733_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_24910733_1" WHERE "written_by"='Andrea Newman';
1-24910733-1
What is the title when the writer is Emily Halpern?
CREATE TABLE "table1_24910733_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_24910733_1" WHERE "written_by"='Emily Halpern';
1-24910733-1
Who is the director when there is 11.21 million viewers?
CREATE TABLE "table1_24910733_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_24910733_1" WHERE "u_s_viewers_millions"='11.21';
1-24910733-1
How many titles are listed with 8.44 million viewers?
CREATE TABLE "table1_24910733_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("title") FROM "table1_24910733_1" WHERE "u_s_viewers_millions"='8.44';
1-24910733-1
On what date does the episode called "triangles" air
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" text );
SELECT "air_date" FROM "u_s" WHERE "episode"='\"Triangles\"';
1-24910742-2
When the episode called "the parent trap" airs, what is the weekly rank
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" text );
SELECT COUNT("weekly_rank_num") FROM "u_s" WHERE "episode"='\"The Parent Trap\"';
1-24910742-2
What is the share value of the episode "sins of the father"
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" text );
SELECT MAX("share") FROM "u_s" WHERE "episode"='\"Sins of the Father\"';
1-24910742-2
How many millions of viewers watched the episode "blowups"
CREATE TABLE "u_s" ( "num" real, "episode" text, "air_date" text, "timeslot_est" text, "rating" text, "share" real, "18_49_rating_share" text, "viewers_m" text, "weekly_rank_num" text );
SELECT "viewers_m" FROM "u_s" WHERE "episode"='\"Blowups\"';
1-24910742-2
How many field goals had 597 points?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("field_goals") FROM "player_stats" WHERE "points"=597;
1-24915964-4
How many minutes were played by Sue Bird?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("minutes") FROM "player_stats" WHERE "player"='Sue Bird';
1-24915964-4
What is the maximum number of rebounds for players having exactly 35 steals?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("rebounds") FROM "player_stats" WHERE "steals"=35;
1-24913533-4
What are the numbers of steals associated with players having exactly 3 blocks?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "steals" FROM "player_stats" WHERE "blocks"=3;
1-24913533-4
How many numbers of rebounds are associated with exactly 18 points?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("rebounds") FROM "player_stats" WHERE "points"=18;
1-24913533-4
What is the maximum number of assists for players named Anastasia Kostaki?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("assists") FROM "player_stats" WHERE "player"='Anastasia Kostaki';
1-24913533-4
What is Tiffani Johnson's maximum steals?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("steals") FROM "player_stats" WHERE "player"='Tiffani Johnson';
1-24912693-4
Which player has 17 blocks?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "player" FROM "player_stats" WHERE "blocks"=17;
1-24912693-4
How many field goals does the player with 84 rebounds have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("field_goals") FROM "player_stats" WHERE "rebounds"=84;
1-24912693-4
How many blocks does the player who played 893 minutes have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "blocks" FROM "player_stats" WHERE "minutes"=893;
1-24912693-4
How many points does the player with 2 steals have?
CREATE TABLE "player_stats" ( "player" text, "minutes" real, "field_goals" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "points" FROM "player_stats" WHERE "steals"=2;
1-24912693-4
Name the most number
CREATE TABLE "list_of_boxing_septuple_or_seven_divisio" ( "number" real, "name" text, "titles" text, "date" text, "opponent" text, "result" text, "defenses" real );
SELECT MAX("number") FROM "list_of_boxing_septuple_or_seven_divisio";
1-24924576-2
Name the titles for tko 11/12
CREATE TABLE "list_of_boxing_septuple_or_seven_divisio" ( "number" real, "name" text, "titles" text, "date" text, "opponent" text, "result" text, "defenses" real );
SELECT "titles" FROM "list_of_boxing_septuple_or_seven_divisio" WHERE "result"='TKO 11/12';
1-24924576-2
Name the most number
CREATE TABLE "list_of_boxing_septuple_or_seven_divisio" ( "number" real, "name" text, "titles" text, "date" text, "opponent" text, "result" text, "defenses" real );
SELECT MAX("number") FROM "list_of_boxing_septuple_or_seven_divisio";
1-24924576-2
Where was the game played when the result/margin was won by 70?
CREATE TABLE "nab_cup_and_premiership_season_results" ( "round" text, "opposition" text, "time" text, "date" text, "home_away" text, "venue" text, "score" text, "result_margin" text, "broadcaster" text, "tv" text, "ladder_position" text );
SELECT "venue" FROM "nab_cup_and_premiership_season_results" WHERE "result_margin"='WON by 70';
1-24919137-2
What is the result/margin when fox sports 1 broadcast the game played at mcg?
CREATE TABLE "nab_cup_and_premiership_season_results" ( "round" text, "opposition" text, "time" text, "date" text, "home_away" text, "venue" text, "score" text, "result_margin" text, "broadcaster" text, "tv" text, "ladder_position" text );
SELECT "result_margin" FROM "nab_cup_and_premiership_season_results" WHERE "broadcaster"='Fox Sports 1' AND "venue"='MCG';
1-24919137-2
Which network broadcast the game when the Western Bulldogs played melbourne?
CREATE TABLE "nab_cup_and_premiership_season_results" ( "round" text, "opposition" text, "time" text, "date" text, "home_away" text, "venue" text, "score" text, "result_margin" text, "broadcaster" text, "tv" text, "ladder_position" text );
SELECT "broadcaster" FROM "nab_cup_and_premiership_season_results" WHERE "opposition"='Melbourne';
1-24919137-2
Where was the game played when the score was 14.16 (100)-12.12 (84)?
CREATE TABLE "nab_cup_and_premiership_season_results" ( "round" text, "opposition" text, "time" text, "date" text, "home_away" text, "venue" text, "score" text, "result_margin" text, "broadcaster" text, "tv" text, "ladder_position" text );
SELECT "venue" FROM "nab_cup_and_premiership_season_results" WHERE "score"='14.16 (100)-12.12 (84)';
1-24919137-2
What was the ladder position when the score was 15.9 (99)–14.6 (90)?
CREATE TABLE "nab_cup_and_premiership_season_results" ( "round" text, "opposition" text, "time" text, "date" text, "home_away" text, "venue" text, "score" text, "result_margin" text, "broadcaster" text, "tv" text, "ladder_position" text );
SELECT "ladder_position" FROM "nab_cup_and_premiership_season_results" WHERE "score"='15.9 (99)–14.6 (90)';
1-24919137-2
On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team?
CREATE TABLE "nab_cup_and_premiership_season_results" ( "round" text, "opposition" text, "time" text, "date" text, "home_away" text, "venue" text, "score" text, "result_margin" text, "broadcaster" text, "tv" text, "ladder_position" text );
SELECT "date" FROM "nab_cup_and_premiership_season_results" WHERE "ladder_position"='8th' AND "opposition"='Hawthorn';
1-24919137-2
What school is nicknamed the panthers?
CREATE TABLE "table1_24935743_2" ( "school" text, "nickname" text, "location" text, "colors" text, "type" text, "membership_tenure" text, "notes" text );
SELECT "school" FROM "table1_24935743_2" WHERE "nickname"='Panthers';
1-24935743-2
What school is in Jeromesville?
CREATE TABLE "table1_24935743_2" ( "school" text, "nickname" text, "location" text, "colors" text, "type" text, "membership_tenure" text, "notes" text );
SELECT "location" FROM "table1_24935743_2" WHERE "school"='Jeromesville';
1-24935743-2