output
stringlengths
27
479
instruction
stringlengths
407
1.39k
SELECT MAX("first_season_of_current_spell") FROM "current_clubs_2014_season" WHERE "position_in_2013"='9th' AND "number_of_seasons_in_second_tier">14;
## Task Generate a SQL query to answer the following question: `Which First season of current spell is the highest one that has a Position in 2013 of 9th, and a Number of seasons in second tier larger than 14?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE T...
SELECT MAX("rank") FROM "points" WHERE "team"='beirasar rosalía' AND "games"<32;
## Task Generate a SQL query to answer the following question: `What was the ranking of Beirasar Rosalía, the year they played 32 games?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "points" ( "rank" real, "name" text, "team" text, "games" re...
SELECT SUM("points") FROM "points" WHERE "name"='antwain barbour' AND "games"<39;
## Task Generate a SQL query to answer the following question: `How many points did Antwain Barbour score in the year he played 39 games?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "points" ( "rank" real, "name" text, "team" text, "games" r...
SELECT "team" FROM "points" WHERE "name"='paolo quinteros';
## Task Generate a SQL query to answer the following question: `What team was Paolo Quinteros on?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "points" ( "rank" real, "name" text, "team" text, "games" real, "points" real ); ### SQL Given th...
SELECT "res" FROM "mixed_martial_arts_record" WHERE "record"='8-1 (1)';
## Task Generate a SQL query to answer the following question: `Was the record of 8-1 (1) a win or a loss?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, ...
SELECT "event" FROM "mixed_martial_arts_record" WHERE "method"='technical decision (split)';
## Task Generate a SQL query to answer the following question: `In what event was the technical decision (split) method used?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text,...
SELECT AVG("play_offs") FROM "topscorers" WHERE "fa_cup">3;
## Task Generate a SQL query to answer the following question: `What are the average play-offs that have an FA Cup greater than 3?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "play_of...
SELECT COUNT("total") FROM "topscorers" WHERE "play_offs"<0;
## Task Generate a SQL query to answer the following question: `How many totals have a play-off less than 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "play_offs" real, "fa_cup" r...
SELECT "league" FROM "topscorers" WHERE "fa_cup">0 AND "total">21;
## Task Generate a SQL query to answer the following question: `Which league has an FA cup greater than 0, with a total greater than 21?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "p...
SELECT MAX("play_offs") FROM "topscorers" WHERE "club"='stevenage borough' AND "total">21;
## Task Generate a SQL query to answer the following question: `What is the highest play-offs that have stevenage borough as the club, and a total greater than 21?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "topscorers" ( "player" text, "club" ...
SELECT "2012" FROM "doubles_performance_timeline" WHERE "2003"='2r' AND "tournament"='wimbledon';
## Task Generate a SQL query to answer the following question: `What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "doubles_performance_timeline" ( "tournament"...
SELECT "2012" FROM "doubles_performance_timeline" WHERE "2013"='2r' AND "tournament"='wimbledon';
## Task Generate a SQL query to answer the following question: `What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2...
SELECT "2003" FROM "doubles_performance_timeline" WHERE "2012"='1r' AND "2004"='2r' AND "tournament"='australian open';
## Task Generate a SQL query to answer the following question: `What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "doubles_performance_timelin...
SELECT "tournament" FROM "doubles_performance_timeline" WHERE "2003"='2r' AND "2004"='1r';
## Task Generate a SQL query to answer the following question: `What is the name of the tournament that has the results of 2003 2r and 2004 1r?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003...
SELECT "2004" FROM "doubles_performance_timeline" WHERE "2013"='2r';
## Task Generate a SQL query to answer the following question: `What is the results in 2004 that has a 2013 result of 2r?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text,...
SELECT "2003" FROM "doubles_performance_timeline" WHERE "tournament"='us open';
## Task Generate a SQL query to answer the following question: `What is the result from 2003 from the US Open?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" t...
SELECT AVG("height_cm") FROM "list_of_united_states_national_ice_hocke" WHERE "weight_kg">84 AND "birthdate"='june 24, 1964';
## Task Generate a SQL query to answer the following question: `What is the height of the player born on June 24, 1964, with a weight over 84 kg?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" t...
SELECT "birthdate" FROM "list_of_united_states_national_ice_hocke" WHERE "birthplace"='melrose, massachusetts';
## Task Generate a SQL query to answer the following question: `On what date was the player from Melrose, Massachusetts born?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" ...
SELECT MIN("height_cm") FROM "list_of_united_states_national_ice_hocke" WHERE "1986_1987_team"='washington capitals' AND "birthplace"='detroit, michigan' AND "jersey_num"<11;
## Task Generate a SQL query to answer the following question: `What is the height of the player from the Washington Capitals, who was born in Detroit, Michigan and has a jersey number under #11?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_...
SELECT "date" FROM "tournaments" WHERE "event"='billabong pro';
## Task Generate a SQL query to answer the following question: `What is Date, when Event is Billabong Pro?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" tex...
SELECT "location" FROM "tournaments" WHERE "date"='december 8-december 20';
## Task Generate a SQL query to answer the following question: `What is Location, when Date is December 8-December 20?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, ...
SELECT "runner_up" FROM "tournaments" WHERE "event"='mancora peru classic';
## Task Generate a SQL query to answer the following question: `What is Runner-up, when Event is Mancora Peru Classic?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, ...
SELECT "event" FROM "tournaments" WHERE "date"='august 20-august 27';
## Task Generate a SQL query to answer the following question: `What is Event, when Date is August 20-August 27?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winne...
SELECT "date" FROM "tournaments" WHERE "runner_up"='sofía mulánovich ( per )';
## Task Generate a SQL query to answer the following question: `What is Date when Runner-up is Sofía Mulánovich ( per )?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, ...
SELECT "country" FROM "tournaments" WHERE "event"='rip curl women''s pro';
## Task Generate a SQL query to answer the following question: `What is Country, when Event is Rip Curl Women's Pro?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "w...
SELECT MAX("winpct") FROM "seasons" WHERE "losses"=23;
## Task Generate a SQL query to answer the following question: `What is the highest win percentage when there were 23 losses?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "seasons" ( "season" text, "conference" text, "division" text, "finish"...
SELECT "finish" FROM "seasons" WHERE "winpct">0.598 AND "wins"<53;
## Task Generate a SQL query to answer the following question: `Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "seasons" ( "season" text, "conference" text, ...
SELECT "2007_team" FROM "signings" WHERE "player"='deshaun foster';
## Task Generate a SQL query to answer the following question: `What is the 2007 Team with player Deshaun Foster?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "signings" ( "pos" text, "player" text, "free_agent_type" text, "2007_team" text, ...
SELECT "free_agent_type" FROM "signings" WHERE "player"='bryant johnson';
## Task Generate a SQL query to answer the following question: `What is the Free Agent Type for player bryant johnson?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "signings" ( "pos" text, "player" text, "free_agent_type" text, "2007_team" te...
SELECT "high_assists" FROM "game_log" WHERE "date"='march 31';
## Task Generate a SQL query to answer the following question: `What is the High assists with a Date that is march 31?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_poin...
SELECT "score" FROM "game_log" WHERE "date"='march 12';
## Task Generate a SQL query to answer the following question: `What is the Score with a Date that is march 12?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" tex...
SELECT MIN("silver") FROM "medals_table" WHERE "bronze">1 AND "gold"<2 AND "total"<2;
## Task Generate a SQL query to answer the following question: `What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medals_table" ( "rank" real, "n...
SELECT AVG("rank") FROM "medals_table" WHERE "silver"<0;
## Task Generate a SQL query to answer the following question: `What average rank that has a silver less than 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" ...
SELECT COUNT("silver") FROM "medals_table" WHERE "total"=4 AND "bronze"<2;
## Task Generate a SQL query to answer the following question: `How many silver have 4 as the total with a bronze less than 2?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" rea...
SELECT SUM("total") FROM "medals_table" WHERE "rank">4 AND "nation"='czech republic' AND "bronze">0;
## Task Generate a SQL query to answer the following question: `How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medals_table" ( "rank" real, "nat...
SELECT AVG("total") FROM "medals_table" WHERE "gold">0 AND "silver">0 AND "bronze">2;
## Task Generate a SQL query to answer the following question: `What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medals_table" ( "rank" real, "n...
SELECT "country" FROM "uranium_demand_mining_production_and_def" WHERE "indigenous_mining_production_2006"='0';
## Task Generate a SQL query to answer the following question: `Which country has an Indigenous mining production 2006 of 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "uranium_demand_mining_production_and_def" ( "country" text, "uranium_requir...
SELECT COUNT("capacity") FROM "brazil_s_15_busiest_airports_by_passenge" WHERE "rank"<7 AND "capacity_in_use"='114.2%' AND "total_passengers"<'13,699,657';
## Task Generate a SQL query to answer the following question: `What is the total capacity of the airport ranked less than 7, has a capacity in use of 114.2%, and has less than 13,699,657 total passengers?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE...
SELECT MAX("capacity") FROM "brazil_s_15_busiest_airports_by_passenge" WHERE "rank">6 AND "location"='rio de janeiro' AND "total_passengers">'5,099,643';
## Task Generate a SQL query to answer the following question: `What is the highest capacity of the airport in Rio de Janeiro, which was ranked greater than 6 and had more than 5,099,643 total passengers?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE ...
SELECT "capacity_in_use" FROM "brazil_s_15_busiest_airports_by_passenge" WHERE "location"='rio de janeiro' AND "annual_change"='40.53%';
## Task Generate a SQL query to answer the following question: `What is the capacity in use of the airport in Rio de Janeiro with an annual change of 40.53%?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "brazil_s_15_busiest_airports_by_passenge" ( ...
SELECT SUM("silver") FROM "medal_table" WHERE "total"<6 AND "rank"='6' AND "nation"='bulgaria';
## Task Generate a SQL query to answer the following question: `What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medal_table" ( "rank" text, "nati...
SELECT "nation" FROM "medal_table" WHERE "bronze"=2 AND "total"<5 AND "rank"='6';
## Task Generate a SQL query to answer the following question: `What nation has a bronze of 2 with a total less than 5 and rank of 6?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silve...
SELECT MIN("total") FROM "medal_table" WHERE "rank"='3' AND "gold">4;
## Task Generate a SQL query to answer the following question: `What is the lowest Total for rank 3 with more than 4 gold?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, ...
SELECT MIN("total") FROM "medal_table" WHERE "nation"='italy' AND "silver"<0;
## Task Generate a SQL query to answer the following question: `What is the lowest Total for Italy with less than 0 silver?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, ...
SELECT "nation" FROM "medal_table" WHERE "silver"<1 AND "total"=1 AND "bronze"=0;
## Task Generate a SQL query to answer the following question: `What is the Nation with less than 1 silver, and the total is 1, and bronze is less than 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "medal_table" ( "rank" text, "nation" text, ...
SELECT "number" FROM "b" WHERE "season"='2002-2003';
## Task Generate a SQL query to answer the following question: `What number has 2002-2003 as the season?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text )...
SELECT "position" FROM "b" WHERE "season"='2008';
## Task Generate a SQL query to answer the following question: `What position has 2008 as the season?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text ); #...
SELECT "name" FROM "b" WHERE "number"='50';
## Task Generate a SQL query to answer the following question: `What name has 50 as the number?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text ); ### SQL...
SELECT "number" FROM "b" WHERE "season"='2008';
## Task Generate a SQL query to answer the following question: `What number has 2008 as the season?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text ); ###...
SELECT "name" FROM "b" WHERE "number"='8';
## Task Generate a SQL query to answer the following question: `What name has 8 as the number?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text ); ### SQL ...
SELECT "position" FROM "b" WHERE "name"='ronjay buenafe';
## Task Generate a SQL query to answer the following question: `What position has ronjay buenafe as the name?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" t...
SELECT MIN("long") FROM "rushing" WHERE "yards"=26;
## Task Generate a SQL query to answer the following question: `What was the lowest long with 26 yards?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "rushing" ( "player" text, "att" real, "yards" real, "avg" real, "long" real, "fum_l" rea...
SELECT MAX("avg") FROM "rushing" WHERE "fum_l"<0;
## Task Generate a SQL query to answer the following question: `What was the highest average when Fuml was 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "rushing" ( "player" text, "att" real, "yards" real, "avg" real, "long" real, "fum_...
SELECT MAX("current_run_since") FROM "esiliiga" WHERE "last_title"='2010' AND "seasons_in_esiliiga">10;
## Task Generate a SQL query to answer the following question: `What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "esiliiga" ( "club" text, "2012"...
SELECT "2012" FROM "esiliiga" WHERE "seasons_in_esiliiga">4 AND "titles">0;
## Task Generate a SQL query to answer the following question: `What is the 2012 season in Esiliiga more than 4, and more than 0 titles?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "esiliiga" ( "club" text, "2012" text, "seasons_in_esiliiga" r...
SELECT AVG("population") FROM "economic_data" WHERE "per_capita"='1,158' AND "gdp_2011_in_millions_usd"<'6,199';
## Task Generate a SQL query to answer the following question: `What is the population on average with a per capita of 1,158, and a 2011 GDP less than 6,199?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "economic_data" ( "country" text, "populati...
SELECT "20_29" FROM "career_stats" WHERE "season"='2008';
## Task Generate a SQL query to answer the following question: `What 20-29 was in season 2008?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "career_stats" ( "season" text, "pat_pct" text, "20_29" text, "30_39" text, "40_49" text, "fg_fga"...
SELECT MIN("points") FROM "career_stats" WHERE "season"='1994';
## Task Generate a SQL query to answer the following question: `What were the lowest amount of points for season 1994?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "career_stats" ( "season" text, "pat_pct" text, "20_29" text, "30_39" text, ...
SELECT "20_29" FROM "career_stats" WHERE "season"='1997';
## Task Generate a SQL query to answer the following question: `Which 20-29 had a season of 1997?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "career_stats" ( "season" text, "pat_pct" text, "20_29" text, "30_39" text, "40_49" text, "fg_f...
SELECT "position" FROM "list_of_united_states_national_ice_hocke" WHERE "name"='rod paavola';
## Task Generate a SQL query to answer the following question: `What is the Postion, when the Name is Rod Paavola?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "na...
SELECT COUNT("jersey_num") FROM "list_of_united_states_national_ice_hocke" WHERE "position"='w' AND "birthdate"='17 october 1932';
## Task Generate a SQL query to answer the following question: `What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_...
SELECT "birthplace" FROM "list_of_united_states_national_ice_hocke" WHERE "name"='bob mcvey';
## Task Generate a SQL query to answer the following question: `What is the Birthplace, when the Name is Bob Mcvey?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "n...
SELECT "name" FROM "list_of_united_states_national_ice_hocke" WHERE "position"='w' AND "jersey_num"=11;
## Task Generate a SQL query to answer the following question: `What is the Name, when the Position is W, and when the Jersey # is 11?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jer...
SELECT "position" FROM "list_of_united_states_national_ice_hocke" WHERE "club_team"='warroad lakers' AND "name"='roger christian';
## Task Generate a SQL query to answer the following question: `What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "list_of_united_states_national_ice_hocke" (...
SELECT "home" FROM "round_twelve" WHERE "score"='122-28';
## Task Generate a SQL query to answer the following question: `What home has 122-28 as the score?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" te...
SELECT "ground" FROM "round_twelve" WHERE "home"='etobicoke kangaroos';
## Task Generate a SQL query to answer the following question: `What ground has etobicoke kangaroos as the home?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text,...
SELECT "time" FROM "round_twelve" WHERE "ground"='humber college north' AND "home"='toronto downtown dingos';
## Task Generate a SQL query to answer the following question: `What time has humber college north as the ground, and toronto downtown dingos as the home?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "round_twelve" ( "date" text, "time" text, "...
SELECT "score" FROM "round_twelve" WHERE "home"='toronto eagles';
## Task Generate a SQL query to answer the following question: `What score has Toronto Eagles as the home?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "gr...
SELECT "date" FROM "round_twelve" WHERE "away"='high park demons';
## Task Generate a SQL query to answer the following question: `What date has high park demons as the away?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "g...
SELECT "away" FROM "round_twelve" WHERE "home"='toronto downtown dingos';
## Task Generate a SQL query to answer the following question: `What away has toronto downtown dingos as the home?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" tex...
SELECT "winner" FROM "tournaments" WHERE "event"='rip curl pro search';
## Task Generate a SQL query to answer the following question: `Who was the winner from the Rip Curl Pro Search?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winne...
SELECT "location" FROM "tournaments" WHERE "country"='spain';
## Task Generate a SQL query to answer the following question: `What was the location of the tournament held in Spain?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, ...
SELECT "date" FROM "tournaments" WHERE "country"='indonesia';
## Task Generate a SQL query to answer the following question: `What was the date of the tournament held in Indonesia?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, ...
SELECT AVG("lost") FROM "campeonato_paulista" WHERE "difference"='- 3' AND "played"<10;
## Task Generate a SQL query to answer the following question: `What is the average Lost when the difference is - 3, and a Played is less than 10?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, ...
SELECT "position" FROM "campeonato_paulista" WHERE "drawn"<2 AND "difference"='2';
## Task Generate a SQL query to answer the following question: `What is the Position when the Drawn is less than 2, with a Difference of 2?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, "poin...
SELECT SUM("against") FROM "campeonato_paulista" WHERE "drawn"<2 AND "position">8 AND "lost">6;
## Task Generate a SQL query to answer the following question: `What is the sum of Against when the drawn is less than 2, the position is more than 8, and the lost is more than 6.` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "campeonato_paulista" ( ...
SELECT "difference" FROM "campeonato_paulista" WHERE "position"<3 AND "points"=17;
## Task Generate a SQL query to answer the following question: `What is the Difference with a position of less than 3, and, 17 points.` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, "points" r...
SELECT AVG("top_5") FROM "summary" WHERE "tournament"='u.s. open' AND "cuts_made">10;
## Task Generate a SQL query to answer the following question: `What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "summary" ( "tournament" text, "wins" rea...
SELECT SUM("events") FROM "summary" WHERE "top_10"=7 AND "top_5">4;
## Task Generate a SQL query to answer the following question: `What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real...
SELECT SUM("top_5") FROM "summary" WHERE "tournament"='totals' AND "events">86;
## Task Generate a SQL query to answer the following question: `What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "summary" ( "tournament" text, "wins" real, "t...
SELECT AVG("top_10") FROM "summary" WHERE "wins"<0;
## Task Generate a SQL query to answer the following question: `What is the average Top-10, when Wins is less than 0?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top...
SELECT COUNT("top_25") FROM "summary" WHERE "events">86;
## Task Generate a SQL query to answer the following question: `What is the total number of Top-25, when Events is greater than 86?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10...
SELECT "2011" FROM "singles_performance_timeline" WHERE "2008"='4r';
## Task Generate a SQL query to answer the following question: `What 2011 has 4r as the 2008?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" tex...
SELECT "2007" FROM "singles_performance_timeline" WHERE "tournament"='wimbledon';
## Task Generate a SQL query to answer the following question: `What 2007 has wimbledon as the tournament?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text,...
SELECT "2006" FROM "singles_performance_timeline" WHERE "2007"='1r';
## Task Generate a SQL query to answer the following question: `What 2006 has 1r as the 2007?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" tex...
SELECT "tournament" FROM "singles_performance_timeline" WHERE "2004"='q2';
## Task Generate a SQL query to answer the following question: `What tournament has q2 as the 2004?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "200...
SELECT "2009" FROM "singles_performance_timeline" WHERE "2008"='grand slam tournaments';
## Task Generate a SQL query to answer the following question: `What 2009 has grand slam tournaments of 2008?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" te...
SELECT "2006" FROM "singles_performance_timeline" WHERE "2011"='0-0';
## Task Generate a SQL query to answer the following question: `What 2006 has 0-0 as the 2011?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" te...
SELECT "lineup" FROM "matches_and_goals_scored_at_world_cup_an" WHERE "match"='27';
## Task Generate a SQL query to answer the following question: `What is the Lineup from a Match that is 27?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "matches_and_goals_scored_at_world_cup_an" ( "match" text, "date" text, "location" text, ...
SELECT "date" FROM "locomotives" WHERE "name"='orangeville';
## Task Generate a SQL query to answer the following question: `What is the date for Orangeville?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, "works_nu...
SELECT "builder" FROM "locomotives" WHERE "works_number"='2534';
## Task Generate a SQL query to answer the following question: `Who is the builder with a works number of 2534?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" tex...
SELECT "name" FROM "locomotives" WHERE "works_number"='809';
## Task Generate a SQL query to answer the following question: `Who is the name with a works number of 809?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, ...
SELECT "works_number" FROM "locomotives" WHERE "date"='early 1873' AND "name"='owen sound';
## Task Generate a SQL query to answer the following question: `In early 1873, Owen sound had what works number?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" te...
SELECT "name" FROM "locomotives" WHERE "type"='2-8-0' AND "number"=20;
## Task Generate a SQL query to answer the following question: `What was the name for the locomotive with a type of 2-8-0 and a number of 20?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" tex...
SELECT "year_won" FROM "missed_the_cut" WHERE "to_par">4 AND "total"<157;
## Task Generate a SQL query to answer the following question: `What is the Year won for the player with a larger than 4 To par and less the 157 Total?` ### 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,...
SELECT AVG("total") FROM "missed_the_cut" WHERE "to_par"<4 AND "year_won">1983;
## Task Generate a SQL query to answer the following question: `What is the Total for the Player who won after 1983 with less than 4 To par?` ### 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_wo...
SELECT COUNT("total") FROM "missed_the_cut" WHERE "to_par"<4 AND "year_won"<1983;
## Task Generate a SQL query to answer the following question: `What is the Total of the player who won before 1983 with a smaller than 4 To par?` ### 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, "ye...
SELECT "venue" FROM "england_in_south_africa_1913_4" WHERE "result"='draw';
## Task Generate a SQL query to answer the following question: `Which venue led to a draw?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "england_in_south_africa_1913_4" ( "date" text, "home_captain" text, "away_captain" text, "venue" text, ...
SELECT MAX("stolen_ends") FROM "standings" WHERE "skip"='ludmila privivkova';
## Task Generate a SQL query to answer the following question: `What is the highest Stolen Ends when ludmila privivkova shows for skip?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "standings" ( "nation" text, "skip" text, "ends_won" real, "e...
SELECT SUM("blank_ends") FROM "standings" WHERE "nation"='denmark' AND "ends_lost"<42;
## Task Generate a SQL query to answer the following question: `What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?` ### Database Schema This query will run on a database whose schema is represented in this string: CREATE TABLE "standings" ( "nation" text, "skip" text, "ends_won" real...