question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many episodes were in the season that first aired on September 22, 1989?
CREATE TABLE "ratings" ( "season" text, "episodes" real, "first_airdate" text, "last_airdate" text, "nielsen_ranking" text );
SELECT "episodes" FROM "ratings" WHERE "first_airdate"='september 22, 1989';
2-1485652-1
How many episodes were in the season that ended on April 29, 1986?
CREATE TABLE "ratings" ( "season" text, "episodes" real, "first_airdate" text, "last_airdate" text, "nielsen_ranking" text );
SELECT AVG("episodes") FROM "ratings" WHERE "last_airdate"='april 29, 1986';
2-1485652-1
Where the ship is Dahlgren what is the build as?
CREATE TABLE "references" ( "ship" text, "built_as" text, "reclassified_as" text, "class" text, "commissioned_decommissioned" text, "nvr_link" text );
SELECT "built_as" FROM "references" WHERE "ship"='dahlgren';
2-15037417-1
Where the NRV link is CGN38, what is the reclassified as?
CREATE TABLE "references" ( "ship" text, "built_as" text, "reclassified_as" text, "class" text, "commissioned_decommissioned" text, "nvr_link" text );
SELECT "reclassified_as" FROM "references" WHERE "nvr_link"='cgn38';
2-15037417-1
Where the built as is DLG-23, what is the class?
CREATE TABLE "references" ( "ship" text, "built_as" text, "reclassified_as" text, "class" text, "commissioned_decommissioned" text, "nvr_link" text );
SELECT "class" FROM "references" WHERE "built_as"='dlg-23';
2-15037417-1
What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT SUM("total") FROM "medal_table" WHERE "rank"='6' AND "bronze"<2;
2-14934309-3
How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("gold") FROM "medal_table" WHERE "bronze">12 AND "total"<124;
2-14934309-3
December smaller than 21, and a Opponent of buffalo sabres had what score?
CREATE TABLE "schedule_and_results" ( "game" real, "december" real, "opponent" text, "score" text, "record" text );
SELECT "score" FROM "schedule_and_results" WHERE "december"<21 AND "opponent"='buffalo sabres';
2-13991411-4
Score of 8 - 1 happened on what day in December?
CREATE TABLE "schedule_and_results" ( "game" real, "december" real, "opponent" text, "score" text, "record" text );
SELECT "december" FROM "schedule_and_results" WHERE "score"='8 - 1';
2-13991411-4
December larger than 21, and a Opponent of Pittsburgh penguins had what average game?
CREATE TABLE "schedule_and_results" ( "game" real, "december" real, "opponent" text, "score" text, "record" text );
SELECT AVG("game") FROM "schedule_and_results" WHERE "december">21 AND "opponent"='pittsburgh penguins';
2-13991411-4
December smaller than 14, and a Game smaller than 28, and a Score of 6 - 6 involved what opponent?
CREATE TABLE "schedule_and_results" ( "game" real, "december" real, "opponent" text, "score" text, "record" text );
SELECT "opponent" FROM "schedule_and_results" WHERE "december"<14 AND "game"<28 AND "score"='6 - 6';
2-13991411-4
What is the date that the item was laid down if it was launched on 1899-04-25?
CREATE TABLE "list_of_ships" ( "kanji" text, "name_translation" text, "builder" text, "laid_down" text, "launched" text, "completed" text );
SELECT "laid_down" FROM "list_of_ships" WHERE "launched"='1899-04-25';
2-1445934-1
Which builder is associated with ikazuchi "thunder"?
CREATE TABLE "list_of_ships" ( "kanji" text, "name_translation" text, "builder" text, "laid_down" text, "launched" text, "completed" text );
SELECT "builder" FROM "list_of_ships" WHERE "name_translation"='ikazuchi \"thunder\"';
2-1445934-1
Which builder has the the kanji of 曙?
CREATE TABLE "list_of_ships" ( "kanji" text, "name_translation" text, "builder" text, "laid_down" text, "launched" text, "completed" text );
SELECT "builder" FROM "list_of_ships" WHERE "kanji"='曙';
2-1445934-1
Which Density per km² is the lowest one that has a Number (map) smaller than 13, and an Area in km² of 11.1?
CREATE TABLE "list_of_montreal_boroughs" ( "number_map" real, "borough" text, "population_canada_2011_census" real, "area_in_km" real, "density_per_km" real );
SELECT MIN("density_per_km") FROM "list_of_montreal_boroughs" WHERE "number_map"<13 AND "area_in_km"=11.1;
2-1523275-1
Which Area in km² has a Population Canada 2011 Census larger than 18,097, and a Borough of verdun?
CREATE TABLE "list_of_montreal_boroughs" ( "number_map" real, "borough" text, "population_canada_2011_census" real, "area_in_km" real, "density_per_km" real );
SELECT "area_in_km" FROM "list_of_montreal_boroughs" WHERE "population_canada_2011_census">'18,097' AND "borough"='verdun';
2-1523275-1
How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038?
CREATE TABLE "list_of_montreal_boroughs" ( "number_map" real, "borough" text, "population_canada_2011_census" real, "area_in_km" real, "density_per_km" real );
SELECT COUNT("number_map") FROM "list_of_montreal_boroughs" WHERE "area_in_km">13.5 AND "population_canada_2011_census"='134,038';
2-1523275-1
Which Number (map) is the lowest one that has a Area in km² of 9.7, and a Population Canada 2011 Census larger than 66,158?
CREATE TABLE "list_of_montreal_boroughs" ( "number_map" real, "borough" text, "population_canada_2011_census" real, "area_in_km" real, "density_per_km" real );
SELECT MIN("number_map") FROM "list_of_montreal_boroughs" WHERE "area_in_km"=9.7 AND "population_canada_2011_census">'66,158';
2-1523275-1
Attendance of 19,741 had what average week?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT AVG("week") FROM "schedule" WHERE "attendance"='19,741';
2-15124563-1
Attendance of 29,000 occurred on what date?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "date" FROM "schedule" WHERE "attendance"='29,000';
2-15124563-1
Opponent of Philadelphia eagles had what attendance?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "opponent"='philadelphia eagles';
2-15124563-1
What day did Alex Best exit?
CREATE TABLE "series_3_2004" ( "celebrity" text, "famous_for" text, "entered" text, "exited" text, "finished" text );
SELECT "exited" FROM "series_3_2004" WHERE "celebrity"='alex best';
2-14345690-4
What place did the celebrity who is famous for being an athlete finish?
CREATE TABLE "series_3_2004" ( "celebrity" text, "famous_for" text, "entered" text, "exited" text, "finished" text );
SELECT "finished" FROM "series_3_2004" WHERE "famous_for"='athlete';
2-14345690-4
What place did the singer in atomic kitten finish?
CREATE TABLE "series_3_2004" ( "celebrity" text, "famous_for" text, "entered" text, "exited" text, "finished" text );
SELECT "finished" FROM "series_3_2004" WHERE "famous_for"='singer in atomic kitten';
2-14345690-4
Who was the celebrity who exited on day 13?
CREATE TABLE "series_3_2004" ( "celebrity" text, "famous_for" text, "entered" text, "exited" text, "finished" text );
SELECT "celebrity" FROM "series_3_2004" WHERE "exited"='day 13';
2-14345690-4
Who was the celebrity who finished in 7th place?
CREATE TABLE "series_3_2004" ( "celebrity" text, "famous_for" text, "entered" text, "exited" text, "finished" text );
SELECT "celebrity" FROM "series_3_2004" WHERE "finished"='7th';
2-14345690-4
Name of gilmar, and a Caps smaller than 94 had how many highest goals?
CREATE TABLE "most_capped_players" ( "name" text, "caps" real, "goals" real, "first_cap" text, "latest_cap" text );
SELECT MAX("goals") FROM "most_capped_players" WHERE "name"='gilmar' AND "caps"<94;
2-149286-9
Caps of 93 had how many goals?
CREATE TABLE "most_capped_players" ( "name" text, "caps" real, "goals" real, "first_cap" text, "latest_cap" text );
SELECT "goals" FROM "most_capped_players" WHERE "caps"=93;
2-149286-9
Latest cap of september 5, 2011 had how many goals?
CREATE TABLE "most_capped_players" ( "name" text, "caps" real, "goals" real, "first_cap" text, "latest_cap" text );
SELECT "goals" FROM "most_capped_players" WHERE "latest_cap"='september 5, 2011';
2-149286-9
Name of rivelino had how many highest caps?
CREATE TABLE "most_capped_players" ( "name" text, "caps" real, "goals" real, "first_cap" text, "latest_cap" text );
SELECT MAX("caps") FROM "most_capped_players" WHERE "name"='rivelino';
2-149286-9
Which athlete played at the Birmingham venue?
CREATE TABLE "women_indoor" ( "pos" real, "mark" text, "athlete" text, "venue" text, "date" text );
SELECT "athlete" FROM "women_indoor" WHERE "venue"='birmingham';
2-13791-5
Which Frequency has a Webcast of •, and a Callsign of xemr?
CREATE TABLE "long_range_am_stations" ( "frequency" real, "callsign" text, "brand" text, "city_of_license" text, "website" text, "webcast" text );
SELECT AVG("frequency") FROM "long_range_am_stations" WHERE "webcast"='•' AND "callsign"='xemr';
2-1436627-6
Which Website has a Frequency smaller than 760 and a Callsign of kkyx?
CREATE TABLE "long_range_am_stations" ( "frequency" real, "callsign" text, "brand" text, "city_of_license" text, "website" text, "webcast" text );
SELECT "website" FROM "long_range_am_stations" WHERE "frequency"<760 AND "callsign"='kkyx';
2-1436627-6
Which Webcast has a Callsign of kgbt?
CREATE TABLE "long_range_am_stations" ( "frequency" real, "callsign" text, "brand" text, "city_of_license" text, "website" text, "webcast" text );
SELECT "webcast" FROM "long_range_am_stations" WHERE "callsign"='kgbt';
2-1436627-6
Which Frequency has a Website of •, and a Webcast of •in san antonio?
CREATE TABLE "long_range_am_stations" ( "frequency" real, "callsign" text, "brand" text, "city_of_license" text, "website" text, "webcast" text );
SELECT AVG("frequency") FROM "long_range_am_stations" WHERE "website"='•' AND "webcast"='•' AND "city_of_license"='san antonio';
2-1436627-6
What years did the player play when he scored 78 points and 22 goals?
CREATE TABLE "all_time_career_leaders" ( "rank" text, "player" text, "goals" text, "assists" text, "points" text, "years" text );
SELECT "years" FROM "all_time_career_leaders" WHERE "points"='78' AND "goals"='22';
2-14080161-3
How many goals did Joey Worthen have when he had 15 assists?
CREATE TABLE "all_time_career_leaders" ( "rank" text, "player" text, "goals" text, "assists" text, "points" text, "years" text );
SELECT "goals" FROM "all_time_career_leaders" WHERE "assists"='15' AND "player"='joey worthen';
2-14080161-3
How many goals were scored when 158 points were collected?
CREATE TABLE "all_time_career_leaders" ( "rank" text, "player" text, "goals" text, "assists" text, "points" text, "years" text );
SELECT "goals" FROM "all_time_career_leaders" WHERE "points"='158';
2-14080161-3
What years had players who scored 36 goals?
CREATE TABLE "all_time_career_leaders" ( "rank" text, "player" text, "goals" text, "assists" text, "points" text, "years" text );
SELECT "years" FROM "all_time_career_leaders" WHERE "goals"='36';
2-14080161-3
What was the rank of the player who had 13 assists?
CREATE TABLE "all_time_career_leaders" ( "rank" text, "player" text, "goals" text, "assists" text, "points" text, "years" text );
SELECT "rank" FROM "all_time_career_leaders" WHERE "assists"='13';
2-14080161-3
What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT SUM("week") FROM "schedule" WHERE "opponent"='houston oilers' AND "attendance">'54,582';
2-15085755-2
What is the highest attendance for week 1?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT MAX("attendance") FROM "schedule" WHERE "week"<1;
2-15085755-2
What is the total number in attendance for the game after week 8 that was on November 25, 1979?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT COUNT("attendance") FROM "schedule" WHERE "week">8 AND "date"='november 25, 1979';
2-15085755-2
Which Surface has a Score of 2009 wta tour?
CREATE TABLE "top_10_wins_per_season" ( "player" text, "ranking" text, "event" text, "surface" text, "round" text, "score" text );
SELECT "surface" FROM "top_10_wins_per_season" WHERE "score"='2009 wta tour';
2-15230658-5
Which Round has a Ranking of 2008 wta tour?
CREATE TABLE "top_10_wins_per_season" ( "player" text, "ranking" text, "event" text, "surface" text, "round" text, "score" text );
SELECT "round" FROM "top_10_wins_per_season" WHERE "ranking"='2008 wta tour';
2-15230658-5
Which Surface has a Round of 4th round, and a Player of maria sharapova?
CREATE TABLE "top_10_wins_per_season" ( "player" text, "ranking" text, "event" text, "surface" text, "round" text, "score" text );
SELECT "surface" FROM "top_10_wins_per_season" WHERE "round"='4th round' AND "player"='maria sharapova';
2-15230658-5
Which Player has a Score of 6–4, 7–6 (7–5)?
CREATE TABLE "top_10_wins_per_season" ( "player" text, "ranking" text, "event" text, "surface" text, "round" text, "score" text );
SELECT "player" FROM "top_10_wins_per_season" WHERE "score"='6–4, 7–6 (7–5)';
2-15230658-5
Which Round has a Player of anna chakvetadze?
CREATE TABLE "top_10_wins_per_season" ( "player" text, "ranking" text, "event" text, "surface" text, "round" text, "score" text );
SELECT "round" FROM "top_10_wins_per_season" WHERE "player"='anna chakvetadze';
2-15230658-5
Record of 89-67 had what loss?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "loss" FROM "game_log" WHERE "record"='89-67';
2-13955746-9
Score of 3 - 2 had what record?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "record" FROM "game_log" WHERE "score"='3 - 2';
2-13955746-9
Opponent of @ blue jays, and a Loss of lyon (5-4) had what opponent?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "record" FROM "game_log" WHERE "opponent"='@ blue jays' AND "loss"='lyon (5-4)';
2-13955746-9
Loss of lyon (5-4) had what score?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "score" FROM "game_log" WHERE "loss"='lyon (5-4)';
2-13955746-9
Loss of finley (8-7) had what record?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "record" FROM "game_log" WHERE "loss"='finley (8-7)';
2-13955746-9
Opponent of @ blue jays, and a Date of october 6 had what score?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "score" FROM "game_log" WHERE "opponent"='@ blue jays' AND "date"='october 6';
2-13955746-9
What is the score for game 5?
CREATE TABLE "playoffs" ( "game" real, "date" text, "opponent" text, "score" text, "series" text );
SELECT "score" FROM "playoffs" WHERE "game"=5;
2-14208850-10
What is the score that has a game greater than 3, with buffalo sabres as the opponent?
CREATE TABLE "playoffs" ( "game" real, "date" text, "opponent" text, "score" text, "series" text );
SELECT "score" FROM "playoffs" WHERE "game">3 AND "opponent"='buffalo sabres';
2-14208850-10
What score has may 9 as the date?
CREATE TABLE "playoffs" ( "game" real, "date" text, "opponent" text, "score" text, "series" text );
SELECT "score" FROM "playoffs" WHERE "date"='may 9';
2-14208850-10
What was the score on October 16, 1983?
CREATE TABLE "singles_5_4_1" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent" text, "score" text );
SELECT "score" FROM "singles_5_4_1" WHERE "date"='october 16, 1983';
2-15057113-3
What was the score when she was a runner-up?
CREATE TABLE "singles_5_4_1" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent" text, "score" text );
SELECT "score" FROM "singles_5_4_1" WHERE "outcome"='runner-up';
2-15057113-3
What tournament was being played on August 11, 1984?
CREATE TABLE "singles_5_4_1" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent" text, "score" text );
SELECT "tournament" FROM "singles_5_4_1" WHERE "date"='august 11, 1984';
2-15057113-3
What was the Venue on June 8, 2005?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "venue" FROM "international_goals" WHERE "date"='june 8, 2005';
2-1385043-2
On what Date was the Venue Los Angeles?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "date" FROM "international_goals" WHERE "venue"='los angeles';
2-1385043-2
What was the Score on September 29, 2003?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "score" FROM "international_goals" WHERE "date"='september 29, 2003';
2-1385043-2
On what Date was the Venue in Carson?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "date" FROM "international_goals" WHERE "venue"='carson';
2-1385043-2
What was the competition on October 21, 2003?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "competition" FROM "international_goals" WHERE "date"='october 21, 2003';
2-1385043-2
What was the Competition on September 29, 2003?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "competition" FROM "international_goals" WHERE "date"='september 29, 2003';
2-1385043-2
What country has chunkath, mohan verghese as the name?
CREATE TABLE "complete_results" ( "position" real, "name" text, "country" text, "win_loss" text, "spread" real );
SELECT "country" FROM "complete_results" WHERE "name"='chunkath, mohan verghese';
2-14209484-1
What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name?
CREATE TABLE "complete_results" ( "position" real, "name" text, "country" text, "win_loss" text, "spread" real );
SELECT "position" FROM "complete_results" WHERE "spread">-319 AND "country"='united states' AND "win_loss"='11-13' AND "name"='gabriel, marty';
2-14209484-1
What name has a spread of 69?
CREATE TABLE "complete_results" ( "position" real, "name" text, "country" text, "win_loss" text, "spread" real );
SELECT "name" FROM "complete_results" WHERE "spread"=69;
2-14209484-1
Which Performer 2 has an Episode of 5?
CREATE TABLE "series_8" ( "date" text, "episode" real, "performer_1" text, "performer_2" text, "performer_3" text, "performer_4" text );
SELECT "performer_2" FROM "series_8" WHERE "episode"=5;
2-14934885-9
What weight has one rupee as the denomination?
CREATE TABLE "naya_paisa_series" ( "denomination" text, "metal" text, "weight" text, "shape" text, "size" text );
SELECT "weight" FROM "naya_paisa_series" WHERE "denomination"='one rupee';
2-1467510-4
What is the size that has nickel as the metal, and one rupee as the denomination?
CREATE TABLE "naya_paisa_series" ( "denomination" text, "metal" text, "weight" text, "shape" text, "size" text );
SELECT "size" FROM "naya_paisa_series" WHERE "metal"='nickel' AND "denomination"='one rupee';
2-1467510-4
What metal has one rupee as the denomination?
CREATE TABLE "naya_paisa_series" ( "denomination" text, "metal" text, "weight" text, "shape" text, "size" text );
SELECT "metal" FROM "naya_paisa_series" WHERE "denomination"='one rupee';
2-1467510-4
What shape has nickel as the metal, and one rupee as the denomination?
CREATE TABLE "naya_paisa_series" ( "denomination" text, "metal" text, "weight" text, "shape" text, "size" text );
SELECT "shape" FROM "naya_paisa_series" WHERE "metal"='nickel' AND "denomination"='one rupee';
2-1467510-4
Which 2007 has a 2010 of A, and a 2006 of lq?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2002" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text, "2013" text );
SELECT "2007" FROM "singles_performance_timeline" WHERE "2010"='a' AND "2006"='lq';
2-15272585-9
Which 2012 has a 2007 of 1r?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2002" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text, "2013" text );
SELECT "2012" FROM "singles_performance_timeline" WHERE "2007"='1r';
2-15272585-9
Which 2002 has a 2013 of 2–4?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2002" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text, "2013" text );
SELECT "2002" FROM "singles_performance_timeline" WHERE "2013"='2–4';
2-15272585-9
Which 2013 has a 2010 of 1r?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2002" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text, "2013" text );
SELECT "2013" FROM "singles_performance_timeline" WHERE "2010"='1r';
2-15272585-9
Which 2005 has a Tournament of grand slam tournaments?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2002" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text, "2013" text );
SELECT "2005" FROM "singles_performance_timeline" WHERE "tournament"='grand slam tournaments';
2-15272585-9
Which 2007 has a 2008 of 1r, and a Tournament of wimbledon?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2002" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text, "2013" text );
SELECT "2007" FROM "singles_performance_timeline" WHERE "2008"='1r' AND "tournament"='wimbledon';
2-15272585-9
Which Date has a Home of minnesota?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT "date" FROM "regular_season" WHERE "home"='minnesota';
2-14208862-7
Which Visitor has a Decision of myre, and a Record of 44–7–15?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT "visitor" FROM "regular_season" WHERE "decision"='myre' AND "record"='44–7–15';
2-14208862-7
What Championship had a Winning score of 6 & 5?
CREATE TABLE "wins_11" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "championship" FROM "wins_11" WHERE "winning_score"='6 & 5';
2-1525191-1
What was the Winning Score when Betsy Rawls was the Runner(s)-up?
CREATE TABLE "wins_11" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "winning_score" FROM "wins_11" WHERE "runner_s_up"='betsy rawls';
2-1525191-1
In 1946, what is the Runner(s)-up of the Women's Western Open Championship?
CREATE TABLE "wins_11" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "runner_s_up" FROM "wins_11" WHERE "championship"='women''s western open' AND "year"=1946;
2-1525191-1
What is the Margin in 1953 when Patty Berg was Runner(s)-up?
CREATE TABLE "wins_11" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "margin" FROM "wins_11" WHERE "runner_s_up"='patty berg' AND "year"=1953;
2-1525191-1
What is the Margin when the Winning score is +8 (70-69-70-75=284)?
CREATE TABLE "wins_11" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "margin" FROM "wins_11" WHERE "winning_score"='+8 (70-69-70-75=284)';
2-1525191-1
What is the name of the primary with a DCSF number larger than 2337 and an Ofsted number smaller than 135339?
CREATE TABLE "north_east" ( "name" text, "faith" text, "type" text, "dcsf_number" real, "ofsted_number" real );
SELECT "name" FROM "north_east" WHERE "type"='primary' AND "dcsf_number">2337 AND "ofsted_number"<135339;
2-15089329-2
What name that has a DCSF number bigger than 2448 and an Ofsted number of 131319?
CREATE TABLE "north_east" ( "name" text, "faith" text, "type" text, "dcsf_number" real, "ofsted_number" real );
SELECT "name" FROM "north_east" WHERE "dcsf_number">2448 AND "ofsted_number"=131319;
2-15089329-2
What faith has a DCSF number bigger than 2448 in Holtsmere End?
CREATE TABLE "north_east" ( "name" text, "faith" text, "type" text, "dcsf_number" real, "ofsted_number" real );
SELECT "faith" FROM "north_east" WHERE "dcsf_number">2448 AND "name"='holtsmere end';
2-15089329-2
What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?
CREATE TABLE "north_east" ( "name" text, "faith" text, "type" text, "dcsf_number" real, "ofsted_number" real );
SELECT MIN("dcsf_number") FROM "north_east" WHERE "name"='aycliffe drive' AND "ofsted_number"<117335;
2-15089329-2
what city is the toamasina airport in?
CREATE TABLE "destinations" ( "city" text, "country" text, "iata" text, "icao" text, "airport" text );
SELECT "city" FROM "destinations" WHERE "airport"='toamasina airport';
2-1497794-2
What country has the city, Sydney?
CREATE TABLE "destinations" ( "city" text, "country" text, "iata" text, "icao" text, "airport" text );
SELECT "country" FROM "destinations" WHERE "city"='sydney';
2-1497794-2
What city is in the country of Mayotte?
CREATE TABLE "destinations" ( "city" text, "country" text, "iata" text, "icao" text, "airport" text );
SELECT "city" FROM "destinations" WHERE "country"='mayotte';
2-1497794-2
What is the IATA for the chennai international airport?
CREATE TABLE "destinations" ( "city" text, "country" text, "iata" text, "icao" text, "airport" text );
SELECT "iata" FROM "destinations" WHERE "airport"='chennai international airport';
2-1497794-2
What is the airport name that has nos listed as the IATA?
CREATE TABLE "destinations" ( "city" text, "country" text, "iata" text, "icao" text, "airport" text );
SELECT "airport" FROM "destinations" WHERE "iata"='nos';
2-1497794-2
What is the part number of athlon x2 4850e?
CREATE TABLE "energy_efficient_e_series" ( "model_number" text, "stepping" text, "frequency" text, "l2_cache" text, "multi_1" text, "v_core" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "part_number_s" FROM "energy_efficient_e_series" WHERE "model_number"='athlon x2 4850e';
2-13869651-2
What's the frequency of the device that has a Multi 1 of 7.5×?
CREATE TABLE "energy_efficient_e_series" ( "model_number" text, "stepping" text, "frequency" text, "l2_cache" text, "multi_1" text, "v_core" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "frequency" FROM "energy_efficient_e_series" WHERE "multi_1"='7.5×';
2-13869651-2
What's amount of L2 Cache on a device that has a Frequency of 1500mhz?
CREATE TABLE "energy_efficient_e_series" ( "model_number" text, "stepping" text, "frequency" text, "l2_cache" text, "multi_1" text, "v_core" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "l2_cache" FROM "energy_efficient_e_series" WHERE "frequency"='1500mhz';
2-13869651-2
When is the release date for a chip that has a Frequency of 2300mhz?
CREATE TABLE "energy_efficient_e_series" ( "model_number" text, "stepping" text, "frequency" text, "l2_cache" text, "multi_1" text, "v_core" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "release_date" FROM "energy_efficient_e_series" WHERE "frequency"='2300mhz';
2-13869651-2