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 series number for the episode number 10 of the season?
CREATE TABLE "table1_27833469_1" ( "series_num" real, "season_num" text, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "series_num" FROM "table1_27833469_1" WHERE "season_num"='10';
1-27833469-1
What are the the approximate translations when the Morphological Category is 1st. plur. perfect?
CREATE TABLE "triconsonantal_roots" ( "semitological_abbreviation" text, "hebrew_name" text, "arabic_name" text, "morphological_category" text, "hebrew_form" text, "arabic_form" text, "approximate_translation" text );
SELECT "approximate_translation" FROM "triconsonantal_roots" WHERE "morphological_category"='1st. plur. perfect';
1-2784232-1
What are the approximate translations when the morphological category is masc. sing. active participle?
CREATE TABLE "triconsonantal_roots" ( "semitological_abbreviation" text, "hebrew_name" text, "arabic_name" text, "morphological_category" text, "hebrew_form" text, "arabic_form" text, "approximate_translation" text );
SELECT "approximate_translation" FROM "triconsonantal_roots" WHERE "morphological_category"='masc. sing. active participle';
1-2784232-1
How many hebrew forms are there for the arabic form yuktibu يكتب?
CREATE TABLE "triconsonantal_roots" ( "semitological_abbreviation" text, "hebrew_name" text, "arabic_name" text, "morphological_category" text, "hebrew_form" text, "arabic_form" text, "approximate_translation" text );
SELECT COUNT("hebrew_form") FROM "triconsonantal_roots" WHERE "arabic_form"='yuktibu يكتب';
1-2784232-1
What are the arabic forms when the approximate translation is "he writes, will write"?
CREATE TABLE "triconsonantal_roots" ( "semitological_abbreviation" text, "hebrew_name" text, "arabic_name" text, "morphological_category" text, "hebrew_form" text, "arabic_form" text, "approximate_translation" text );
SELECT "arabic_form" FROM "triconsonantal_roots" WHERE "approximate_translation"='\"he writes, will write\"';
1-2784232-1
What are the morphological categories when the approximate translation is "he wrote"?
CREATE TABLE "triconsonantal_roots" ( "semitological_abbreviation" text, "hebrew_name" text, "arabic_name" text, "morphological_category" text, "hebrew_form" text, "arabic_form" text, "approximate_translation" text );
SELECT "morphological_category" FROM "triconsonantal_roots" WHERE "approximate_translation"='\"he wrote\"';
1-2784232-1
How many Arabic forms are there for the 1st. plur. perfect category?
CREATE TABLE "triconsonantal_roots" ( "semitological_abbreviation" text, "hebrew_name" text, "arabic_name" text, "morphological_category" text, "hebrew_form" text, "arabic_form" text, "approximate_translation" text );
SELECT COUNT("arabic_form") FROM "triconsonantal_roots" WHERE "morphological_category"='1st. plur. perfect';
1-2784232-1
How many were the viewers (in millions) of the series no. 45?
CREATE TABLE "table1_27847088_1" ( "episode_no" real, "series_no" real, "episode" text, "director" text, "writer_s" text, "original_airdate" text, "viewers_millions" text );
SELECT "viewers_millions" FROM "table1_27847088_1" WHERE "series_no"=45;
1-27847088-1
Who was the writer of the episode title "Divine Intervention"?
CREATE TABLE "table1_27847088_1" ( "episode_no" real, "series_no" real, "episode" text, "director" text, "writer_s" text, "original_airdate" text, "viewers_millions" text );
SELECT "writer_s" FROM "table1_27847088_1" WHERE "episode"='\"Divine Intervention\"';
1-27847088-1
How many games did UCLA's baseball team win with a score 7-6 during May of 2010?
CREATE TABLE "schedule" ( "num" real, "date" text, "opponent" text, "site_stadium" text, "score" text, "win" text, "loss" text, "save" text, "attendance" real, "overall_record" text, "pac_10_record" text );
SELECT COUNT("opponent") FROM "schedule" WHERE "score"='7-6';
1-27862483-4
How many wins are listed when the first title is 2004?
CREATE TABLE "champions_by_nationality" ( "rank" text, "nationality" text, "non_major_wins" real, "non_major_winners" real, "major_wins" real, "major_winners" real, "total_wins" real, "total_winners" real, "first_title" real, "last_title" real );
SELECT "total_wins" FROM "champions_by_nationality" WHERE "first_title"=2004;
1-27864661-6
Which network was located in Illinois?
CREATE TABLE "table_of_network_o_os_that_aired_nta_pro" ( "city" text, "state_or_territory" text, "station_call_sign" text, "network" text, "channel_number" real, "programs_aired" text );
SELECT "network" FROM "table_of_network_o_os_that_aired_nta_pro" WHERE "state_or_territory"='Illinois';
1-27871460-2
What is the highest channel number?
CREATE TABLE "table_of_network_o_os_that_aired_nta_pro" ( "city" text, "state_or_territory" text, "station_call_sign" text, "network" text, "channel_number" real, "programs_aired" text );
SELECT MAX("channel_number") FROM "table_of_network_o_os_that_aired_nta_pro";
1-27871460-2
Which state or territory had a channel number of exactly 7?
CREATE TABLE "table_of_network_o_os_that_aired_nta_pro" ( "city" text, "state_or_territory" text, "station_call_sign" text, "network" text, "channel_number" real, "programs_aired" text );
SELECT "state_or_territory" FROM "table_of_network_o_os_that_aired_nta_pro" WHERE "channel_number"=7;
1-27871460-2
Name the date for omni coliseum 10,330
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "location_attendance"='Omni Coliseum 10,330';
1-27882867-4
Name the location attendance for 3 game
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "game"=3;
1-27882867-4
Name the location attendance for l 93-105
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "score"='L 93-105';
1-27882867-4
Name the record for oakland-alameda county coliseum arena 15,025
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "location_attendance"='Oakland-Alameda County Coliseum Arena 15,025';
1-27882867-4
Name the total number of games for w 112-94
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("game") FROM "game_log" WHERE "score"='W 112-94';
1-27882867-4
what is the club in the sixth round proper
CREATE TABLE "calendar" ( "round" text, "main_date" text, "number_of_fixtures" real, "clubs" text, "new_entries_this_round" text, "prize_money" text, "player_of_the_round" text );
SELECT "clubs" FROM "calendar" WHERE "round"='Sixth round proper';
1-27876486-2
For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface
CREATE TABLE "singles" ( "outcome" text, "edition" text, "opponent_team" text, "surface" text, "opponent" text, "score" text );
SELECT "surface" FROM "singles" WHERE "score"='6–4, 6–1' AND "edition"='2011 Europe/Africa Group IIIB';
1-27877656-7
For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.
CREATE TABLE "singles" ( "outcome" text, "edition" text, "opponent_team" text, "surface" text, "opponent" text, "score" text );
SELECT "opponent_team" FROM "singles" WHERE "edition"='2009 Europe/Africa Group IIIB' AND "outcome"='Winner' AND "opponent"='Sandra Kristjánsdóttir';
1-27877656-7
For score 7–6 (7–3) , 6–4 please mention total number of outcome
CREATE TABLE "singles" ( "outcome" text, "edition" text, "opponent_team" text, "surface" text, "opponent" text, "score" text );
SELECT COUNT("outcome") FROM "singles" WHERE "score"='7–6 (7–3) , 6–4';
1-27877656-7
For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent
CREATE TABLE "singles" ( "outcome" text, "edition" text, "opponent_team" text, "surface" text, "opponent" text, "score" text );
SELECT "opponent" FROM "singles" WHERE "edition"='2009 Europe/Africa Group IIIB' AND "opponent_team"='Armenia';
1-27877656-7
For score 6–2, 6–3 and outcome is loser mention all the edition.
CREATE TABLE "singles" ( "outcome" text, "edition" text, "opponent_team" text, "surface" text, "opponent" text, "score" text );
SELECT "edition" FROM "singles" WHERE "outcome"='Loser' AND "score"='6–2, 6–3';
1-27877656-7
who was the winner of uci rating cn?
CREATE TABLE "events" ( "dates" text, "race_name" text, "location" text, "uci_rating" text, "winner" text, "team" text, "series_leader" text );
SELECT "winner" FROM "events" WHERE "uci_rating"='CN';
1-27887723-1
what race name had a uci rating of cn?
CREATE TABLE "events" ( "dates" text, "race_name" text, "location" text, "uci_rating" text, "winner" text, "team" text, "series_leader" text );
SELECT "race_name" FROM "events" WHERE "uci_rating"='CN';
1-27887723-1
what location has team trek-livestrong?
CREATE TABLE "events" ( "dates" text, "race_name" text, "location" text, "uci_rating" text, "winner" text, "team" text, "series_leader" text );
SELECT "location" FROM "events" WHERE "team"='Trek-Livestrong';
1-27887723-1
who was the winner for souderton, pa?
CREATE TABLE "events" ( "dates" text, "race_name" text, "location" text, "uci_rating" text, "winner" text, "team" text, "series_leader" text );
SELECT "winner" FROM "events" WHERE "location"='Souderton, PA';
1-27887723-1
What is the name of episode 120 in the series that Mike Rohl directed?
CREATE TABLE "table1_27892955_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_27892955_1" WHERE "directed_by"='Mike Rohl' AND "no_in_series"=120;
1-27892955-1
Who wrote episode that had 1.97 million u.s. viewers?
CREATE TABLE "table1_27892955_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "written_by" FROM "table1_27892955_1" WHERE "u_s_viewers_million"='1.97';
1-27892955-1
What is the name of the episode that had 2.02 million u.s. viewers?
CREATE TABLE "table1_27892955_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_million" text );
SELECT "title" FROM "table1_27892955_1" WHERE "u_s_viewers_million"='2.02';
1-27892955-1
How many games did they play on january 11?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("location_attendance") FROM "game_log" WHERE "date"='January 11';
1-27882867-6
What is every team with a record of 9-7?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "record"='9-7';
1-27902171-5
How many people are high assists when location attendance is Seattle Center Coliseum 14,180?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_assists") FROM "game_log" WHERE "location_attendance"='Seattle Center Coliseum 14,180';
1-27902171-5
What is every date with game 23?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "game"=23;
1-27902171-5
What is every team with location attendance of Seattle Center Coliseum 14,180?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "location_attendance"='Seattle Center Coliseum 14,180';
1-27902171-5
What is every team with location attendance of Arco Arena 17,014?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "location_attendance"='ARCO Arena 17,014';
1-27902171-5
what was the opposition where the field is waldstadion during time 6
CREATE TABLE "table1_27893892_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "opponent" FROM "table1_27893892_2" WHERE "game_site"='Waldstadion' AND "week"=6;
1-27893892-2
what is the location for saturday, april 21
CREATE TABLE "table1_27893892_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_27893892_2" WHERE "date"='Saturday, April 21';
1-27893892-2
what was the participation for saturday, may 12
CREATE TABLE "table1_27893892_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_27893892_2" WHERE "date"='Saturday, May 12';
1-27893892-2
what was the achievement for the rival at scottish claymores
CREATE TABLE "table1_27893892_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_27893892_2" WHERE "opponent"='at Scottish Claymores';
1-27893892-2
What is the highest number for 140+?
CREATE TABLE "statistics" ( "player" text, "played" real, "legs_won" real, "legs_lost" real, "100" real, "140" real, "180s" real, "high_checkout" real, "3_dart_average" text );
SELECT MAX("140") FROM "statistics";
1-27906667-2
How many legs were lost when the high checkout was 101?
CREATE TABLE "statistics" ( "player" text, "played" real, "legs_won" real, "legs_lost" real, "100" real, "140" real, "180s" real, "high_checkout" real, "3_dart_average" text );
SELECT COUNT("legs_lost") FROM "statistics" WHERE "high_checkout"=101;
1-27906667-2
Who was the player when the 180s was 15?
CREATE TABLE "statistics" ( "player" text, "played" real, "legs_won" real, "legs_lost" real, "100" real, "140" real, "180s" real, "high_checkout" real, "3_dart_average" text );
SELECT "player" FROM "statistics" WHERE "180s"=15;
1-27906667-2
How many legs were own by alan tabern?
CREATE TABLE "statistics" ( "player" text, "played" real, "legs_won" real, "legs_lost" real, "100" real, "140" real, "180s" real, "high_checkout" real, "3_dart_average" text );
SELECT MAX("legs_won") FROM "statistics" WHERE "player"='Alan Tabern';
1-27906667-2
What is the 3-dart average where the 140+ is 75?
CREATE TABLE "statistics" ( "player" text, "played" real, "legs_won" real, "legs_lost" real, "100" real, "140" real, "180s" real, "high_checkout" real, "3_dart_average" text );
SELECT "3_dart_average" FROM "statistics" WHERE "140"=75;
1-27906667-2
name the team for 36-29 record
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "record"='36-29';
1-27902171-8
Name the total number of high asists for 34-27
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_assists") FROM "game_log" WHERE "record"='34-27';
1-27902171-8
Name the date for score of w 112-91
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "score"='W 112-91';
1-27902171-8
Name the number of location attendance for 36-29 record
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("location_attendance") FROM "game_log" WHERE "record"='36-29';
1-27902171-8
What date did the episode with 8.28 million u.s. viewers originally air?
CREATE TABLE "table1_27910411_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_27910411_1" WHERE "u_s_viewers_millions"='8.28';
1-27910411-1
What episode number of the series is "open water"?
CREATE TABLE "table1_27910411_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "no_in_series" FROM "table1_27910411_1" WHERE "title"='\"Open Water\"';
1-27910411-1
How many items are listed for U.S. viewers for episode number 5 in the series?
CREATE TABLE "table1_27910411_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("u_s_viewers_millions") FROM "table1_27910411_1" WHERE "no_in_series"=5;
1-27910411-1
What date did episode 10 in the series originally air?
CREATE TABLE "table1_27910411_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_27910411_1" WHERE "no_in_series"=10;
1-27910411-1
What is the date the episode entitled "House" aired?
CREATE TABLE "table1_27911342_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_27911342_1" WHERE "title"='\"House\"';
1-27911342-1
What is the season number of the show written by both Kari Lizer and Jeff Astrof?
CREATE TABLE "table1_27911342_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("season_num") FROM "table1_27911342_1" WHERE "written_by"='Kari Lizer';
1-27911342-1
What is the title of the Series 40 Season 5 show?
CREATE TABLE "table1_27911342_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_27911342_1" WHERE "season_num"=5;
1-27911342-1
who wrote the episode "he ain't heavy"?
CREATE TABLE "table1_27913766_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_27913766_1" WHERE "title"='\"He Ain''t Heavy\"';
1-27913766-1
how many times was the episode "the old maid of honor" originally aired?
CREATE TABLE "table1_27913766_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("original_air_date") FROM "table1_27913766_1" WHERE "title"='\"The Old Maid of Honor\"';
1-27913766-1
the episode "a change in heart/pants" had a maximum of what number in the series?
CREATE TABLE "table1_27913766_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT MAX("series_num") FROM "table1_27913766_1" WHERE "title"='\"A Change in Heart/Pants\"';
1-27913766-1
Name the callsign for davao mindanao region
CREATE TABLE "table1_27914076_1" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "coverage" text );
SELECT "callsign" FROM "table1_27914076_1" WHERE "coverage"='Davao Mindanao Region';
1-27914076-1
Name the power for dymd-fm
CREATE TABLE "table1_27914076_1" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "coverage" text );
SELECT "power_k_w" FROM "table1_27914076_1" WHERE "callsign"='DYMD-FM';
1-27914076-1
Name the frequency for 103.7 energy fm dipolog*
CREATE TABLE "table1_27914076_1" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "coverage" text );
SELECT "frequency" FROM "table1_27914076_1" WHERE "branding"='103.7 Energy FM Dipolog*';
1-27914076-1
Name the number of coverage for 106.7 energy fm
CREATE TABLE "table1_27914076_1" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "coverage" text );
SELECT COUNT("coverage") FROM "table1_27914076_1" WHERE "branding"='106.7 Energy FM';
1-27914076-1
what is the number of the episode in the season that had 7.19 millions of north american viewers?
CREATE TABLE "table1_27914606_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "season_num" FROM "table1_27914606_1" WHERE "u_s_viewers_millions"='7.19';
1-27914606-1
what is the name of the episode whose writers were jeff astrof & matt goldman?
CREATE TABLE "table1_27914606_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_27914606_1" WHERE "written_by"='Jeff Astrof & Matt Goldman';
1-27914606-1
who were the writers of the episode that had 5.56 millions of north american viewers?
CREATE TABLE "table1_27914606_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_27914606_1" WHERE "u_s_viewers_millions"='5.56';
1-27914606-1
what is the name of the episode whose writers were jeff astrof & matt goldman?
CREATE TABLE "table1_27914606_1" ( "series_num" real, "season_num" real, "title" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_27914606_1" WHERE "written_by"='Jeff Astrof & Matt Goldman';
1-27914606-1
What is the average for the player with 313 runs?
CREATE TABLE "batting_averages" ( "player" text, "matches" real, "innings" real, "runs" real, "average" text, "highest_score" text, "100s" real, "50s" real );
SELECT "average" FROM "batting_averages" WHERE "runs"=313;
1-27922491-11
How few runs does the 97.00 average have?
CREATE TABLE "batting_averages" ( "player" text, "matches" real, "innings" real, "runs" real, "average" text, "highest_score" text, "100s" real, "50s" real );
SELECT MIN("runs") FROM "batting_averages" WHERE "average"='97.00';
1-27922491-11
What is the minimum number of 50s scored?
CREATE TABLE "batting_averages" ( "player" text, "matches" real, "innings" real, "runs" real, "average" text, "strike_rate" text, "highest_score" text, "50s" real );
SELECT MIN("50s") FROM "batting_averages";
1-27922491-24
How many 4wi were recorded by the player with an economy of 4.17?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real );
SELECT "4wi" FROM "bowling_averages" WHERE "economy"='4.17';
1-27922491-20
What is the fewest number of wickets recorded?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real );
SELECT MIN("wickets") FROM "bowling_averages";
1-27922491-20
What was the BBI for the bowler whose average is 24.50?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "overs" text, "wickets" real, "average" text, "economy" text, "bbi" text, "4wi" real );
SELECT "bbi" FROM "bowling_averages" WHERE "average"='24.50';
1-27922491-20
What is the least amount of wickets?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "innings" real, "wickets" real, "average" text, "bbi" text, "bbm" text, "5wi" real );
SELECT MIN("wickets") FROM "bowling_averages";
1-27922491-8
What is the least amount of matches?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "innings" real, "wickets" real, "average" text, "bbi" text, "bbm" text, "5wi" real );
SELECT MIN("matches") FROM "bowling_averages";
1-27922491-8
How many players had 12 wickets?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "innings" real, "wickets" real, "average" text, "bbi" text, "bbm" text, "5wi" real );
SELECT COUNT("player") FROM "bowling_averages" WHERE "wickets"=12;
1-27922491-8
How many innings for the player with an average of 30.03?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "innings" real, "wickets" real, "average" text, "bbi" text, "bbm" text, "5wi" real );
SELECT MIN("innings") FROM "bowling_averages" WHERE "average"='30.03';
1-27922491-8
What is the average for the player with BBM 5/85?
CREATE TABLE "bowling_averages" ( "player" text, "matches" real, "innings" real, "wickets" real, "average" text, "bbi" text, "bbm" text, "5wi" real );
SELECT "average" FROM "bowling_averages" WHERE "bbm"='5/85';
1-27922491-8
What is the lowest episode number that had 4.03 million viewers?
CREATE TABLE "table1_27927185_1" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "viewers_millions" text );
SELECT MIN("episode_num") FROM "table1_27927185_1" WHERE "viewers_millions"='4.03';
1-27927185-1
How many million viewers watched episodes prior to episode 2.0?
CREATE TABLE "table1_27927185_1" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "viewers_millions" text );
SELECT "viewers_millions" FROM "table1_27927185_1" WHERE "episode_num"<2.0;
1-27927185-1
What was the original air-date that had 4.77 million viewers?
CREATE TABLE "table1_27927185_1" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "viewers_millions" text );
SELECT "originalairdate" FROM "table1_27927185_1" WHERE "viewers_millions"='4.77';
1-27927185-1
Who directed the episode with 6.37 million viewers?
CREATE TABLE "table1_27927185_1" ( "episode_num" real, "title" text, "directed_by" text, "written_by" text, "originalairdate" text, "viewers_millions" text );
SELECT "directed_by" FROM "table1_27927185_1" WHERE "viewers_millions"='6.37';
1-27927185-1
What is the release date of catalogue number DW023?
CREATE TABLE "table1_27932399_1" ( "catalogue_number" text, "artist" text, "release_title" text, "format" text, "release_date" real );
SELECT MAX("release_date") FROM "table1_27932399_1" WHERE "catalogue_number"='DW023';
1-27932399-1
What is the release date of "New Worlds for Old"?
CREATE TABLE "table1_27932399_1" ( "catalogue_number" text, "artist" text, "release_title" text, "format" text, "release_date" real );
SELECT "release_date" FROM "table1_27932399_1" WHERE "release_title"='New Worlds For Old';
1-27932399-1
What is the catalogue number for "Waves in the Air"?
CREATE TABLE "table1_27932399_1" ( "catalogue_number" text, "artist" text, "release_title" text, "format" text, "release_date" real );
SELECT "catalogue_number" FROM "table1_27932399_1" WHERE "release_title"='Waves In The Air';
1-27932399-1
What is the catalogue number for release dates of exactly 2005 and released by The Clear Spots?
CREATE TABLE "table1_27932399_1" ( "catalogue_number" text, "artist" text, "release_title" text, "format" text, "release_date" real );
SELECT "catalogue_number" FROM "table1_27932399_1" WHERE "release_date"=2005 AND "artist"='The Clear Spots';
1-27932399-1
Which artist had a release title of HH?
CREATE TABLE "table1_27932399_1" ( "catalogue_number" text, "artist" text, "release_title" text, "format" text, "release_date" real );
SELECT "artist" FROM "table1_27932399_1" WHERE "release_title"='HH';
1-27932399-1
What was the name of the album released by Heavy Winged?
CREATE TABLE "table1_27932399_1" ( "catalogue_number" text, "artist" text, "release_title" text, "format" text, "release_date" real );
SELECT "release_title" FROM "table1_27932399_1" WHERE "artist"='Heavy Winged';
1-27932399-1
Who was the dual television commentator in 1990?
CREATE TABLE "commentators_and_spokespersons" ( "year_s" real, "television_commentator" text, "dual_television_commentator" text, "radio_commentator" text, "spokesperson" text );
SELECT "dual_television_commentator" FROM "commentators_and_spokespersons" WHERE "year_s"=1990;
1-2794180-11
Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast?
CREATE TABLE "commentators_and_spokespersons" ( "year_s" real, "television_commentator" text, "dual_television_commentator" text, "radio_commentator" text, "spokesperson" text );
SELECT "radio_commentator" FROM "commentators_and_spokespersons" WHERE "television_commentator"='Jan Gabrielsson';
1-2794180-11
Name the total number of moto2 winners for laguna seca
CREATE TABLE "grands_prix" ( "round" real, "date" text, "grand_prix" text, "circuit" text, "moto_gp_winner" text, "moto2_winner" text, "moto3_winner" text, "report" text );
SELECT COUNT("moto2_winner") FROM "grands_prix" WHERE "circuit"='Laguna Seca';
1-27948565-1
Name the circuit for hertz british grand prix
CREATE TABLE "grands_prix" ( "round" real, "date" text, "grand_prix" text, "circuit" text, "moto_gp_winner" text, "moto2_winner" text, "moto3_winner" text, "report" text );
SELECT "circuit" FROM "grands_prix" WHERE "grand_prix"='Hertz British Grand Prix';
1-27948565-1
Name the number of rounds for brno
CREATE TABLE "grands_prix" ( "round" real, "date" text, "grand_prix" text, "circuit" text, "moto_gp_winner" text, "moto2_winner" text, "moto3_winner" text, "report" text );
SELECT COUNT("round") FROM "grands_prix" WHERE "circuit"='Brno';
1-27948565-1
Name the motogp winner for 6 may
CREATE TABLE "grands_prix" ( "round" real, "date" text, "grand_prix" text, "circuit" text, "moto_gp_winner" text, "moto2_winner" text, "moto3_winner" text, "report" text );
SELECT "moto_gp_winner" FROM "grands_prix" WHERE "date"='6 May';
1-27948565-1
when was the episode titled "cracked" originally aired?
CREATE TABLE "table1_27936859_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_27936859_2" WHERE "title"='\"Cracked\"';
1-27936859-2
Name the b winning car for #88 team mitsubishi 88 mitsubishi starion
CREATE TABLE "table1_27965906_2" ( "rnd" real, "circuit" text, "gt_winning_car" text, "ss_winning_car" text, "a_winning_car" text, "b_winning_car" text, "report" text );
SELECT "b_winning_car" FROM "table1_27965906_2" WHERE "a_winning_car"='#88 Team Mitsubishi 88 Mitsubishi Starion';
1-27965906-2
Name the gt winning car for #88 team mitsubishi 88 mitsubishi starion
CREATE TABLE "table1_27965906_2" ( "rnd" real, "circuit" text, "gt_winning_car" text, "ss_winning_car" text, "a_winning_car" text, "b_winning_car" text, "report" text );
SELECT "gt_winning_car" FROM "table1_27965906_2" WHERE "a_winning_car"='#88 Team Mitsubishi 88 Mitsubishi Starion';
1-27965906-2
Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si
CREATE TABLE "table1_27965906_2" ( "rnd" real, "circuit" text, "gt_winning_car" text, "ss_winning_car" text, "a_winning_car" text, "b_winning_car" text, "report" text );
SELECT "ss_winning_car" FROM "table1_27965906_2" WHERE "circuit"='Road Atlanta' AND "b_winning_car"='#35 Quantum Engineering #35 Honda CRX-Si';
1-27965906-2