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 sum of % for 2001 if 2001 seats equals 7?
CREATE TABLE "community_council" ( "parties_and_voter_communities" text, "pct_2006" real, "seats_2006" real, "pct_2001" real, "seats_2001" real );
SELECT COUNT("pct_2001") FROM "community_council" WHERE "seats_2001"=7;
2-12190237-1
If 2006 is 13% and 2001 is greater than 12.1%, what is the greatest number of seats for 2001?
CREATE TABLE "community_council" ( "parties_and_voter_communities" text, "pct_2006" real, "seats_2006" real, "pct_2001" real, "seats_2001" real );
SELECT MAX("seats_2001") FROM "community_council" WHERE "pct_2006"=13 AND "pct_2001">12.1;
2-12190237-1
What were the circumstances of the Hostile incident on the road to Jalalabad?
CREATE TABLE "2007" ( "date" text, "location" text, "nature_of_incident" text, "circumstances" text, "casualties" text );
SELECT "circumstances" FROM "2007" WHERE "nature_of_incident"='hostile' AND "location"='road to jalalabad';
2-12378453-6
What was the circumstance that happened on the road to Jalalabad?
CREATE TABLE "2007" ( "date" text, "location" text, "nature_of_incident" text, "circumstances" text, "casualties" text );
SELECT "circumstances" FROM "2007" WHERE "location"='road to jalalabad';
2-12378453-6
What happened in Mazar-i-sharif?
CREATE TABLE "2007" ( "date" text, "location" text, "nature_of_incident" text, "circumstances" text, "casualties" text );
SELECT "circumstances" FROM "2007" WHERE "location"='mazar-i-sharif';
2-12378453-6
What is the Index number of Chen Bangjun Andie from Singapore?
CREATE TABLE "contestant_information" ( "index" text, "name" text, "chinese_name" text, "country" text, "status" text );
SELECT "index" FROM "contestant_information" WHERE "country"='singapore' AND "name"='chen bangjun andie';
2-13218356-2
What is the Chinese name of the Eliminated player from Singapore in Index f9?
CREATE TABLE "contestant_information" ( "index" text, "name" text, "chinese_name" text, "country" text, "status" text );
SELECT "chinese_name" FROM "contestant_information" WHERE "status"='eliminated' AND "country"='singapore' AND "index"='f9';
2-13218356-2
What is the Index number for 叶惠慈?
CREATE TABLE "contestant_information" ( "index" text, "name" text, "chinese_name" text, "country" text, "status" text );
SELECT "index" FROM "contestant_information" WHERE "chinese_name"='叶惠慈';
2-13218356-2
What is the Chinese name of the player in Index F10?
CREATE TABLE "contestant_information" ( "index" text, "name" text, "chinese_name" text, "country" text, "status" text );
SELECT "chinese_name" FROM "contestant_information" WHERE "index"='f10';
2-13218356-2
What is the name of the player from Malaysia, Kuala Lumpur in Index f8?
CREATE TABLE "contestant_information" ( "index" text, "name" text, "chinese_name" text, "country" text, "status" text );
SELECT "name" FROM "contestant_information" WHERE "country"='malaysia, kuala lumpur' AND "index"='f8';
2-13218356-2
What is the English name of the player 李美玲 from Malaysia, Kuala Lumpur?
CREATE TABLE "contestant_information" ( "index" text, "name" text, "chinese_name" text, "country" text, "status" text );
SELECT "name" FROM "contestant_information" WHERE "country"='malaysia, kuala lumpur' AND "chinese_name"='李美玲';
2-13218356-2
Who was the opponent of the game on August 8?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "opponent" FROM "game_log" WHERE "date"='august 8';
2-12383208-6
Who took the winning slot at the Vojens venue?
CREATE TABLE "european_championship_1977_1987" ( "year" text, "venue" text, "winners" text, "runner_up" text, "3rd_place" text );
SELECT "winners" FROM "european_championship_1977_1987" WHERE "venue"='vojens';
2-12796727-1
Who was the runner-up in 1980 at the Pocking venue?
CREATE TABLE "european_championship_1977_1987" ( "year" text, "venue" text, "winners" text, "runner_up" text, "3rd_place" text );
SELECT "runner_up" FROM "european_championship_1977_1987" WHERE "venue"='pocking' AND "year"='1980';
2-12796727-1
What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?
CREATE TABLE "youth_under_18_girls" ( "rank" real, "fastest_time_s" text, "wind_m_s" text, "athlete" text, "nation" text, "date" text, "location" text );
SELECT COUNT("rank") FROM "youth_under_18_girls" WHERE "fastest_time_s"='11.26' AND "nation"='united states';
2-1231316-7
What is the lowest overall with more than 17 rounds?
CREATE TABLE "1976_raiders_draft_selections" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT MIN("overall") FROM "1976_raiders_draft_selections" WHERE "round">17;
2-12293930-1
What position has 14 rounds?
CREATE TABLE "1976_raiders_draft_selections" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT "position" FROM "1976_raiders_draft_selections" WHERE "round"=14;
2-12293930-1
What United States player has a score of 69-73-68=210?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "player" FROM "third_round" WHERE "score"='69-73-68=210' AND "country"='united states';
2-12278571-7
What Argentina country is in t10 place?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "score" FROM "third_round" WHERE "place"='t10' AND "country"='argentina';
2-12278571-7
Which country has the score of 71-71-68=210?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "country" FROM "third_round" WHERE "score"='71-71-68=210';
2-12278571-7
What To par scored 72-71-68=211?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "to_par" FROM "third_round" WHERE "score"='72-71-68=211';
2-12278571-7
Name the award won for category of choice tv villain in years after 2008
CREATE TABLE "awards_and_nominations" ( "year" real, "award" text, "category" text, "nominated_work" text, "result" text );
SELECT "award" FROM "awards_and_nominations" WHERE "result"='won' AND "category"='choice tv villain' AND "year">2008;
2-12423551-3
Name the award for nominated result and year after 2011
CREATE TABLE "awards_and_nominations" ( "year" real, "award" text, "category" text, "nominated_work" text, "result" text );
SELECT "award" FROM "awards_and_nominations" WHERE "result"='nominated' AND "year">2011;
2-12423551-3
Which Perth also has Sydney yes, Gold Coast yes, and Adelaide no?
CREATE TABLE "2013" ( "sydney" text, "gold_coast" text, "adelaide" text, "melbourne" text, "perth" text );
SELECT "perth" FROM "2013" WHERE "sydney"='yes' AND "gold_coast"='yes' AND "adelaide"='no';
2-12230393-21
Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes?
CREATE TABLE "2013" ( "sydney" text, "gold_coast" text, "adelaide" text, "melbourne" text, "perth" text );
SELECT "perth" FROM "2013" WHERE "gold_coast"='yes' AND "sydney"='yes' AND "melbourne"='yes' AND "adelaide"='yes';
2-12230393-21
Which Adelaide has Sydney yes, Melbourne yes, and Perth no?
CREATE TABLE "2013" ( "sydney" text, "gold_coast" text, "adelaide" text, "melbourne" text, "perth" text );
SELECT "adelaide" FROM "2013" WHERE "sydney"='yes' AND "melbourne"='yes' AND "perth"='no';
2-12230393-21
Which Adelaide has Perth no, Gold Coast no, and Sydney yes?
CREATE TABLE "2013" ( "sydney" text, "gold_coast" text, "adelaide" text, "melbourne" text, "perth" text );
SELECT "adelaide" FROM "2013" WHERE "perth"='no' AND "gold_coast"='yes' AND "sydney"='yes';
2-12230393-21
Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled?
CREATE TABLE "2013" ( "sydney" text, "gold_coast" text, "adelaide" text, "melbourne" text, "perth" text );
SELECT "melbourne" FROM "2013" WHERE "gold_coast"='yes' AND "perth"='cancelled' AND "adelaide"='cancelled';
2-12230393-21
Which Melbourne has Sydney yes, Gold Coast yes, and Perth yes?
CREATE TABLE "2013" ( "sydney" text, "gold_coast" text, "adelaide" text, "melbourne" text, "perth" text );
SELECT "melbourne" FROM "2013" WHERE "sydney"='yes' AND "gold_coast"='yes' AND "perth"='yes';
2-12230393-21
Who came in 3rd when Matej žagar won?
CREATE TABLE "previous_winners" ( "year" text, "venue" text, "winners" text, "2nd_place" text, "3rd_place" text );
SELECT "3rd_place" FROM "previous_winners" WHERE "winners"='matej žagar';
2-12797753-1
In what year did Rafał Kurmański come in 2nd place?
CREATE TABLE "previous_winners" ( "year" text, "venue" text, "winners" text, "2nd_place" text, "3rd_place" text );
SELECT "year" FROM "previous_winners" WHERE "2nd_place"='rafał kurmański';
2-12797753-1
Who won at Krško?
CREATE TABLE "previous_winners" ( "year" text, "venue" text, "winners" text, "2nd_place" text, "3rd_place" text );
SELECT "winners" FROM "previous_winners" WHERE "venue"='krško';
2-12797753-1
Who came in 3rd when Nicolai Klindt won?
CREATE TABLE "previous_winners" ( "year" text, "venue" text, "winners" text, "2nd_place" text, "3rd_place" text );
SELECT "3rd_place" FROM "previous_winners" WHERE "winners"='nicolai klindt';
2-12797753-1
Who won when Karol Ząbik came in 2nd?
CREATE TABLE "previous_winners" ( "year" text, "venue" text, "winners" text, "2nd_place" text, "3rd_place" text );
SELECT "winners" FROM "previous_winners" WHERE "2nd_place"='karol ząbik';
2-12797753-1
Who came in 3rd at Venue?
CREATE TABLE "previous_winners" ( "year" text, "venue" text, "winners" text, "2nd_place" text, "3rd_place" text );
SELECT "3rd_place" FROM "previous_winners" WHERE "venue"='venue';
2-12797753-1
What is the total number of weeks that the Steelers had a record of 1–0?
CREATE TABLE "schedule" ( "week" real, "date" text, "kickoff_et" text, "opponent" text, "result" text, "record" text, "game_site" text );
SELECT COUNT("week") FROM "schedule" WHERE "record"='1–0';
2-12944805-15
Who was the opponent at the Steelers game that had a result of l 20–17?
CREATE TABLE "schedule" ( "week" real, "date" text, "kickoff_et" text, "opponent" text, "result" text, "record" text, "game_site" text );
SELECT "opponent" FROM "schedule" WHERE "result"='l 20–17';
2-12944805-15
Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "condition" FROM "laboratory_findings_in_various_platelet_" WHERE "partial_thromboplastin_time"='prolonged' AND "platelet_count"='unaffected' AND "bleeding_time"='prolonged';
2-1226250-1
Name the condition with partial thromboplastin time of prolonged or unaffected
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "condition" FROM "laboratory_findings_in_various_platelet_" WHERE "partial_thromboplastin_time"='prolonged or unaffected';
2-1226250-1
Name the condition with partial thromboplastin time of unaffected and prothrombin time of unaffected with platelet count of decreased
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "condition" FROM "laboratory_findings_in_various_platelet_" WHERE "partial_thromboplastin_time"='unaffected' AND "prothrombin_time"='unaffected' AND "platelet_count"='decreased';
2-1226250-1
Name the condition with platelet count of unaffected and bleeding time of unaffected with prothrombin time of prolonged and partial thromboplastin time of prolonged
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "condition" FROM "laboratory_findings_in_various_platelet_" WHERE "platelet_count"='unaffected' AND "bleeding_time"='unaffected' AND "prothrombin_time"='prolonged' AND "partial_thromboplastin_time"='prolonged';
2-1226250-1
Name the bleeding time with platelet count of unaffected and condition of factor xii deficiency
CREATE TABLE "laboratory_findings_in_various_platelet_" ( "condition" text, "prothrombin_time" text, "partial_thromboplastin_time" text, "bleeding_time" text, "platelet_count" text );
SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "platelet_count"='unaffected' AND "condition"='factor xii deficiency';
2-1226250-1
what is the number of losses with draws less than 1 and 6.3% efficiency?
CREATE TABLE "coaches" ( "name" text, "period" text, "wins" real, "draws" real, "losses" real, "efficiency_pct" text );
SELECT AVG("losses") FROM "coaches" WHERE "efficiency_pct"='6.3%' AND "draws"<1;
2-1235063-1
what is the number of draws for ali said gouled?
CREATE TABLE "coaches" ( "name" text, "period" text, "wins" real, "draws" real, "losses" real, "efficiency_pct" text );
SELECT COUNT("draws") FROM "coaches" WHERE "name"='ali said gouled';
2-1235063-1
what is the number of draws when there are 4 losses and 28.6% efficiency?
CREATE TABLE "coaches" ( "name" text, "period" text, "wins" real, "draws" real, "losses" real, "efficiency_pct" text );
SELECT COUNT("draws") FROM "coaches" WHERE "losses"=4 AND "efficiency_pct"='28.6%';
2-1235063-1
Name the females when males are 1 548
CREATE TABLE "language" ( "language" text, "number" text, "percentage_pct" text, "males" text, "females" text );
SELECT "females" FROM "language" WHERE "males"='1 548';
2-12162597-1
Name the percentage with number of 1 343
CREATE TABLE "language" ( "language" text, "number" text, "percentage_pct" text, "males" text, "females" text );
SELECT "percentage_pct" FROM "language" WHERE "number"='1 343';
2-12162597-1
Name the percentage which has females of 2
CREATE TABLE "language" ( "language" text, "number" text, "percentage_pct" text, "males" text, "females" text );
SELECT "percentage_pct" FROM "language" WHERE "females"='2';
2-12162597-1
Name the males for language of persons that didn't name their native language
CREATE TABLE "language" ( "language" text, "number" text, "percentage_pct" text, "males" text, "females" text );
SELECT "males" FROM "language" WHERE "language"='persons that didn''t name their native language';
2-12162597-1
What are the school colors for the college whose main campus is overland park?
CREATE TABLE "eastern_division" ( "institution" text, "main_campus_location" text, "founded" real, "mascot" text, "school_colors" text );
SELECT "school_colors" FROM "eastern_division" WHERE "main_campus_location"='overland park';
2-12434380-1
What is independence community college's newest campus?
CREATE TABLE "eastern_division" ( "institution" text, "main_campus_location" text, "founded" real, "mascot" text, "school_colors" text );
SELECT MIN("founded") FROM "eastern_division" WHERE "institution"='independence community college';
2-12434380-1
What college was founded in 1967?
CREATE TABLE "eastern_division" ( "institution" text, "main_campus_location" text, "founded" real, "mascot" text, "school_colors" text );
SELECT "main_campus_location" FROM "eastern_division" WHERE "founded"=1967;
2-12434380-1
Which party is associated with a leader who began his tenure on June 13, 2007?
CREATE TABLE "list_of_negotiation_leaders" ( "from" text, "until" text, "name" text, "party" text, "function" text );
SELECT "party" FROM "list_of_negotiation_leaders" WHERE "from"='june 13, 2007';
2-12943367-1
What is the beginning date associated with an ending date of July 4, 2007?
CREATE TABLE "list_of_negotiation_leaders" ( "from" text, "until" text, "name" text, "party" text, "function" text );
SELECT "from" FROM "list_of_negotiation_leaders" WHERE "until"='july 4, 2007';
2-12943367-1
Who had a function of explorator?
CREATE TABLE "list_of_negotiation_leaders" ( "from" text, "until" text, "name" text, "party" text, "function" text );
SELECT "name" FROM "list_of_negotiation_leaders" WHERE "function"='explorator';
2-12943367-1
What is the Until date associated with a beginning From date of July 5, 2007?
CREATE TABLE "list_of_negotiation_leaders" ( "from" text, "until" text, "name" text, "party" text, "function" text );
SELECT "until" FROM "list_of_negotiation_leaders" WHERE "from"='july 5, 2007';
2-12943367-1
What is the Until date that has a party of VLD and a beginning from date of December 17, 2007?
CREATE TABLE "list_of_negotiation_leaders" ( "from" text, "until" text, "name" text, "party" text, "function" text );
SELECT "until" FROM "list_of_negotiation_leaders" WHERE "party"='vld' AND "from"='december 17, 2007';
2-12943367-1
Can you tell me the Competing entities that has the First held smaller than 1970?
CREATE TABLE "references" ( "competing_entities" text, "first_held" real, "current_holder" text, "next" text, "held_every" text );
SELECT "competing_entities" FROM "references" WHERE "first_held"<1970;
2-12592117-1
What surface was played on on October 3, 2010?
CREATE TABLE "singles_10" ( "date" text, "tournament" text, "surface" text, "tier" text, "opponent_in_the_final" text, "score" text );
SELECT "surface" FROM "singles_10" WHERE "date"='october 3, 2010';
2-12428755-1
What was the tier versus Manana Shapakidze?
CREATE TABLE "singles_10" ( "date" text, "tournament" text, "surface" text, "tier" text, "opponent_in_the_final" text, "score" text );
SELECT "tier" FROM "singles_10" WHERE "opponent_in_the_final"='manana shapakidze';
2-12428755-1
What was the score versus Michaela Pochabová?
CREATE TABLE "singles_10" ( "date" text, "tournament" text, "surface" text, "tier" text, "opponent_in_the_final" text, "score" text );
SELECT "score" FROM "singles_10" WHERE "opponent_in_the_final"='michaela pochabová';
2-12428755-1
Who was the opponent on May 8, 2006?
CREATE TABLE "singles_10" ( "date" text, "tournament" text, "surface" text, "tier" text, "opponent_in_the_final" text, "score" text );
SELECT "opponent_in_the_final" FROM "singles_10" WHERE "date"='may 8, 2006';
2-12428755-1
What was the tier versus Annalisa bona?
CREATE TABLE "singles_10" ( "date" text, "tournament" text, "surface" text, "tier" text, "opponent_in_the_final" text, "score" text );
SELECT "tier" FROM "singles_10" WHERE "opponent_in_the_final"='annalisa bona';
2-12428755-1
What is the average place for the song called "homme" that has voes larger than 1320?
CREATE TABLE "eurolaul_26_january_2002" ( "draw" real, "artist" text, "song" text, "votes" real, "place" real );
SELECT AVG("place") FROM "eurolaul_26_january_2002" WHERE "song"='\"homme\"' AND "votes">1320;
2-12291508-1
What is the sum of the draw for the song "Beautiful Inside" which has a place larger than 2?
CREATE TABLE "eurolaul_26_january_2002" ( "draw" real, "artist" text, "song" text, "votes" real, "place" real );
SELECT SUM("draw") FROM "eurolaul_26_january_2002" WHERE "song"='\"beautiful inside\"' AND "place">2;
2-12291508-1
Which song has votes greater than 640 and a draw of 1?
CREATE TABLE "eurolaul_26_january_2002" ( "draw" real, "artist" text, "song" text, "votes" real, "place" real );
SELECT "song" FROM "eurolaul_26_january_2002" WHERE "votes">640 AND "draw"=1;
2-12291508-1
What is the average place for a song with votes smaller than 8696, the song "turn the tide", and a draw larger than 3?
CREATE TABLE "eurolaul_26_january_2002" ( "draw" real, "artist" text, "song" text, "votes" real, "place" real );
SELECT AVG("place") FROM "eurolaul_26_january_2002" WHERE "votes"<8696 AND "song"='\"turn the tide\"' AND "draw">3;
2-12291508-1
When Keey has 58.1% what % does Bush have?
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "bushpct" FROM "by_county" WHERE "kerrypct"='58.1%';
2-1304773-1
Which of Real Betis career had appearances smaller than 98, nationality of Spain, and goals greater than 15?
CREATE TABLE "notable_players" ( "nationality" text, "position" text, "real_betis_career" text, "appearances" real, "goals" real );
SELECT "real_betis_career" FROM "notable_players" WHERE "appearances"<98 AND "nationality"='spain' AND "goals">15;
2-12363413-1
What Decile has State Authority and Raumati South Area?
CREATE TABLE "kapiti_coast_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" real );
SELECT "decile" FROM "kapiti_coast_district" WHERE "authority"='state' AND "area"='raumati south';
2-12214488-5
What is the total Decile with Waikanae Area?
CREATE TABLE "kapiti_coast_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" real );
SELECT SUM("decile") FROM "kapiti_coast_district" WHERE "area"='waikanae';
2-12214488-5
What Player with a Place of T10 had a Score of 80-70-72-72=294?
CREATE TABLE "final_leaderboard" ( "place" text, "player" text, "country" text, "score" text, "to_par" text, "money" real );
SELECT "player" FROM "final_leaderboard" WHERE "place"='t10' AND "score"='80-70-72-72=294';
2-13059194-1
What was the Money ($) amount for Lloyd Mangrum?
CREATE TABLE "final_leaderboard" ( "place" text, "player" text, "country" text, "score" text, "to_par" text, "money" real );
SELECT "money" FROM "final_leaderboard" WHERE "player"='lloyd mangrum';
2-13059194-1
What was the Money ($) amount for Cary Middlecoff?
CREATE TABLE "final_leaderboard" ( "place" text, "player" text, "country" text, "score" text, "to_par" text, "money" real );
SELECT "money" FROM "final_leaderboard" WHERE "player"='cary middlecoff';
2-13059194-1
What date was the game with a score of 5–2, and a Loss of lilly (9–9)?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "date" FROM "game_log" WHERE "score"='5–2' AND "loss"='lilly (9–9)';
2-12205559-6
What team was the opponent when there was a score of 5–4 (11)?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "opponent" FROM "game_log" WHERE "score"='5–4 (11)';
2-12205559-6
What date was the game with a record of 47–39?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "date" FROM "game_log" WHERE "record"='47–39';
2-12205559-6
What year did Tom Watson win?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real );
SELECT "year_s_won" FROM "missed_the_cut" WHERE "player"='tom watson';
2-12626983-3
What is the total number that Tom Watson parred larger than 10?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real );
SELECT COUNT("total") FROM "missed_the_cut" WHERE "player"='tom watson' AND "to_par">10;
2-12626983-3
Which date has a Record of 4-5?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "date" FROM "game_log" WHERE "record"='4-5';
2-12207449-2
Which score has a Loss of gubicza (0-1)?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "score" FROM "game_log" WHERE "loss"='gubicza (0-1)';
2-12207449-2
Which loss happened april 18?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "loss" FROM "game_log" WHERE "date"='april 18';
2-12207449-2
Which record has an Opponent of orioles and a Date of april 14?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "record" FROM "game_log" WHERE "opponent"='orioles' AND "date"='april 14';
2-12207449-2
Which record has a Date of april 25?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "record" FROM "game_log" WHERE "date"='april 25';
2-12207449-2
Which opponent has a Record of 4-5?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "opponent" FROM "game_log" WHERE "record"='4-5';
2-12207449-2
Name the country which has prix uip venezia
CREATE TABLE "2004" ( "category" text, "film" text, "director_s" text, "country" text, "nominating_festival" text );
SELECT "country" FROM "2004" WHERE "nominating_festival"='prix uip venezia';
2-12152327-3
Name the nominating festival for director of 2004
CREATE TABLE "2004" ( "category" text, "film" text, "director_s" text, "country" text, "nominating_festival" text );
SELECT "nominating_festival" FROM "2004" WHERE "director_s"='2004';
2-12152327-3
Name the category for prix uip berlin
CREATE TABLE "2004" ( "category" text, "film" text, "director_s" text, "country" text, "nominating_festival" text );
SELECT "category" FROM "2004" WHERE "nominating_festival"='prix uip berlin';
2-12152327-3
Name the nominating festival for un cartus de kent si un pachet de cafea
CREATE TABLE "2004" ( "category" text, "film" text, "director_s" text, "country" text, "nominating_festival" text );
SELECT "nominating_festival" FROM "2004" WHERE "film"='un cartus de kent si un pachet de cafea';
2-12152327-3
Name the director of alt i alt
CREATE TABLE "2004" ( "category" text, "film" text, "director_s" text, "country" text, "nominating_festival" text );
SELECT "director_s" FROM "2004" WHERE "film"='alt i alt';
2-12152327-3
What's the score of the game they played against a team with a record of 81-54?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "score" FROM "game_log" WHERE "record"='81-54';
2-12207430-7
What game score was there for the team with a record of 84-56?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "score" FROM "game_log" WHERE "record"='84-56';
2-12207430-7
Who is the Winner for the City of Loutraki?
CREATE TABLE "european_poker_tour" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "winner" FROM "european_poker_tour" WHERE "city"='loutraki';
2-1296513-8
What is the Date for the Event ept copenhagen?
CREATE TABLE "european_poker_tour" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "date" FROM "european_poker_tour" WHERE "event"='ept copenhagen';
2-1296513-8
What Event did John dibella win?
CREATE TABLE "european_poker_tour" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "event" FROM "european_poker_tour" WHERE "winner"='john dibella';
2-1296513-8
What was the prize for winner benny spindler?
CREATE TABLE "european_poker_tour" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "prize" FROM "european_poker_tour" WHERE "winner"='benny spindler';
2-1296513-8
What was the Event in the city of copenhagen?
CREATE TABLE "european_poker_tour" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "event" FROM "european_poker_tour" WHERE "city"='copenhagen';
2-1296513-8
What was the Event for the prize of €850,000?
CREATE TABLE "european_poker_tour" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "event" FROM "european_poker_tour" WHERE "prize"='€850,000';
2-1296513-8
What is the Redcliffe population with a Pine Rivers population greater than 164,254 and a total population less than 103,669?
CREATE TABLE "population" ( "year" real, "population_total" real, "caboolture" real, "pine_rivers" real, "redcliffe" real );
SELECT SUM("redcliffe") FROM "population" WHERE "pine_rivers">'164,254' AND "population_total"<'103,669';
2-12523323-1
What is the Pine Rivers total population after 1947 with a Redcliffe population smaller than 68,877, a total population greater than 50,785, and a Caboolture population greater than 12,207?
CREATE TABLE "population" ( "year" real, "population_total" real, "caboolture" real, "pine_rivers" real, "redcliffe" real );
SELECT COUNT("pine_rivers") FROM "population" WHERE "year">1947 AND "redcliffe"<'68,877' AND "population_total">'50,785' AND "caboolture">'12,207';
2-12523323-1