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 winner if the final venue is Kowloon Cricket Club?
CREATE TABLE "table1_22577693_1" ( "details" text, "host_nation_s" text, "final_venue" text, "winner" text, "result" text, "runner_up" text );
SELECT "winner" FROM "table1_22577693_1" WHERE "final_venue"='Kowloon Cricket Club';
1-22577693-1
How many u.s. viewers (million) have a series # 83?
CREATE TABLE "table1_22570439_1" ( "series_num" real, "season_num" real, "episode_title" text, "written_by" text, "directed_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "u_s_viewers_millions" FROM "table1_22570439_1" WHERE "series_num"=83;
1-22570439-1
How many u.s. viewers (millions) have 5 as the season #?
CREATE TABLE "table1_22570439_1" ( "series_num" real, "season_num" real, "episode_title" text, "written_by" text, "directed_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "u_s_viewers_millions" FROM "table1_22570439_1" WHERE "season_num"=5;
1-22570439-1
How many written by have wendey stanzler as the director?
CREATE TABLE "table1_22570439_1" ( "series_num" real, "season_num" real, "episode_title" text, "written_by" text, "directed_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT COUNT("written_by") FROM "table1_22570439_1" WHERE "directed_by"='Wendey Stanzler';
1-22570439-1
What is the original air date where tracy poust & jon kinnally was written by?
CREATE TABLE "table1_22570439_1" ( "series_num" real, "season_num" real, "episode_title" text, "written_by" text, "directed_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_22570439_1" WHERE "written_by"='Tracy Poust & Jon Kinnally';
1-22570439-1
Who is the written by when mark worthington is the director?
CREATE TABLE "table1_22570439_1" ( "series_num" real, "season_num" real, "episode_title" text, "written_by" text, "directed_by" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "written_by" FROM "table1_22570439_1" WHERE "directed_by"='Mark Worthington';
1-22570439-1
Who got the best male record when best female mc is tino baby & 5'6"?
CREATE TABLE "rebel_army_radio_awards_2010" ( "best_male_mc" text, "best_female_mc" text, "best_male_artist" text, "best_female_artist" text, "best_male_lyricist" text, "best_female_lyricist" text, "best_male_record" text );
SELECT "best_male_record" FROM "rebel_army_radio_awards_2010" WHERE "best_female_mc"='Tino Baby & 5''6\"';
1-22546460-3
In 1976, who was the reporter for the Belmont Stakes?
CREATE TABLE "1970s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT "reporters" FROM "1970s" WHERE "year"=1976;
1-22583466-5
Who called the race in 1978?
CREATE TABLE "1970s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT "race_caller" FROM "1970s" WHERE "year"=1978;
1-22583466-5
For the race called by Marshall Cassidy, who was the host?
CREATE TABLE "1970s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT "s_host" FROM "1970s" WHERE "race_caller"='Marshall Cassidy';
1-22583466-5
Who were the reporters for the 1977 Belmont Stakes?
CREATE TABLE "1970s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT "reporters" FROM "1970s" WHERE "year"=1977;
1-22583466-5
Who called the race in 1998?
CREATE TABLE "1990s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT "race_caller" FROM "1990s" WHERE "year"=1998;
1-22583466-3
Who was ranked in the same position in 1991-1992 as Drew Kachtik in 1993-1994?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "1990_1991" text, "1991_1992" text, "1992_1993" text, "1993_1994" text, "1994_1995" text );
SELECT "1991_1992" FROM "rankings_at_season_s_end" WHERE "1993_1994"='Drew Kachtik';
1-22591910-7
Who was ranked in the same position in 1991-1992 as Tim Doyle in 1994-1995?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "1990_1991" text, "1991_1992" text, "1992_1993" text, "1993_1994" text, "1994_1995" text );
SELECT "1991_1992" FROM "rankings_at_season_s_end" WHERE "1994_1995"='Tim Doyle';
1-22591910-7
In what position was Mike Ray ranked in 1993-1994?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "1990_1991" text, "1991_1992" text, "1992_1993" text, "1993_1994" text, "1994_1995" text );
SELECT MIN("position") FROM "rankings_at_season_s_end" WHERE "1993_1994"='Mike Ray';
1-22591910-7
Who was ranked in the same position in 1990-1991 as Andy Roberts in 1993-1994?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "1990_1991" text, "1991_1992" text, "1992_1993" text, "1993_1994" text, "1994_1995" text );
SELECT "1990_1991" FROM "rankings_at_season_s_end" WHERE "1993_1994"='Andy Roberts';
1-22591910-7
Who was ranked in the same position in 1990-1991 as Drew Kachtik in 1993-1994?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "1990_1991" text, "1991_1992" text, "1992_1993" text, "1993_1994" text, "1994_1995" text );
SELECT "1990_1991" FROM "rankings_at_season_s_end" WHERE "1993_1994"='Drew Kachtik';
1-22591910-7
What position was Drew Kachtik ranked at in 1993-1994?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "1990_1991" text, "1991_1992" text, "1992_1993" text, "1993_1994" text, "1994_1995" text );
SELECT MAX("position") FROM "rankings_at_season_s_end" WHERE "1993_1994"='Drew Kachtik';
1-22591910-7
who was position 3 in 2007-2008?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "2005_2006" text, "2006_2007" text, "2007_2008" text, "2008_2009" text, "2009_2010" text );
SELECT "2007_2008" FROM "rankings_at_season_s_end" WHERE "position"=3;
1-22591910-4
what is the total number of 2006-2007 and 2007-2008 for jack huczek?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "2005_2006" text, "2006_2007" text, "2007_2008" text, "2008_2009" text, "2009_2010" text );
SELECT COUNT("2006_2007") FROM "rankings_at_season_s_end" WHERE "2007_2008"='Jack Huczek';
1-22591910-4
what isthe total number of seasons for chris crowther?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "2005_2006" text, "2006_2007" text, "2007_2008" text, "2008_2009" text, "2009_2010" text );
SELECT COUNT("2009_2010") FROM "rankings_at_season_s_end" WHERE "2006_2007"='Chris Crowther';
1-22591910-4
what is the position for chris crowther in 2006-2007?
CREATE TABLE "rankings_at_season_s_end" ( "position" real, "2005_2006" text, "2006_2007" text, "2007_2008" text, "2008_2009" text, "2009_2010" text );
SELECT "position" FROM "rankings_at_season_s_end" WHERE "2006_2007"='Chris Crowther';
1-22591910-4
What was the standing when goal against were 279?
CREATE TABLE "season_by_season_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "winning_pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "standing" FROM "season_by_season_results" WHERE "goals_against"=279;
1-2259285-1
What is the winning pct % if the goal for are 229?
CREATE TABLE "season_by_season_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "winning_pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "winning_pct_pct" FROM "season_by_season_results" WHERE "goals_for"=229;
1-2259285-1
What was the winning % when there were 322 goals?
CREATE TABLE "season_by_season_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "winning_pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "winning_pct_pct" FROM "season_by_season_results" WHERE "goals_for"=322;
1-2259285-1
Name the year for willie goggin
CREATE TABLE "wins_7" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "year" FROM "wins_7" WHERE "runner_s_up"='Willie Goggin';
1-225880-1
Name the margin for 4 shot deficit
CREATE TABLE "wins_7" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "margin" FROM "wins_7" WHERE "54_holes"='4 shot deficit';
1-225880-1
Name the winning score for pga championship
CREATE TABLE "wins_7" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "winning_score" FROM "wins_7" WHERE "championship"='PGA Championship';
1-225880-1
Name the runners up for 1 shot deficit
CREATE TABLE "wins_7" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "runner_s_up" FROM "wins_7" WHERE "54_holes"='1 shot deficit';
1-225880-1
Name the least year for walter hagen
CREATE TABLE "wins_7" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT MIN("year") FROM "wins_7" WHERE "runner_s_up"='Walter Hagen';
1-225880-1
What was the score in the final where one of the opponents in the final was fitzgerald vilas?
CREATE TABLE "legends_over_45_doubles" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "score_in_the_final" FROM "legends_over_45_doubles" WHERE "opponents_in_the_final"='Fitzgerald Vilas';
1-22597626-17
What was the surface for the opponents in the final with fitzgerald vilas?
CREATE TABLE "legends_over_45_doubles" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "surface" FROM "legends_over_45_doubles" WHERE "opponents_in_the_final"='Fitzgerald Vilas';
1-22597626-17
Who were the opponents in the final where the score in the final is 6–4, 7–6 2?
CREATE TABLE "legends_over_45_doubles" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "opponents_in_the_final" FROM "legends_over_45_doubles" WHERE "score_in_the_final"='6–4, 7–6 2';
1-22597626-17
What was the partner count when the opponents in the final was forget leconte?
CREATE TABLE "legends_over_45_doubles" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT COUNT("partner") FROM "legends_over_45_doubles" WHERE "opponents_in_the_final"='Forget Leconte';
1-22597626-17
What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7–6 2 , 6–1?
CREATE TABLE "legends_over_45_doubles" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT MIN("year") FROM "legends_over_45_doubles" WHERE "opponents_in_the_final"='Bahrami Leconte' AND "score_in_the_final"='7–6 2 , 6–1';
1-22597626-17
Name the number of year for score being 6–3, 6–2, 6–4
CREATE TABLE "singles_26_19_titles_7_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT COUNT("year") FROM "singles_26_19_titles_7_runners_up" WHERE "score_in_the_final"='6–3, 6–2, 6–4';
1-22597626-6
Name the surface for 6–0, 6–3
CREATE TABLE "singles_26_19_titles_7_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "surface" FROM "singles_26_19_titles_7_runners_up" WHERE "score_in_the_final"='6–0, 6–3';
1-22597626-6
Name the championship for peter mcnamara
CREATE TABLE "singles_26_19_titles_7_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "championship" FROM "singles_26_19_titles_7_runners_up" WHERE "opponent_in_the_final"='Peter McNamara';
1-22597626-6
Name the championship for 1980 hard surface
CREATE TABLE "singles_26_19_titles_7_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "championship" FROM "singles_26_19_titles_7_runners_up" WHERE "year"=1980 AND "surface"='Hard';
1-22597626-6
If the team is Billy Ballew Motorsports, what is the race time?
CREATE TABLE "table1_2260452_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "race_time" FROM "table1_2260452_1" WHERE "team"='Billy Ballew Motorsports';
1-2260452-1
What was the date if the driver was Robert Pressley?
CREATE TABLE "table1_2260452_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "date" FROM "table1_2260452_1" WHERE "driver"='Robert Pressley';
1-2260452-1
If the race time is 2:00:33, what is the average speed?
CREATE TABLE "table1_2260452_1" ( "year" real, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text );
SELECT "average_speed_mph" FROM "table1_2260452_1" WHERE "race_time"='2:00:33';
1-2260452-1
Who is every entry for 1981-82 when 1984-85 is Marci Drexler?
CREATE TABLE "season_end_rankings" ( "rank" real, "1980_81" text, "1981_82" text, "1982_83" text, "1983_84" text, "1984_85" text );
SELECT "1981_82" FROM "season_end_rankings" WHERE "1984_85"='Marci Drexler';
1-22606461-10
What is every entry for 1980-81 when 1984-85 is Liz Alvarado?
CREATE TABLE "season_end_rankings" ( "rank" real, "1980_81" text, "1981_82" text, "1982_83" text, "1983_84" text, "1984_85" text );
SELECT "1980_81" FROM "season_end_rankings" WHERE "1984_85"='Liz Alvarado';
1-22606461-10
What is every entry for 1980-81 when 1983-84 is Caryn McKinney?
CREATE TABLE "season_end_rankings" ( "rank" real, "1980_81" text, "1981_82" text, "1982_83" text, "1983_84" text, "1984_85" text );
SELECT "1980_81" FROM "season_end_rankings" WHERE "1983_84"='Caryn McKinney';
1-22606461-10
What is every entry for 1980-81 when 1983-84 is Heather McKay?
CREATE TABLE "season_end_rankings" ( "rank" real, "1980_81" text, "1981_82" text, "1982_83" text, "1983_84" text, "1984_85" text );
SELECT "1980_81" FROM "season_end_rankings" WHERE "1983_84"='Heather McKay';
1-22606461-10
What is every entry for 1982-83 for rank 1?
CREATE TABLE "season_end_rankings" ( "rank" real, "1980_81" text, "1981_82" text, "1982_83" text, "1983_84" text, "1984_85" text );
SELECT "1982_83" FROM "season_end_rankings" WHERE "rank"=1;
1-22606461-10
How many entries for 1983-84 when 1984-85 is Terri Gilreath?
CREATE TABLE "season_end_rankings" ( "rank" real, "1980_81" text, "1981_82" text, "1982_83" text, "1983_84" text, "1984_85" text );
SELECT COUNT("1983_84") FROM "season_end_rankings" WHERE "1984_85"='Terri Gilreath';
1-22606461-10
How many heights are listed for Jesse Holley in the WR position?
CREATE TABLE "contestants" ( "position" text, "name" text, "jersey_number" real, "age" real, "height" text, "weight" real, "college" text, "result" text );
SELECT COUNT("height") FROM "contestants" WHERE "position"='WR' AND "name"='Jesse Holley';
1-22603701-1
What is the result for Wisconsin?
CREATE TABLE "contestants" ( "position" text, "name" text, "jersey_number" real, "age" real, "height" text, "weight" real, "college" text, "result" text );
SELECT "result" FROM "contestants" WHERE "college"='Wisconsin';
1-22603701-1
What is the result for Steve Gonzalez?
CREATE TABLE "contestants" ( "position" text, "name" text, "jersey_number" real, "age" real, "height" text, "weight" real, "college" text, "result" text );
SELECT "result" FROM "contestants" WHERE "name"='Steve Gonzalez';
1-22603701-1
What are the positions for Menlo College?
CREATE TABLE "contestants" ( "position" text, "name" text, "jersey_number" real, "age" real, "height" text, "weight" real, "college" text, "result" text );
SELECT "position" FROM "contestants" WHERE "college"='Menlo College';
1-22603701-1
If the distribution mechanism is the Microsoft website and the security issues id 98-004, what are all of the features?
CREATE TABLE "table1_2263152_1" ( "version" text, "release_date" text, "distribution_mechanism" text, "features" text, "security_issues" text );
SELECT "features" FROM "table1_2263152_1" WHERE "security_issues"='98-004' AND "distribution_mechanism"='Microsoft website';
1-2263152-1
With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version?
CREATE TABLE "table1_2263152_1" ( "version" text, "release_date" text, "distribution_mechanism" text, "features" text, "security_issues" text );
SELECT "version" FROM "table1_2263152_1" WHERE "security_issues"='98-004' AND "distribution_mechanism"='Microsoft website';
1-2263152-1
If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number?
CREATE TABLE "table1_2263152_1" ( "version" text, "release_date" text, "distribution_mechanism" text, "features" text, "security_issues" text );
SELECT COUNT("release_date") FROM "table1_2263152_1" WHERE "security_issues"='99-025' AND "distribution_mechanism"='Microsoft website';
1-2263152-1
With the version of 1.5a, what is the release date?
CREATE TABLE "table1_2263152_1" ( "version" text, "release_date" text, "distribution_mechanism" text, "features" text, "security_issues" text );
SELECT "release_date" FROM "table1_2263152_1" WHERE "version"='1.5a';
1-2263152-1
If the distribution mechanism is windows nt 4.0 option pack Microsoft office 97 and the features is service release, what is the version?
CREATE TABLE "table1_2263152_1" ( "version" text, "release_date" text, "distribution_mechanism" text, "features" text, "security_issues" text );
SELECT "version" FROM "table1_2263152_1" WHERE "features"='Service release' AND "distribution_mechanism"='Windows NT 4.0 Option Pack Microsoft Office 97';
1-2263152-1
If the version is 1.5b, what is the distribution mechanism?
CREATE TABLE "table1_2263152_1" ( "version" text, "release_date" text, "distribution_mechanism" text, "features" text, "security_issues" text );
SELECT "distribution_mechanism" FROM "table1_2263152_1" WHERE "version"='1.5b';
1-2263152-1
How many locations are listed for the winner Temple?
CREATE TABLE "table1_22645714_5" ( "conference" text, "regular_season_winner" text, "conference_player_of_the_year" text, "conference_tournament" text, "tournament_venue_city" text, "tournament_winner" text );
SELECT COUNT("tournament_venue_city") FROM "table1_22645714_5" WHERE "tournament_winner"='Temple';
1-22645714-5
How many locations are listed for the Big 12 Conference?
CREATE TABLE "table1_22645714_5" ( "conference" text, "regular_season_winner" text, "conference_player_of_the_year" text, "conference_tournament" text, "tournament_venue_city" text, "tournament_winner" text );
SELECT COUNT("tournament_venue_city") FROM "table1_22645714_5" WHERE "conference"='Big 12 Conference';
1-22645714-5
Who had the best regular season in the contest won by Arkansas-Pine Bluff?
CREATE TABLE "table1_22645714_5" ( "conference" text, "regular_season_winner" text, "conference_player_of_the_year" text, "conference_tournament" text, "tournament_venue_city" text, "tournament_winner" text );
SELECT "regular_season_winner" FROM "table1_22645714_5" WHERE "tournament_winner"='Arkansas-Pine Bluff';
1-22645714-5
How old was the official with Chinese name 孫明揚?
CREATE TABLE "table1_2263674_1" ( "romanised_name" text, "chinese_name" text, "age_at_appointment" real, "portfolio" text, "prior_occupation" text );
SELECT "age_at_appointment" FROM "table1_2263674_1" WHERE "chinese_name"='孫明揚';
1-2263674-1
What's 梁愛詩's romanised name?
CREATE TABLE "table1_2263674_1" ( "romanised_name" text, "chinese_name" text, "age_at_appointment" real, "portfolio" text, "prior_occupation" text );
SELECT "romanised_name" FROM "table1_2263674_1" WHERE "chinese_name"='梁愛詩';
1-2263674-1
What's the romanised name of the official who was Secretary for health, welfare and food?
CREATE TABLE "table1_2263674_1" ( "romanised_name" text, "chinese_name" text, "age_at_appointment" real, "portfolio" text, "prior_occupation" text );
SELECT "romanised_name" FROM "table1_2263674_1" WHERE "portfolio"='Secretary for Health, Welfare and Food';
1-2263674-1
What was Anthony Leung Kam-Chung previous position?
CREATE TABLE "table1_2263674_1" ( "romanised_name" text, "chinese_name" text, "age_at_appointment" real, "portfolio" text, "prior_occupation" text );
SELECT "portfolio" FROM "table1_2263674_1" WHERE "romanised_name"='Anthony Leung Kam-chung';
1-2263674-1
List all high rebound entries from May 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, "series" text );
SELECT "high_rebounds" FROM "game_log" WHERE "date"='May 11';
1-22654073-13
How many games were there on May 1?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT COUNT("game") FROM "game_log" WHERE "date"='May 1';
1-22654073-13
List all high assists in series 2-3.
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT "high_assists" FROM "game_log" WHERE "series"='2-3';
1-22654073-13
How many games were played on May 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, "series" text );
SELECT COUNT("game") FROM "game_log" WHERE "date"='May 11';
1-22654073-13
Name the score for chicago bulls
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 "score" FROM "game_log" WHERE "team"='Chicago Bulls';
1-22654073-7
Name the location attendance for 22-8
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 "record"='22-8';
1-22654073-7
Name the high points for mo williams , lebron james , j.j. hickson (6)
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_points") FROM "game_log" WHERE "high_rebounds"='Mo Williams , LeBron James , J.J. Hickson (6)';
1-22654073-7
Name the high assists for december 13
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 "high_assists" FROM "game_log" WHERE "date"='December 13';
1-22654073-7
What value can you find under the column "august 21-22" and the row of June 11, 1983?
CREATE TABLE "table1_22651355_3" ( "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_22651355_3" WHERE "june_10_11"='June 11, 1983';
1-22651355-3
What was the location and attendance for the game against the team with a 51-15 record with the Cavaliers?
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 "record"='51-15';
1-22654073-10
How many scores are associated with a record of 27-9?
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("score") FROM "game_log" WHERE "record"='27-9';
1-22654073-8
How many games are associated with a record of 29-10?
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 "record"='29-10';
1-22654073-8
Name the team for record 3-2
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"='3-2';
1-22654073-6
Name the date for lebron james , mo williams (21)
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 "high_points"='LeBron James , Mo Williams (21)';
1-22654073-6
Name the high points for record 9-4
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 "high_points" FROM "game_log" WHERE "record"='9-4';
1-22654073-6
Name the total number of date for l 85–86 (ot)
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("date") FROM "game_log" WHERE "score"='L 85–86 (OT)';
1-22654073-6
Name the network for 2007 total
CREATE TABLE "2000s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT COUNT("network") FROM "2000s" WHERE "year"=2007;
1-22654139-2
Name the analysts
CREATE TABLE "2000s" ( "year" real, "network" text, "race_caller" text, "s_host" text, "s_analyst" text, "reporters" text, "trophy_presentation" text );
SELECT "s_analyst" FROM "2000s";
1-22654139-2
What was the result for a partnering of Frederica Piedade?
CREATE TABLE "doubles_8" ( "edition" text, "round" text, "date" text, "partnering" text, "against" text, "surface" text, "opponents" text, "w_l" text, "result" text );
SELECT "result" FROM "doubles_8" WHERE "partnering"='Frederica Piedade';
1-22656187-9
Which round has a win-loss result of loss and an edition of 2012 Fed Cup Europe/Africa Group I?
CREATE TABLE "doubles_8" ( "edition" text, "round" text, "date" text, "partnering" text, "against" text, "surface" text, "opponents" text, "w_l" text, "result" text );
SELECT "round" FROM "doubles_8" WHERE "w_l"='Loss' AND "edition"='2012 Fed Cup Europe/Africa Group I';
1-22656187-9
Name the manufacturer for cale yarborough for 1984
CREATE TABLE "table1_2266230_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "manufacturer" FROM "table1_2266230_1" WHERE "driver"='Cale Yarborough' AND "year"='1984';
1-2266230-1
Name the report for 2003
CREATE TABLE "table1_2266230_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "report" FROM "table1_2266230_1" WHERE "year"='2003';
1-2266230-1
What is the date opened if thedistrict ID is 11901?
CREATE TABLE "a" ( "district_name" text, "dist_id" real, "isd" text, "county" text, "authorizing_agency" text, "date_opened" text, "services" text );
SELECT "date_opened" FROM "a" WHERE "dist_id"=11901;
1-22665117-1
If the district name is the Academy of Flint, what is the authorizing agency?
CREATE TABLE "a" ( "district_name" text, "dist_id" real, "isd" text, "county" text, "authorizing_agency" text, "date_opened" text, "services" text );
SELECT "authorizing_agency" FROM "a" WHERE "district_name"='Academy of Flint';
1-22665117-1
If the district ID is 74907, what is the name of the district?
CREATE TABLE "a" ( "district_name" text, "dist_id" real, "isd" text, "county" text, "authorizing_agency" text, "date_opened" text, "services" text );
SELECT "district_name" FROM "a" WHERE "dist_id"=74907;
1-22665117-1
If the name of the district is the Charyl Stockwell Academy, what is the county name?
CREATE TABLE "a" ( "district_name" text, "dist_id" real, "isd" text, "county" text, "authorizing_agency" text, "date_opened" text, "services" text );
SELECT "county" FROM "a" WHERE "district_name"='Charyl Stockwell Academy';
1-22665117-1
Who was the driver in 1986?
CREATE TABLE "table1_2266976_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "driver" FROM "table1_2266976_1" WHERE "year"='1986';
1-2266976-1
When was an average speed of 81.388 mph recorded?
CREATE TABLE "table1_2266976_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "date" FROM "table1_2266976_1" WHERE "average_speed_mph"='81.388';
1-2266976-1
Who was the manufacturer in 1990?
CREATE TABLE "table1_2266976_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "manufacturer" FROM "table1_2266976_1" WHERE "year"='1990';
1-2266976-1
Who was the manufacturer in the year when the race lasted 2:30:28?
CREATE TABLE "table1_2266976_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "manufacturer" FROM "table1_2266976_1" WHERE "race_time"='2:30:28';
1-2266976-1
What team competed in 2003?
CREATE TABLE "table1_2266976_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "team" FROM "table1_2266976_1" WHERE "year"='2003';
1-2266976-1
How long in miles (km) was the race that lasted 3:07:53?
CREATE TABLE "table1_2266976_1" ( "year" text, "date" text, "driver" text, "team" text, "manufacturer" text, "laps" text, "miles_km" text, "race_time" text, "average_speed_mph" text, "report" text );
SELECT "miles_km" FROM "table1_2266976_1" WHERE "race_time"='3:07:53';
1-2266976-1
Name the race name for june 6
CREATE TABLE "schedule_and_results" ( "rnd" real, "date" text, "race_name" text, "length" text, "track" text, "location" text, "pole_position" text, "winning_driver" text );
SELECT "race_name" FROM "schedule_and_results" WHERE "date"='June 6';
1-22669375-1
Name the location for trenton 300
CREATE TABLE "schedule_and_results" ( "rnd" real, "date" text, "race_name" text, "length" text, "track" text, "location" text, "pole_position" text, "winning_driver" text );
SELECT "location" FROM "schedule_and_results" WHERE "race_name"='Trenton 300';
1-22669375-1
Name the race name for rnd being 11
CREATE TABLE "schedule_and_results" ( "rnd" real, "date" text, "race_name" text, "length" text, "track" text, "location" text, "pole_position" text, "winning_driver" text );
SELECT "race_name" FROM "schedule_and_results" WHERE "rnd"=11;
1-22669375-1