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