question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many solar eclipse during June 10-11 and march 27-29 is 149?
CREATE TABLE "table1_25287007_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25287007_2" WHERE "march_27_29"='149';
1-25287007-2
How many solar eclipse during august 21-22 and January 15-16 is 141?
CREATE TABLE "table1_25287007_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "august_21_22" FROM "table1_25287007_2" WHERE "january_15_16"='141';
1-25287007-2
How many solar eclipse during January 15-16 and august 21-22 on august 21, 2017?
CREATE TABLE "table1_25287007_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "january_15_16" FROM "table1_25287007_2" WHERE "august_21_22"='August 21, 2017';
1-25287007-2
Name the fastest lap for round 14
CREATE TABLE "results" ( "round" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT COUNT("fastest_lap") FROM "results" WHERE "round"='14';
1-25322130-3
Name the winning driver for 20 april
CREATE TABLE "results" ( "round" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "winning_driver" FROM "results" WHERE "date"='20 April';
1-25322130-3
Name the circuit for 13 july
CREATE TABLE "results" ( "round" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "circuit" FROM "results" WHERE "date"='13 July';
1-25322130-3
Name the fastest lap for round 3
CREATE TABLE "results" ( "round" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "fastest_lap" FROM "results" WHERE "round"='3';
1-25322130-3
Name the fastest lap for piquet sports and silverstone
CREATE TABLE "results" ( "round" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "winning_team" text );
SELECT "fastest_lap" FROM "results" WHERE "winning_team"='Piquet Sports' AND "circuit"='Silverstone';
1-25322130-3
How many laps where the position is 10th and the races is smaller than 9.0?
CREATE TABLE "career_summary" ( "season" text, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT COUNT("f_laps") FROM "career_summary" WHERE "position"='10th' AND "races"<9.0;
1-25318033-1
What is the lowest amount of races?
CREATE TABLE "career_summary" ( "season" text, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT MIN("races") FROM "career_summary";
1-25318033-1
Which races have 137 points?
CREATE TABLE "career_summary" ( "season" text, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "races" FROM "career_summary" WHERE "points"='137';
1-25318033-1
What team has 137 points?
CREATE TABLE "career_summary" ( "season" text, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "team" FROM "career_summary" WHERE "points"='137';
1-25318033-1
How many points were scored when the podiums is 0 and position is 10th?
CREATE TABLE "career_summary" ( "season" text, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "points" FROM "career_summary" WHERE "podiums"=0 AND "position"='10th';
1-25318033-1
What is the rate limit when the desired rate change (%) is +40.4?
CREATE TABLE "setting_the_cap" ( "authority" text, "rate_or_precept" text, "budget_limit_m" text, "budget_plans_m" text, "rate_limit_p" text, "rate_change_pct" text, "desired_rate_p" text, "desired_rate_change_pct" text );
SELECT "rate_limit_p" FROM "setting_the_cap" WHERE "desired_rate_change_pct"='+40.4';
1-25316812-1
What is the rate limit when budget plans (£m) is limit agreed?
CREATE TABLE "setting_the_cap" ( "authority" text, "rate_or_precept" text, "budget_limit_m" text, "budget_plans_m" text, "rate_limit_p" text, "rate_change_pct" text, "desired_rate_p" text, "desired_rate_change_pct" text );
SELECT "rate_limit_p" FROM "setting_the_cap" WHERE "budget_plans_m"='limit agreed';
1-25316812-1
What is the rate limit when the desired rate (p) is 162?
CREATE TABLE "setting_the_cap" ( "authority" text, "rate_or_precept" text, "budget_limit_m" text, "budget_plans_m" text, "rate_limit_p" text, "rate_change_pct" text, "desired_rate_p" text, "desired_rate_change_pct" text );
SELECT "rate_limit_p" FROM "setting_the_cap" WHERE "desired_rate_p"='162';
1-25316812-1
What is the rate change % when the rate limit is 82.86?
CREATE TABLE "setting_the_cap" ( "authority" text, "rate_or_precept" text, "budget_limit_m" text, "budget_plans_m" text, "rate_limit_p" text, "rate_change_pct" text, "desired_rate_p" text, "desired_rate_change_pct" text );
SELECT "rate_change_pct" FROM "setting_the_cap" WHERE "rate_limit_p"='82.86';
1-25316812-1
What is the desired rate when the rate limit (p) is 50.33?
CREATE TABLE "setting_the_cap" ( "authority" text, "rate_or_precept" text, "budget_limit_m" text, "budget_plans_m" text, "rate_limit_p" text, "rate_change_pct" text, "desired_rate_p" text, "desired_rate_change_pct" text );
SELECT "desired_rate_p" FROM "setting_the_cap" WHERE "rate_limit_p"='50.33';
1-25316812-1
What is the authority who set the budget limit (£m) at 900?
CREATE TABLE "setting_the_cap" ( "authority" text, "rate_or_precept" text, "budget_limit_m" text, "budget_plans_m" text, "rate_limit_p" text, "rate_change_pct" text, "desired_rate_p" text, "desired_rate_change_pct" text );
SELECT "authority" FROM "setting_the_cap" WHERE "budget_limit_m"='900';
1-25316812-1
What was the highest share?
CREATE TABLE "ratings" ( "order" real, "episode" text, "u_s_air_date" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_timeslot" real );
SELECT MAX("share") FROM "ratings";
1-25304789-1
What was the final score of the game with 7523 in attendance?
CREATE TABLE "table1_25331766_3" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "final_score" FROM "table1_25331766_3" WHERE "attendance"=7523;
1-25331766-3
What is the lowest attendance?
CREATE TABLE "table1_25331766_3" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT MIN("attendance") FROM "table1_25331766_3";
1-25331766-3
If the rebounds are at 87, what are the amount of steals?
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 "rebounds"=87;
1-25342713-5
How many players 89 points?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("blocks") FROM "player_stats" WHERE "points"=89;
1-25342713-5
If the Steals are 20, what are the blocks?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("blocks") FROM "player_stats" WHERE "steals"=20;
1-25342713-5
How many millions of viewers did the episode directed by Jeffrey Blitz have?
CREATE TABLE "table1_25341765_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_25341765_1" WHERE "directed_by"='Jeffrey Blitz';
1-25341765-1
Who directed the episode that had 5.92 million viewers?
CREATE TABLE "table1_25341765_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "directed_by" FROM "table1_25341765_1" WHERE "u_s_viewers_million"='5.92';
1-25341765-1
What was the name of the episode Alan Yang wrote?
CREATE TABLE "table1_25341765_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_25341765_1" WHERE "written_by"='Alan Yang';
1-25341765-1
How many episodes were directed by Michael McCullers?
CREATE TABLE "table1_25341765_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT COUNT("original_air_date") FROM "table1_25341765_1" WHERE "directed_by"='Michael McCullers';
1-25341765-1
When 3rd is the position what is the lowest amount of points?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT MIN("points") FROM "career_summary" WHERE "position"='3rd';
1-25352318-1
When art grand prix is the team and 2010 is the season how many wins are there?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT COUNT("wins") FROM "career_summary" WHERE "season"=2010 AND "team"='ART Grand Prix';
1-25352318-1
When 7th is the position and 15 is the race who is the team?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT "team" FROM "career_summary" WHERE "races"=15 AND "position"='7th';
1-25352318-1
What is the lowest overall amount of poles?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT MIN("poles") FROM "career_summary";
1-25352318-1
When racing engineering is the team and 2012 is the team what is the position?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT "position" FROM "career_summary" WHERE "season"=2012 AND "team"='Racing Engineering';
1-25352318-1
Is the facility opened in 1968 a major facility?
CREATE TABLE "current_prisons" ( "facility" text, "location" text, "year_opened" text, "major_facility" text, "population_gender" text, "capacity" real, "custody_level_s" text );
SELECT "major_facility" FROM "current_prisons" WHERE "year_opened"='1968';
1-25346763-1
What is the custody level of the facility in Shelton?
CREATE TABLE "current_prisons" ( "facility" text, "location" text, "year_opened" text, "major_facility" text, "population_gender" text, "capacity" real, "custody_level_s" text );
SELECT "custody_level_s" FROM "current_prisons" WHERE "location"='Shelton';
1-25346763-1
Is the Washington Corrections Center for Women (WCCW) a major facility?
CREATE TABLE "current_prisons" ( "facility" text, "location" text, "year_opened" text, "major_facility" text, "population_gender" text, "capacity" real, "custody_level_s" text );
SELECT "major_facility" FROM "current_prisons" WHERE "facility"='Washington Corrections Center for Women (WCCW)';
1-25346763-1
What is the capacity for a facility opened in 1956?
CREATE TABLE "current_prisons" ( "facility" text, "location" text, "year_opened" text, "major_facility" text, "population_gender" text, "capacity" real, "custody_level_s" text );
SELECT COUNT("capacity") FROM "current_prisons" WHERE "year_opened"='1956';
1-25346763-1
What facility opening in 1954?
CREATE TABLE "current_prisons" ( "facility" text, "location" text, "year_opened" text, "major_facility" text, "population_gender" text, "capacity" real, "custody_level_s" text );
SELECT "facility" FROM "current_prisons" WHERE "year_opened"='1954';
1-25346763-1
Which player had 6 assists?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "player" FROM "player_stats" WHERE "assists"=6;
1-25353861-5
What is the fewest steals any player had?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("steals") FROM "player_stats";
1-25353861-5
How many steals did Kelly Miller have?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MIN("steals") FROM "player_stats" WHERE "player"='Kelly Miller';
1-25353861-5
Which player had 9 blocks?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "player" FROM "player_stats" WHERE "blocks"=9;
1-25353861-5
How many rebounds did Tammy Sutton-Brown have?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "rebounds" FROM "player_stats" WHERE "player"='Tammy Sutton-Brown';
1-25353861-5
What was the science score in the year there was a social studies score of 93.56?
CREATE TABLE "table1_2534578_1" ( "school_year" text, "language" text, "science" text, "reading" text, "mathematics" text, "social_studies" text );
SELECT "science" FROM "table1_2534578_1" WHERE "social_studies"='93.56';
1-2534578-1
How many years did the school have a mathetmatics score of 98.02?
CREATE TABLE "table1_2534578_1" ( "school_year" text, "language" text, "science" text, "reading" text, "mathematics" text, "social_studies" text );
SELECT COUNT("science") FROM "table1_2534578_1" WHERE "mathematics"='98.02';
1-2534578-1
What was the reading score in the year the science score was 96.13?
CREATE TABLE "table1_2534578_1" ( "school_year" text, "language" text, "science" text, "reading" text, "mathematics" text, "social_studies" text );
SELECT "reading" FROM "table1_2534578_1" WHERE "science"='96.13';
1-2534578-1
What was the language score when the reading score was 94.47?
CREATE TABLE "table1_2534578_1" ( "school_year" text, "language" text, "science" text, "reading" text, "mathematics" text, "social_studies" text );
SELECT "language" FROM "table1_2534578_1" WHERE "reading"='94.47';
1-2534578-1
How many values for points have Sophia Witherspoon as the player?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT COUNT("points") FROM "player_stats" WHERE "player"='Sophia Witherspoon';
1-25352324-5
What is the highest value for points?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT MAX("points") FROM "player_stats";
1-25352324-5
What is every value for rebounds when steals is 19?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "rebounds" FROM "player_stats" WHERE "steals"=19;
1-25352324-5
What is every value for points if rebounds is 6 and blocks is 0?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "points" FROM "player_stats" WHERE "rebounds"=6 AND "blocks"=0;
1-25352324-5
What is every entry for assists if the player is Lynn Pride?
CREATE TABLE "player_stats" ( "player" text, "games_played" real, "rebounds" real, "assists" real, "steals" real, "blocks" real, "points" real );
SELECT "assists" FROM "player_stats" WHERE "player"='Lynn Pride';
1-25352324-5
What is the air date of the episode written by Itamar Moses?
CREATE TABLE "table1_25356350_3" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "viewers_in_millions" text );
SELECT "original_air_date" FROM "table1_25356350_3" WHERE "written_by"='Itamar Moses';
1-25356350-3
What is the june 10-11 when august 21-22 is august 21, 2017?
CREATE TABLE "table1_25355392_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25355392_2" WHERE "august_21_22"='August 21, 2017';
1-25355392-2
how many times is march 27-29 is 129?
CREATE TABLE "table1_25355392_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("november_3") FROM "table1_25355392_2" WHERE "march_27_29"='129';
1-25355392-2
what is june 10-11 when march 27-29 is 149?
CREATE TABLE "table1_25355392_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25355392_2" WHERE "march_27_29"='149';
1-25355392-2
what is november 3 when june 10-11 is june 10, 1964?
CREATE TABLE "table1_25355392_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25355392_2" WHERE "june_10_11"='June 10, 1964';
1-25355392-2
what is march 27-29 when november 3 is 133?
CREATE TABLE "table1_25355392_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "march_27_29" FROM "table1_25355392_2" WHERE "november_3"='133';
1-25355392-2
What is january 15-16 when november 3 is 153?
CREATE TABLE "table1_25355392_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "january_15_16" FROM "table1_25355392_2" WHERE "november_3"='153';
1-25355392-2
january 15-16 when august 21-22 is august 22, 1979?
CREATE TABLE "table1_25355501_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "january_15_16" FROM "table1_25355501_2" WHERE "august_21_22"='August 22, 1979';
1-25355501-2
How many entries are shown for november 3 when january 15-16 is 141?
CREATE TABLE "table1_25355501_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT COUNT("november_3") FROM "table1_25355501_2" WHERE "january_15_16"='141';
1-25355501-2
march 27-29 where june 10-11 is 127?
CREATE TABLE "table1_25355501_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "march_27_29" FROM "table1_25355501_2" WHERE "june_10_11"='127';
1-25355501-2
june 10-11 when november 3 is 133?
CREATE TABLE "table1_25355501_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25355501_2" WHERE "november_3"='133';
1-25355501-2
june 10-11 when january 15-16 is january 15, 1991?
CREATE TABLE "table1_25355501_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "june_10_11" FROM "table1_25355501_2" WHERE "january_15_16"='January 15, 1991';
1-25355501-2
What is shown for november 3 when august 21-22 is august 22, 1998?
CREATE TABLE "table1_25355501_2" ( "june_10_11" text, "march_27_29" text, "january_15_16" text, "november_3" text, "august_21_22" text );
SELECT "november_3" FROM "table1_25355501_2" WHERE "august_21_22"='August 22, 1998';
1-25355501-2
Name the number of teams for 11th position september 10
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "position_in_table" text, "replaced_by" text, "date_of_appointment" text );
SELECT COUNT("team") FROM "managerial_changes" WHERE "position_in_table"='11th' AND "date_of_appointment"='September 10';
1-25361570-2
Name the replaced by for august 9
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "position_in_table" text, "replaced_by" text, "date_of_appointment" text );
SELECT "replaced_by" FROM "managerial_changes" WHERE "date_of_vacancy"='August 9' AND "date_of_appointment"='August 9';
1-25361570-2
Name the most number for charvez davis
CREATE TABLE "roster" ( "num" real, "name" text, "position" text, "height" text, "weight" real, "year" text, "home_town" text, "last_school" text );
SELECT MAX("num") FROM "roster" WHERE "name"='Charvez Davis';
1-25360865-1
Name the most height
CREATE TABLE "roster" ( "num" real, "name" text, "position" text, "height" text, "weight" real, "year" text, "home_town" text, "last_school" text );
SELECT MAX("weight") FROM "roster";
1-25360865-1
Name the number of home town for number being 32
CREATE TABLE "roster" ( "num" real, "name" text, "position" text, "height" text, "weight" real, "year" text, "home_town" text, "last_school" text );
SELECT COUNT("home_town") FROM "roster" WHERE "num"=32;
1-25360865-1
Name the total number of height for number 32
CREATE TABLE "roster" ( "num" real, "name" text, "position" text, "height" text, "weight" real, "year" text, "home_town" text, "last_school" text );
SELECT COUNT("height") FROM "roster" WHERE "num"=32;
1-25360865-1
Name the number for florida air academy
CREATE TABLE "roster" ( "num" real, "name" text, "position" text, "height" text, "weight" real, "year" text, "home_town" text, "last_school" text );
SELECT "num" FROM "roster" WHERE "last_school"='Florida Air Academy';
1-25360865-1
Name the height for demetrius jemison
CREATE TABLE "roster" ( "num" real, "name" text, "position" text, "height" text, "weight" real, "year" text, "home_town" text, "last_school" text );
SELECT "height" FROM "roster" WHERE "name"='Demetrius Jemison';
1-25360865-1
How many wins did Canterbury Wizards have?
CREATE TABLE "points_table" ( "team" text, "played" real, "won" real, "lost" real, "no_result" real, "abandoned" real, "bonus_points" real, "total_points" real, "net_run_rate" text );
SELECT MAX("won") FROM "points_table" WHERE "team"='Canterbury Wizards';
1-25368177-1
What team had a net run rate of 0.134?
CREATE TABLE "points_table" ( "team" text, "played" real, "won" real, "lost" real, "no_result" real, "abandoned" real, "bonus_points" real, "total_points" real, "net_run_rate" text );
SELECT "team" FROM "points_table" WHERE "net_run_rate"='0.134';
1-25368177-1
What's the largest number of abandoned games by any of the teams?
CREATE TABLE "points_table" ( "team" text, "played" real, "won" real, "lost" real, "no_result" real, "abandoned" real, "bonus_points" real, "total_points" real, "net_run_rate" text );
SELECT MAX("abandoned") FROM "points_table";
1-25368177-1
How many different net run rates did the team with 19 total points have?
CREATE TABLE "points_table" ( "team" text, "played" real, "won" real, "lost" real, "no_result" real, "abandoned" real, "bonus_points" real, "total_points" real, "net_run_rate" text );
SELECT COUNT("net_run_rate") FROM "points_table" WHERE "total_points"=19;
1-25368177-1
What was the team that scored 56 points?Qh
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "team" FROM "career_summary" WHERE "points"='56';
1-25369796-1
What was the earliest season where a team got a 29th position?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT MIN("season") FROM "career_summary" WHERE "position"='29th';
1-25369796-1
What was the recorded flaps of HBR Motorsport team?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "f_laps" FROM "career_summary" WHERE "team"='HBR Motorsport';
1-25369796-1
What was the series where a team scored 56 points?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "series" FROM "career_summary" WHERE "points"='56';
1-25369796-1
How many team position scored 56 points?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT COUNT("position") FROM "career_summary" WHERE "points"='56';
1-25369796-1
On what dates was the final score of the game L 14–24?
CREATE TABLE "table1_25380472_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "date" FROM "table1_25380472_2" WHERE "final_score"='L 14–24';
1-25380472-2
How many game sites are there where the team record is 1–7?
CREATE TABLE "table1_25380472_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT COUNT("game_site") FROM "table1_25380472_2" WHERE "team_record"='1–7';
1-25380472-2
On week 7, what were the opponents?
CREATE TABLE "table1_25380472_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "table1_25380472_2" WHERE "week"=7;
1-25380472-2
On what game sites are there where the team record is 0–5?
CREATE TABLE "table1_25380472_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_25380472_2" WHERE "team_record"='0–5';
1-25380472-2
What game sites are where the team record is 1–6?
CREATE TABLE "table1_25380472_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_25380472_2" WHERE "team_record"='1–6';
1-25380472-2
In game site AOL Arena, who are all the opponents?
CREATE TABLE "table1_25380472_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "table1_25380472_2" WHERE "game_site"='AOL Arena';
1-25380472-2
What organization had the founding date of 1998-11-08?
CREATE TABLE "south_asian" ( "letters" text, "organization" text, "nickname" text, "founding_date" text, "founding_university" text, "type" text );
SELECT "organization" FROM "south_asian" WHERE "founding_date"='1998-11-08';
1-2538117-12
How many letters were given to the organization with a founding date of 1997-12-12?
CREATE TABLE "south_asian" ( "letters" text, "organization" text, "nickname" text, "founding_date" text, "founding_university" text, "type" text );
SELECT COUNT("letters") FROM "south_asian" WHERE "founding_date"='1997-12-12';
1-2538117-12
What is the song choice where the original artist is Gino Paoli?
CREATE TABLE "table1_25374338_1" ( "episode" text, "theme" text, "song_choice" text, "original_artist" text, "order_num" text, "result" text );
SELECT COUNT("song_choice") FROM "table1_25374338_1" WHERE "original_artist"='Gino Paoli';
1-25374338-1
What is the theme where the original artist is Noemi feat. Fiorella Mannoia?
CREATE TABLE "table1_25374338_1" ( "episode" text, "theme" text, "song_choice" text, "original_artist" text, "order_num" text, "result" text );
SELECT "theme" FROM "table1_25374338_1" WHERE "original_artist"='Noemi feat. Fiorella Mannoia';
1-25374338-1
What is the order number where the song choice is "l'appuntamento"?
CREATE TABLE "table1_25374338_1" ( "episode" text, "theme" text, "song_choice" text, "original_artist" text, "order_num" text, "result" text );
SELECT "order_num" FROM "table1_25374338_1" WHERE "song_choice"='\"L''appuntamento\"';
1-25374338-1
What is the song choice where the episode is Live Show 1?
CREATE TABLE "table1_25374338_1" ( "episode" text, "theme" text, "song_choice" text, "original_artist" text, "order_num" text, "result" text );
SELECT "song_choice" FROM "table1_25374338_1" WHERE "episode"='Live Show 1';
1-25374338-1
What is the result where the original artist is Prince and the Revolution?
CREATE TABLE "table1_25374338_1" ( "episode" text, "theme" text, "song_choice" text, "original_artist" text, "order_num" text, "result" text );
SELECT "result" FROM "table1_25374338_1" WHERE "original_artist"='Prince and The Revolution';
1-25374338-1
What is the theme where the original artist is AC/DC?
CREATE TABLE "table1_25374338_1" ( "episode" text, "theme" text, "song_choice" text, "original_artist" text, "order_num" text, "result" text );
SELECT "theme" FROM "table1_25374338_1" WHERE "original_artist"='AC/DC';
1-25374338-1
what type of organization is sigma phi omega?
CREATE TABLE "asian_american" ( "letters" text, "organization" text, "nickname" text, "founding_date" text, "founding_university" text, "type" text );
SELECT "type" FROM "asian_american" WHERE "organization"='Sigma Phi Omega';
1-2538117-2
how many types of organization were founded in san diego state university?
CREATE TABLE "asian_american" ( "letters" text, "organization" text, "nickname" text, "founding_date" text, "founding_university" text, "type" text );
SELECT COUNT("type") FROM "asian_american" WHERE "founding_university"='San Diego State University';
1-2538117-2
name the sorority a.k.a. "sigmas" that was founded in the university of southern california.
CREATE TABLE "asian_american" ( "letters" text, "organization" text, "nickname" text, "founding_date" text, "founding_university" text, "type" text );
SELECT "organization" FROM "asian_american" WHERE "founding_university"='University of Southern California' AND "type"='Sorority' AND "nickname"='\"Sigmas\"';
1-2538117-2