question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Which Year has Playoffs which did not qualify?
CREATE TABLE "year_by_year" ( "year" real, "division" real, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT AVG("year") FROM "year_by_year" WHERE "playoffs"='did not qualify';
2-15056103-1
Can you tell me the Gold that has the Silver of south korea, and the Year of 1986?
CREATE TABLE "team" ( "year" real, "location" text, "gold" text, "silver" text, "bronze" text );
SELECT "gold" FROM "team" WHERE "silver"='south korea' AND "year"=1986;
2-14781412-7
When was Lee Phillips the director?
CREATE TABLE "filmography" ( "year" text, "title" text, "director" text, "distributor_s" text, "box_office" text );
SELECT "year" FROM "filmography" WHERE "director"='lee phillips';
2-1517634-1
What is the movie that Paul Schneider directed?
CREATE TABLE "filmography" ( "year" text, "title" text, "director" text, "distributor_s" text, "box_office" text );
SELECT "title" FROM "filmography" WHERE "director"='paul schneider';
2-1517634-1
The box office was $961,147 in what year?
CREATE TABLE "filmography" ( "year" text, "title" text, "director" text, "distributor_s" text, "box_office" text );
SELECT "year" FROM "filmography" WHERE "box_office"='$961,147';
2-1517634-1
Three Men and a Little Lady from Touchstone Pictures was from what year?
CREATE TABLE "filmography" ( "year" text, "title" text, "director" text, "distributor_s" text, "box_office" text );
SELECT "year" FROM "filmography" WHERE "distributor_s"='touchstone pictures' AND "title"='three men and a little lady';
2-1517634-1
What is the name of the movie from 1997 distributed from HBO Pictures?
CREATE TABLE "filmography" ( "year" text, "title" text, "director" text, "distributor_s" text, "box_office" text );
SELECT "title" FROM "filmography" WHERE "year"='1997' AND "distributor_s"='hbo pictures';
2-1517634-1
What movie earned $1,659,542 at the box office?
CREATE TABLE "filmography" ( "year" text, "title" text, "director" text, "distributor_s" text, "box_office" text );
SELECT "title" FROM "filmography" WHERE "box_office"='$1,659,542';
2-1517634-1
Which accession number has a protein name of ccdc165, and a divergence from human lineage (MYA) smaller than 296?
CREATE TABLE "orthologs" ( "common_name" text, "protein_name" text, "divergence_from_human_lineage_mya" real, "accession_number" text, "sequence_length_aa" real, "sequence_identity_to_human_protein" text );
SELECT "accession_number" FROM "orthologs" WHERE "protein_name"='ccdc165' AND "divergence_from_human_lineage_mya"<296;
2-15229416-2
Which sequence identity to human protein has a divergence from human lineage (MYA) larger than 8.8, and a sequence length (aa) larger than 1587, and a protein name of soga2?
CREATE TABLE "orthologs" ( "common_name" text, "protein_name" text, "divergence_from_human_lineage_mya" real, "accession_number" text, "sequence_length_aa" real, "sequence_identity_to_human_protein" text );
SELECT "sequence_identity_to_human_protein" FROM "orthologs" WHERE "divergence_from_human_lineage_mya">8.8 AND "sequence_length_aa">1587 AND "protein_name"='soga2';
2-15229416-2
What's the record of the team who played the Cleveland Browns?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT "record" FROM "schedule" WHERE "opponent"='cleveland browns';
2-14875671-1
What is the hometown of the player who plays pr?
CREATE TABLE "special_teams" ( "position" text, "number" real, "name" text, "height" text, "weight" text, "class" text, "hometown" text, "games" real );
SELECT "hometown" FROM "special_teams" WHERE "position"='pr';
2-15257210-5
Which college's overall number is more than 158 when Travian Robertson is the name?
CREATE TABLE "atlanta_falcons_draft_history" ( "round" real, "pick_num" real, "overall" real, "name" text, "position" text, "college" text );
SELECT "college" FROM "atlanta_falcons_draft_history" WHERE "overall">158 AND "name"='travian robertson';
2-15198842-47
Which round's name is Jonathan Massaquoi?
CREATE TABLE "atlanta_falcons_draft_history" ( "round" real, "pick_num" real, "overall" real, "name" text, "position" text, "college" text );
SELECT "round" FROM "atlanta_falcons_draft_history" WHERE "name"='jonathan massaquoi';
2-15198842-47
What is the mean round number for center position when the pick number is less than 23?
CREATE TABLE "atlanta_falcons_draft_history" ( "round" real, "pick_num" real, "overall" real, "name" text, "position" text, "college" text );
SELECT AVG("round") FROM "atlanta_falcons_draft_history" WHERE "position"='center' AND "pick_num"<23;
2-15198842-47
Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th?
CREATE TABLE "see_also" ( "rank" text, "common_of" text, "population" real, "area_km_2" real, "density_inhabitants_km_2" real, "altitude_mslm" real );
SELECT SUM("altitude_mslm") FROM "see_also" WHERE "density_inhabitants_km_2"<1233 AND "rank"='9th';
2-1449176-1
Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri?
CREATE TABLE "see_also" ( "rank" text, "common_of" text, "population" real, "area_km_2" real, "density_inhabitants_km_2" real, "altitude_mslm" real );
SELECT SUM("altitude_mslm") FROM "see_also" WHERE "density_inhabitants_km_2"<1467.5 AND "common_of"='moncalieri';
2-1449176-1
How much Area (km 2) has a Common of collegno, and a Population smaller than 50137?
CREATE TABLE "see_also" ( "rank" text, "common_of" text, "population" real, "area_km_2" real, "density_inhabitants_km_2" real, "altitude_mslm" real );
SELECT COUNT("area_km_2") FROM "see_also" WHERE "common_of"='collegno' AND "population"<50137;
2-1449176-1
How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2?
CREATE TABLE "see_also" ( "rank" text, "common_of" text, "population" real, "area_km_2" real, "density_inhabitants_km_2" real, "altitude_mslm" real );
SELECT COUNT("population") FROM "see_also" WHERE "altitude_mslm">302 AND "area_km_2"=29.2;
2-1449176-1
Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?
CREATE TABLE "see_also" ( "rank" text, "common_of" text, "population" real, "area_km_2" real, "density_inhabitants_km_2" real, "altitude_mslm" real );
SELECT MAX("population") FROM "see_also" WHERE "altitude_mslm"<229 AND "area_km_2">32.7;
2-1449176-1
what builder launched 20 jun 1953?
CREATE TABLE "ships" ( "ship" text, "original_pennant_number" text, "builder" text, "laid_down" text, "launched" text, "commissioned" text );
SELECT "builder" FROM "ships" WHERE "launched"='20 jun 1953';
2-13631836-1
what is the commissioned date with laid down of 17 dec 1951?
CREATE TABLE "ships" ( "ship" text, "original_pennant_number" text, "builder" text, "laid_down" text, "launched" text, "commissioned" text );
SELECT "commissioned" FROM "ships" WHERE "laid_down"='17 dec 1951';
2-13631836-1
What round was matt brait?
CREATE TABLE "draft_picks" ( "round" text, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "round" FROM "draft_picks" WHERE "player"='matt brait';
2-14344187-13
Which player is in position center for round 2?
CREATE TABLE "draft_picks" ( "round" text, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "player" FROM "draft_picks" WHERE "round"='2' AND "position"='center';
2-14344187-13
What position is Sweden in round 2?
CREATE TABLE "draft_picks" ( "round" text, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "position" FROM "draft_picks" WHERE "nationality"='sweden' AND "round"='2';
2-14344187-13
What is the height of number 52?
CREATE TABLE "middle_tennessee" ( "position" text, "number" real, "name" text, "height" text, "weight" real, "class" text, "hometown" text, "games" real );
SELECT "height" FROM "middle_tennessee" WHERE "number"=52;
2-14624447-26
What number is Tony Dixon?
CREATE TABLE "middle_tennessee" ( "position" text, "number" real, "name" text, "height" text, "weight" real, "class" text, "hometown" text, "games" real );
SELECT "number" FROM "middle_tennessee" WHERE "name"='tony dixon';
2-14624447-26
What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?
CREATE TABLE "results" ( "draw" real, "language" text, "artist" text, "song" text, "english_translation" text, "place" real, "points" real );
SELECT AVG("draw") FROM "results" WHERE "language"='swedish' AND "points"<10;
2-149693-1
Which Economic Class has a Barangay of imelda bliss village?
CREATE TABLE "barangays" ( "barangay" text, "population_2010" real, "economic_class" text, "land_area_in_sqm" real, "punong_barangay_term_2010_2013" text );
SELECT "economic_class" FROM "barangays" WHERE "barangay"='imelda bliss village';
2-1440338-1
Which Economic Class has a Population (2010) larger than 1,265, and a Barangay of capellan?
CREATE TABLE "barangays" ( "barangay" text, "population_2010" real, "economic_class" text, "land_area_in_sqm" real, "punong_barangay_term_2010_2013" text );
SELECT "economic_class" FROM "barangays" WHERE "population_2010">'1,265' AND "barangay"='capellan';
2-1440338-1
What 1997 has grand slams for the 1999?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text );
SELECT "1997" FROM "singles_performance_timeline" WHERE "1999"='grand slams';
2-1439769-8
What 1992 has atp masters series for the 1995?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text );
SELECT "1992" FROM "singles_performance_timeline" WHERE "1995"='atp masters series';
2-1439769-8
What 1995 has 1r as the 1999, and a 1998 of 4r?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text );
SELECT "1995" FROM "singles_performance_timeline" WHERE "1999"='1r' AND "1998"='4r';
2-1439769-8
What 1998 has 2r as a 1993, and 1r as a 1990?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text );
SELECT "1998" FROM "singles_performance_timeline" WHERE "1993"='2r' AND "1990"='1r';
2-1439769-8
What 1997, has qf as a 1994, and 1r as a 1999?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text );
SELECT "1997" FROM "singles_performance_timeline" WHERE "1994"='qf' AND "1999"='1r';
2-1439769-8
What 1993 has 2r as a 1994, and 1r as a 1995?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text );
SELECT "1993" FROM "singles_performance_timeline" WHERE "1994"='2r' AND "1995"='1r';
2-1439769-8
Which Driver has a Sponsor of pdvsa?
CREATE TABLE "team_and_driver_lineup_prior_to_unificat" ( "team" text, "no_num" real, "driver_s" text, "sponsor_s" text, "test_drivers" text );
SELECT "driver_s" FROM "team_and_driver_lineup_prior_to_unificat" WHERE "sponsor_s"='pdvsa';
2-14097706-2
What are the colours of the team with benedikt guðmundsson as head coach?
CREATE TABLE "teams" ( "team" text, "city_region" text, "arena" text, "colours" text, "head_coach" text );
SELECT "colours" FROM "teams" WHERE "head_coach"='benedikt guðmundsson';
2-13566745-1
What is the city and region of the team in the dalhús arena?
CREATE TABLE "teams" ( "team" text, "city_region" text, "arena" text, "colours" text, "head_coach" text );
SELECT "city_region" FROM "teams" WHERE "arena"='dalhús';
2-13566745-1
What is the arena in Borgarnes?
CREATE TABLE "teams" ( "team" text, "city_region" text, "arena" text, "colours" text, "head_coach" text );
SELECT "arena" FROM "teams" WHERE "city_region"='borgarnes';
2-13566745-1
What team is in the toyota höllin arena?
CREATE TABLE "teams" ( "team" text, "city_region" text, "arena" text, "colours" text, "head_coach" text );
SELECT "team" FROM "teams" WHERE "arena"='toyota höllin';
2-13566745-1
What team is in the dhl-höllin arena?
CREATE TABLE "teams" ( "team" text, "city_region" text, "arena" text, "colours" text, "head_coach" text );
SELECT "team" FROM "teams" WHERE "arena"='dhl-höllin';
2-13566745-1
What are the colors of the team in Borgarnes?
CREATE TABLE "teams" ( "team" text, "city_region" text, "arena" text, "colours" text, "head_coach" text );
SELECT "colours" FROM "teams" WHERE "city_region"='borgarnes';
2-13566745-1
What is the number of points for the team with 49 tries against and 14 lost?
CREATE TABLE "2009_10_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "points_against" FROM "2009_10_table" WHERE "tries_against"='49' AND "lost"='14';
2-13940275-3
What is the losing bonus for the team that has 33 tries against and 5 lost?
CREATE TABLE "2009_10_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "losing_bonus" FROM "2009_10_table" WHERE "tries_against"='33' AND "lost"='5';
2-13940275-3
What is the tries against for the team that has a losing bonus?
CREATE TABLE "2009_10_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "tries_against" FROM "2009_10_table" WHERE "losing_bonus"='losing bonus';
2-13940275-3
What is the number of tries for the team that has 22 plays with 33 tries against and 60 points?
CREATE TABLE "2009_10_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "tries_for" FROM "2009_10_table" WHERE "played"='22' AND "tries_against"='33' AND "points"='60';
2-13940275-3
What is the losing bonus of the team with 22 pays and 428 points against?
CREATE TABLE "2009_10_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "losing_bonus" FROM "2009_10_table" WHERE "played"='22' AND "points_against"='428';
2-13940275-3
Name the years for spain with 215 goals
CREATE TABLE "all_time_overall_scorers" ( "ranking" real, "nationality" text, "name" text, "goals" real, "years" text );
SELECT "years" FROM "all_time_overall_scorers" WHERE "nationality"='spain' AND "goals"=215;
2-14707564-7
Name the most goals for josep samitier
CREATE TABLE "all_time_overall_scorers" ( "ranking" real, "nationality" text, "name" text, "goals" real, "years" text );
SELECT MAX("goals") FROM "all_time_overall_scorers" WHERE "name"='josep samitier';
2-14707564-7
Which Record has a December smaller than 22 and a Score of 4–3?
CREATE TABLE "regular_season" ( "game" real, "december" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT "record" FROM "regular_season" WHERE "december"<22 AND "score"='4–3';
2-14208850-4
Which Score has a Record of 15–12–2?
CREATE TABLE "regular_season" ( "game" real, "december" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT "score" FROM "regular_season" WHERE "record"='15–12–2';
2-14208850-4
Which December has a Game of 37 and Points smaller than 47?
CREATE TABLE "regular_season" ( "game" real, "december" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT AVG("december") FROM "regular_season" WHERE "game"=37 AND "points"<47;
2-14208850-4
Which Points have a December smaller than 6, and a Score of 1–1 ot, and a Game smaller than 28?
CREATE TABLE "regular_season" ( "game" real, "december" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT MIN("points") FROM "regular_season" WHERE "december"<6 AND "score"='1–1 ot' AND "game"<28;
2-14208850-4
Which Game has a Score of 4–0 and Points of 44?
CREATE TABLE "regular_season" ( "game" real, "december" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT "game" FROM "regular_season" WHERE "score"='4–0' AND "points"=44;
2-14208850-4
Which Previous conference has a Year joined smaller than 1976, and an IHSAA Class of A?
CREATE TABLE "membership" ( "school" text, "location" text, "mascot" text, "enrollment" real, "ihsaa_class" text, "num_county" text, "year_joined" real, "previous_conference" text );
SELECT "previous_conference" FROM "membership" WHERE "year_joined"<1976 AND "ihsaa_class"='a';
2-15176211-1
Which Enrollment has a Mascot of norsemen?
CREATE TABLE "membership" ( "school" text, "location" text, "mascot" text, "enrollment" real, "ihsaa_class" text, "num_county" text, "year_joined" real, "previous_conference" text );
SELECT SUM("enrollment") FROM "membership" WHERE "mascot"='norsemen';
2-15176211-1
Which Mascot has a Previous conference of independents, and a Location of akron?
CREATE TABLE "membership" ( "school" text, "location" text, "mascot" text, "enrollment" real, "ihsaa_class" text, "num_county" text, "year_joined" real, "previous_conference" text );
SELECT "mascot" FROM "membership" WHERE "previous_conference"='independents' AND "location"='akron';
2-15176211-1
Which IHSAA Class has a Mascot of wildcats?
CREATE TABLE "membership" ( "school" text, "location" text, "mascot" text, "enrollment" real, "ihsaa_class" text, "num_county" text, "year_joined" real, "previous_conference" text );
SELECT "ihsaa_class" FROM "membership" WHERE "mascot"='wildcats';
2-15176211-1
Which School in Wabash has a Mascot of knights?
CREATE TABLE "membership" ( "school" text, "location" text, "mascot" text, "enrollment" real, "ihsaa_class" text, "num_county" text, "year_joined" real, "previous_conference" text );
SELECT "school" FROM "membership" WHERE "location"='wabash' AND "mascot"='knights';
2-15176211-1
Which Win percentage has a Name of red kelly?
CREATE TABLE "list" ( "name" text, "term" text, "games" real, "record_w_l_t_otl" text, "points" real, "win_percentage" real );
SELECT SUM("win_percentage") FROM "list" WHERE "name"='red kelly';
2-13834044-2
Which Name has Games of 105?
CREATE TABLE "list" ( "name" text, "term" text, "games" real, "record_w_l_t_otl" text, "points" real, "win_percentage" real );
SELECT "name" FROM "list" WHERE "games"=105;
2-13834044-2
Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40?
CREATE TABLE "list" ( "name" text, "term" text, "games" real, "record_w_l_t_otl" text, "points" real, "win_percentage" real );
SELECT AVG("win_percentage") FROM "list" WHERE "points"<472 AND "record_w_l_t_otl"='140–220–40';
2-13834044-2
Which round has an H/A of A with Notts County as opponents?
CREATE TABLE "fa_cup" ( "date" text, "round" text, "opponents" text, "h_a" text, "result_f_a" text, "attendance" real );
SELECT "round" FROM "fa_cup" WHERE "h_a"='a' AND "opponents"='notts county';
2-15080761-3
What was the Premiership Years that had in the Competition of 1983-1992?
CREATE TABLE "previous_clubs" ( "club" text, "nickname" text, "years_in_competition" text, "no_of_premierships" real, "premiership_years" text );
SELECT "premiership_years" FROM "previous_clubs" WHERE "years_in_competition"='1983-1992';
2-13887110-3
What was the Years in competition that had a Premiership of 1982, 1984, 1999, 2002-03, 2008-09-10?
CREATE TABLE "previous_clubs" ( "club" text, "nickname" text, "years_in_competition" text, "no_of_premierships" real, "premiership_years" text );
SELECT "years_in_competition" FROM "previous_clubs" WHERE "premiership_years"='1982, 1984, 1999, 2002-03, 2008-09-10';
2-13887110-3
What is the Nickname in the Competition of 1982-1994?
CREATE TABLE "previous_clubs" ( "club" text, "nickname" text, "years_in_competition" text, "no_of_premierships" real, "premiership_years" text );
SELECT "nickname" FROM "previous_clubs" WHERE "years_in_competition"='1982-1994';
2-13887110-3
What was the Nickname that had a No. 0, and Years in Competition of 1982-2003?
CREATE TABLE "previous_clubs" ( "club" text, "nickname" text, "years_in_competition" text, "no_of_premierships" real, "premiership_years" text );
SELECT "nickname" FROM "previous_clubs" WHERE "no_of_premierships"=0 AND "years_in_competition"='1982-2003';
2-13887110-3
Which highest Points has a Score of 1–1 ot?
CREATE TABLE "regular_season" ( "game" real, "january" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT MAX("points") FROM "regular_season" WHERE "score"='1–1 ot';
2-14208842-6
Which College/Junior/Club team has a Round of 6?
CREATE TABLE "nhl_draft" ( "round" real, "pick" real, "player" text, "nationality" text, "college_junior_club_team" text );
SELECT "college_junior_club_team" FROM "nhl_draft" WHERE "round"=6;
2-14487941-2
What was the record on April 16?
CREATE TABLE "chicago_black_hawks_4_detroit_red_wings_" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "record" FROM "chicago_black_hawks_4_detroit_red_wings_" WHERE "date"='april 16';
2-13909503-4
What was the record on April 8?
CREATE TABLE "chicago_black_hawks_4_detroit_red_wings_" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "record" FROM "chicago_black_hawks_4_detroit_red_wings_" WHERE "date"='april 8';
2-13909503-4
What date was the visitor chicago black hawks, and a Record of 1-1?
CREATE TABLE "chicago_black_hawks_4_detroit_red_wings_" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "date" FROM "chicago_black_hawks_4_detroit_red_wings_" WHERE "visitor"='chicago black hawks' AND "record"='1-1';
2-13909503-4
Studio host of jimmy myers had what play by play?
CREATE TABLE "2000s" ( "year" text, "flagship_station" text, "play_by_play" text, "color_commentator_s" text, "studio_host" text );
SELECT "play_by_play" FROM "2000s" WHERE "studio_host"='jimmy myers';
2-14902507-8
Play-by-play of sean grande, and a Year of 2004-05 had what studio host?
CREATE TABLE "2000s" ( "year" text, "flagship_station" text, "play_by_play" text, "color_commentator_s" text, "studio_host" text );
SELECT "studio_host" FROM "2000s" WHERE "play_by_play"='sean grande' AND "year"='2004-05';
2-14902507-8
Year of 2006-07 had what studio host?
CREATE TABLE "2000s" ( "year" text, "flagship_station" text, "play_by_play" text, "color_commentator_s" text, "studio_host" text );
SELECT "studio_host" FROM "2000s" WHERE "year"='2006-07';
2-14902507-8
Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host?
CREATE TABLE "2000s" ( "year" text, "flagship_station" text, "play_by_play" text, "color_commentator_s" text, "studio_host" text );
SELECT "studio_host" FROM "2000s" WHERE "play_by_play"='sean grande' AND "flagship_station"='wrko' AND "year"='2005-06';
2-14902507-8
Studio host of john ryder, and a Year of 2007-08 had what play by play?
CREATE TABLE "2000s" ( "year" text, "flagship_station" text, "play_by_play" text, "color_commentator_s" text, "studio_host" text );
SELECT "play_by_play" FROM "2000s" WHERE "studio_host"='john ryder' AND "year"='2007-08';
2-14902507-8
Play-by-play of sean grande, and a Flagship Station of wrko involved what color commentator?
CREATE TABLE "2000s" ( "year" text, "flagship_station" text, "play_by_play" text, "color_commentator_s" text, "studio_host" text );
SELECT "color_commentator_s" FROM "2000s" WHERE "play_by_play"='sean grande' AND "flagship_station"='wrko';
2-14902507-8
What was the value in 2011 for United States?
CREATE TABLE "top_five_natural_honey_producing_countri" ( "rank" text, "country" text, "2009" text, "2010" text, "2011" text );
SELECT "2011" FROM "top_five_natural_honey_producing_countri" WHERE "country"='united states';
2-14361-2
What was the value in 2011 when value in 2009 was 82,003?
CREATE TABLE "top_five_natural_honey_producing_countri" ( "rank" text, "country" text, "2009" text, "2010" text, "2011" text );
SELECT "2011" FROM "top_five_natural_honey_producing_countri" WHERE "2009"='82,003';
2-14361-2
What country was rank 1?
CREATE TABLE "top_five_natural_honey_producing_countri" ( "rank" text, "country" text, "2009" text, "2010" text, "2011" text );
SELECT "country" FROM "top_five_natural_honey_producing_countri" WHERE "rank"='1';
2-14361-2
What country was rank 4?
CREATE TABLE "top_five_natural_honey_producing_countri" ( "rank" text, "country" text, "2009" text, "2010" text, "2011" text );
SELECT "country" FROM "top_five_natural_honey_producing_countri" WHERE "rank"='4';
2-14361-2
Games started of 4 is in what hometown?
CREATE TABLE "varsity_letter_winners" ( "player" text, "position" text, "games_started" text, "hometown" text, "height" text, "weight" real, "class" text, "previous_experience" text );
SELECT "hometown" FROM "varsity_letter_winners" WHERE "games_started"='4';
2-14342367-13
Weight larger than 180, and a Player of charles b. carter is what previous experience?
CREATE TABLE "varsity_letter_winners" ( "player" text, "position" text, "games_started" text, "hometown" text, "height" text, "weight" real, "class" text, "previous_experience" text );
SELECT "previous_experience" FROM "varsity_letter_winners" WHERE "weight">180 AND "player"='charles b. carter';
2-14342367-13
Height of 5' 10", and a Games started of 7 involves which hometown?
CREATE TABLE "varsity_letter_winners" ( "player" text, "position" text, "games_started" text, "hometown" text, "height" text, "weight" real, "class" text, "previous_experience" text );
SELECT "hometown" FROM "varsity_letter_winners" WHERE "height"='5'' 10\"' AND "games_started"='7';
2-14342367-13
Player of herbert s. graver has what position?
CREATE TABLE "varsity_letter_winners" ( "player" text, "position" text, "games_started" text, "hometown" text, "height" text, "weight" real, "class" text, "previous_experience" text );
SELECT "position" FROM "varsity_letter_winners" WHERE "player"='herbert s. graver';
2-14342367-13
Position of fullback has what highest weight?
CREATE TABLE "varsity_letter_winners" ( "player" text, "position" text, "games_started" text, "hometown" text, "height" text, "weight" real, "class" text, "previous_experience" text );
SELECT MAX("weight") FROM "varsity_letter_winners" WHERE "position"='fullback';
2-14342367-13
what is the callsign whtat uses 7bu?
CREATE TABLE "defunct_callsigns" ( "callsign" text, "area_served" text, "frequency" text, "band" text, "on_air_id" text, "purpose" text );
SELECT "callsign" FROM "defunct_callsigns" WHERE "on_air_id"='7bu';
2-14155567-1
What is the highest rank for ben crenshaw after winning more than 14 times?
CREATE TABLE "leaders" ( "rank" real, "player" text, "country" text, "earnings" real, "wins" real );
SELECT MAX("rank") FROM "leaders" WHERE "player"='ben crenshaw' AND "wins">14;
2-14639860-4
What is the lowest number of wins for ben crenshaw?
CREATE TABLE "leaders" ( "rank" real, "player" text, "country" text, "earnings" real, "wins" real );
SELECT MIN("wins") FROM "leaders" WHERE "player"='ben crenshaw';
2-14639860-4
What player has 14 wins?
CREATE TABLE "leaders" ( "rank" real, "player" text, "country" text, "earnings" real, "wins" real );
SELECT "player" FROM "leaders" WHERE "wins"=14;
2-14639860-4
What is the 1995 value with of the 1993 ATP Masters Series?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "career_sr" text, "career_win_loss" text );
SELECT "1995" FROM "doubles_performance_timeline" WHERE "1993"='atp masters series';
2-13662140-2
What is the 1993 value of the 1997 Grand Slams?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "career_sr" text, "career_win_loss" text );
SELECT "1993" FROM "doubles_performance_timeline" WHERE "1997"='grand slams';
2-13662140-2
What is the 1998 value with A in 1995, A in 1993, and 1r in 1996?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "career_sr" text, "career_win_loss" text );
SELECT "1998" FROM "doubles_performance_timeline" WHERE "1995"='a' AND "1993"='a' AND "1996"='1r';
2-13662140-2
How many games does team Czechoslovakia have that had a drawn greater than 0?
CREATE TABLE "first_round" ( "team" text, "games" real, "drawn" real, "lost" real, "points_difference" text, "points" real );
SELECT MAX("games") FROM "first_round" WHERE "team"='czechoslovakia' AND "drawn">0;
2-14195712-1
Which Prime Minister's served a term of 344 days?
CREATE TABLE "list_of_ministers_for_employment" ( "order" text, "minister" text, "party" text, "prime_minister" text, "term_start" text, "term_end" text, "term_in_office" text );
SELECT "prime_minister" FROM "list_of_ministers_for_employment" WHERE "term_in_office"='344 days';
2-13627078-1
Who was the Minister that served for 307 days?
CREATE TABLE "list_of_ministers_for_employment" ( "order" text, "minister" text, "party" text, "prime_minister" text, "term_start" text, "term_end" text, "term_in_office" text );
SELECT "minister" FROM "list_of_ministers_for_employment" WHERE "term_in_office"='307 days';
2-13627078-1
what ceremony did big titty milfs work in
CREATE TABLE "awards_and_nominations" ( "year" real, "ceremony" text, "result" text, "award" text, "work" text );
SELECT "ceremony" FROM "awards_and_nominations" WHERE "work"='big titty milfs';
2-15029747-1
What was the end result for 28 February 2001?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "result" FROM "international_goals" WHERE "date"='28 february 2001';
2-1386277-1