question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
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?
CREATE TABLE "current_clubs_2014_season" ( "club" text, "position_in_2013" text, "first_season" real, "first_season_of_current_spell" real, "number_of_seasons_in_superettan" real, "number_of_seasons_in_second_tier" real );
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;
2-1560673-1
What was the ranking of Beirasar Rosalía, the year they played 32 games?
CREATE TABLE "points" ( "rank" real, "name" text, "team" text, "games" real, "points" real );
SELECT MAX("rank") FROM "points" WHERE "team"='beirasar rosalía' AND "games"<32;
2-16176685-3
How many points did Antwain Barbour score in the year he played 39 games?
CREATE TABLE "points" ( "rank" real, "name" text, "team" text, "games" real, "points" real );
SELECT SUM("points") FROM "points" WHERE "name"='antwain barbour' AND "games"<39;
2-16176685-3
What team was Paolo Quinteros on?
CREATE TABLE "points" ( "rank" real, "name" text, "team" text, "games" real, "points" real );
SELECT "team" FROM "points" WHERE "name"='paolo quinteros';
2-16176685-3
Was the record of 8-1 (1) a win or a loss?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" text, "time" text, "location" text );
SELECT "res" FROM "mixed_martial_arts_record" WHERE "record"='8-1 (1)';
2-15749311-2
In what event was the technical decision (split) method used?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" text, "time" text, "location" text );
SELECT "event" FROM "mixed_martial_arts_record" WHERE "method"='technical decision (split)';
2-15749311-2
What are the average play-offs that have an FA Cup greater than 3?
CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "play_offs" real, "fa_cup" real, "fa_trophy" real, "total" real );
SELECT AVG("play_offs") FROM "topscorers" WHERE "fa_cup">3;
2-15658986-4
How many totals have a play-off less than 0?
CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "play_offs" real, "fa_cup" real, "fa_trophy" real, "total" real );
SELECT COUNT("total") FROM "topscorers" WHERE "play_offs"<0;
2-15658986-4
Which league has an FA cup greater than 0, with a total greater than 21?
CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "play_offs" real, "fa_cup" real, "fa_trophy" real, "total" real );
SELECT "league" FROM "topscorers" WHERE "fa_cup">0 AND "total">21;
2-15658986-4
What is the highest play-offs that have stevenage borough as the club, and a total greater than 21?
CREATE TABLE "topscorers" ( "player" text, "club" text, "league" real, "play_offs" real, "fa_cup" real, "fa_trophy" real, "total" real );
SELECT MAX("play_offs") FROM "topscorers" WHERE "club"='stevenage borough' AND "total">21;
2-15658986-4
What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" text, "2013" text );
SELECT "2012" FROM "doubles_performance_timeline" WHERE "2003"='2r' AND "tournament"='wimbledon';
2-1551805-11
What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" text, "2013" text );
SELECT "2012" FROM "doubles_performance_timeline" WHERE "2013"='2r' AND "tournament"='wimbledon';
2-1551805-11
What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" text, "2013" text );
SELECT "2003" FROM "doubles_performance_timeline" WHERE "2012"='1r' AND "2004"='2r' AND "tournament"='australian open';
2-1551805-11
What is the name of the tournament that has the results of 2003 2r and 2004 1r?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" text, "2013" text );
SELECT "tournament" FROM "doubles_performance_timeline" WHERE "2003"='2r' AND "2004"='1r';
2-1551805-11
What is the results in 2004 that has a 2013 result of 2r?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" text, "2013" text );
SELECT "2004" FROM "doubles_performance_timeline" WHERE "2013"='2r';
2-1551805-11
What is the result from 2003 from the US Open?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2003" text, "2004" text, "2012" text, "2013" text );
SELECT "2003" FROM "doubles_performance_timeline" WHERE "tournament"='us open';
2-1551805-11
What is the height of the player born on June 24, 1964, with a weight over 84 kg?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "height_cm" real, "weight_kg" real, "birthdate" text, "birthplace" text, "1986_1987_team" text );
SELECT AVG("height_cm") FROM "list_of_united_states_national_ice_hocke" WHERE "weight_kg">84 AND "birthdate"='june 24, 1964';
2-15715109-41
On what date was the player from Melrose, Massachusetts born?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "height_cm" real, "weight_kg" real, "birthdate" text, "birthplace" text, "1986_1987_team" text );
SELECT "birthdate" FROM "list_of_united_states_national_ice_hocke" WHERE "birthplace"='melrose, massachusetts';
2-15715109-41
What is the height of the player from the Washington Capitals, who was born in Detroit, Michigan and has a jersey number under #11?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "height_cm" real, "weight_kg" real, "birthdate" text, "birthplace" text, "1986_1987_team" text );
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;
2-15715109-41
What is Date, when Event is Billabong Pro?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "date" FROM "tournaments" WHERE "event"='billabong pro';
2-16135219-3
What is Location, when Date is December 8-December 20?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "location" FROM "tournaments" WHERE "date"='december 8-december 20';
2-16135219-3
What is Runner-up, when Event is Mancora Peru Classic?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "runner_up" FROM "tournaments" WHERE "event"='mancora peru classic';
2-16135219-3
What is Event, when Date is August 20-August 27?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "event" FROM "tournaments" WHERE "date"='august 20-august 27';
2-16135219-3
What is Date when Runner-up is Sofía Mulánovich ( per )?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "date" FROM "tournaments" WHERE "runner_up"='sofía mulánovich ( per )';
2-16135219-3
What is Country, when Event is Rip Curl Women's Pro?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "country" FROM "tournaments" WHERE "event"='rip curl women''s pro';
2-16135219-3
What is the highest win percentage when there were 23 losses?
CREATE TABLE "seasons" ( "season" text, "conference" text, "division" text, "finish" text, "wins" real, "losses" real, "winpct" real );
SELECT MAX("winpct") FROM "seasons" WHERE "losses"=23;
2-15685366-3
Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?
CREATE TABLE "seasons" ( "season" text, "conference" text, "division" text, "finish" text, "wins" real, "losses" real, "winpct" real );
SELECT "finish" FROM "seasons" WHERE "winpct">0.598 AND "wins"<53;
2-15685366-3
What is the 2007 Team with player Deshaun Foster?
CREATE TABLE "signings" ( "pos" text, "player" text, "free_agent_type" text, "2007_team" text, "contract" text );
SELECT "2007_team" FROM "signings" WHERE "player"='deshaun foster';
2-15623820-1
What is the Free Agent Type for player bryant johnson?
CREATE TABLE "signings" ( "pos" text, "player" text, "free_agent_type" text, "2007_team" text, "contract" text );
SELECT "free_agent_type" FROM "signings" WHERE "player"='bryant johnson';
2-15623820-1
What is the High assists with a Date that is march 31?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "date"='march 31';
2-15873014-7
What is the Score with a Date that is march 12?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "date"='march 12';
2-15873014-7
What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2?
CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("silver") FROM "medals_table" WHERE "bronze">1 AND "gold"<2 AND "total"<2;
2-15807776-2
What average rank that has a silver less than 0?
CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT AVG("rank") FROM "medals_table" WHERE "silver"<0;
2-15807776-2
How many silver have 4 as the total with a bronze less than 2?
CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("silver") FROM "medals_table" WHERE "total"=4 AND "bronze"<2;
2-15807776-2
How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?
CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT SUM("total") FROM "medals_table" WHERE "rank">4 AND "nation"='czech republic' AND "bronze">0;
2-15807776-2
What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?
CREATE TABLE "medals_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT AVG("total") FROM "medals_table" WHERE "gold">0 AND "silver">0 AND "bronze">2;
2-15807776-2
Which country has an Indigenous mining production 2006 of 0?
CREATE TABLE "uranium_demand_mining_production_and_def" ( "country" text, "uranium_required_2006_08" text, "pct_of_world_demand" text, "indigenous_mining_production_2006" text, "deficit_surplus" text );
SELECT "country" FROM "uranium_demand_mining_production_and_def" WHERE "indigenous_mining_production_2006"='0';
2-15624586-2
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?
CREATE TABLE "brazil_s_15_busiest_airports_by_passenge" ( "rank" real, "location" text, "total_passengers" real, "annual_change" text, "capacity" real, "capacity_in_use" text );
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';
2-15494883-11
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?
CREATE TABLE "brazil_s_15_busiest_airports_by_passenge" ( "rank" real, "location" text, "total_passengers" real, "annual_change" text, "capacity" real, "capacity_in_use" text );
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';
2-15494883-11
What is the capacity in use of the airport in Rio de Janeiro with an annual change of 40.53%?
CREATE TABLE "brazil_s_15_busiest_airports_by_passenge" ( "rank" real, "location" text, "total_passengers" real, "annual_change" text, "capacity" real, "capacity_in_use" text );
SELECT "capacity_in_use" FROM "brazil_s_15_busiest_airports_by_passenge" WHERE "location"='rio de janeiro' AND "annual_change"='40.53%';
2-15494883-11
What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT SUM("silver") FROM "medal_table" WHERE "total"<6 AND "rank"='6' AND "nation"='bulgaria';
2-15381310-1
What nation has a bronze of 2 with a total less than 5 and rank of 6?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT "nation" FROM "medal_table" WHERE "bronze"=2 AND "total"<5 AND "rank"='6';
2-15381310-1
What is the lowest Total for rank 3 with more than 4 gold?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("total") FROM "medal_table" WHERE "rank"='3' AND "gold">4;
2-15381310-1
What is the lowest Total for Italy with less than 0 silver?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("total") FROM "medal_table" WHERE "nation"='italy' AND "silver"<0;
2-15381310-1
What is the Nation with less than 1 silver, and the total is 1, and bronze is less than 0?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT "nation" FROM "medal_table" WHERE "silver"<1 AND "total"=1 AND "bronze"=0;
2-15381310-1
What number has 2002-2003 as the season?
CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text );
SELECT "number" FROM "b" WHERE "season"='2002-2003';
2-15463188-2
What position has 2008 as the season?
CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text );
SELECT "position" FROM "b" WHERE "season"='2008';
2-15463188-2
What name has 50 as the number?
CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text );
SELECT "name" FROM "b" WHERE "number"='50';
2-15463188-2
What number has 2008 as the season?
CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text );
SELECT "number" FROM "b" WHERE "season"='2008';
2-15463188-2
What name has 8 as the number?
CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text );
SELECT "name" FROM "b" WHERE "number"='8';
2-15463188-2
What position has ronjay buenafe as the name?
CREATE TABLE "b" ( "name" text, "position" text, "number" text, "season" text, "acquisition_via" text );
SELECT "position" FROM "b" WHERE "name"='ronjay buenafe';
2-15463188-2
What was the lowest long with 26 yards?
CREATE TABLE "rushing" ( "player" text, "att" real, "yards" real, "avg" real, "long" real, "fum_l" real );
SELECT MIN("long") FROM "rushing" WHERE "yards"=26;
2-15582870-6
What was the highest average when Fuml was 0?
CREATE TABLE "rushing" ( "player" text, "att" real, "yards" real, "avg" real, "long" real, "fum_l" real );
SELECT MAX("avg") FROM "rushing" WHERE "fum_l"<0;
2-15582870-6
What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?
CREATE TABLE "esiliiga" ( "club" text, "2012" text, "seasons_in_esiliiga" real, "current_run_since" real, "titles" real, "last_title" text );
SELECT MAX("current_run_since") FROM "esiliiga" WHERE "last_title"='2010' AND "seasons_in_esiliiga">10;
2-1560166-1
What is the 2012 season in Esiliiga more than 4, and more than 0 titles?
CREATE TABLE "esiliiga" ( "club" text, "2012" text, "seasons_in_esiliiga" real, "current_run_since" real, "titles" real, "last_title" text );
SELECT "2012" FROM "esiliiga" WHERE "seasons_in_esiliiga">4 AND "titles">0;
2-1560166-1
What is the population on average with a per capita of 1,158, and a 2011 GDP less than 6,199?
CREATE TABLE "economic_data" ( "country" text, "population" real, "gdp_2011_in_millions_usd" real, "gdp_2012_in_millions_usd" real, "per_capita" real );
SELECT AVG("population") FROM "economic_data" WHERE "per_capita"='1,158' AND "gdp_2011_in_millions_usd"<'6,199';
2-1559951-1
What 20-29 was in season 2008?
CREATE TABLE "career_stats" ( "season" text, "pat_pct" text, "20_29" text, "30_39" text, "40_49" text, "fg_fga" text, "fg_pct" text, "long" real, "points" real );
SELECT "20_29" FROM "career_stats" WHERE "season"='2008';
2-1591541-1
What were the lowest amount of points for season 1994?
CREATE TABLE "career_stats" ( "season" text, "pat_pct" text, "20_29" text, "30_39" text, "40_49" text, "fg_fga" text, "fg_pct" text, "long" real, "points" real );
SELECT MIN("points") FROM "career_stats" WHERE "season"='1994';
2-1591541-1
Which 20-29 had a season of 1997?
CREATE TABLE "career_stats" ( "season" text, "pat_pct" text, "20_29" text, "30_39" text, "40_49" text, "fg_fga" text, "fg_pct" text, "long" real, "points" real );
SELECT "20_29" FROM "career_stats" WHERE "season"='1997';
2-1591541-1
What is the Postion, when the Name is Rod Paavola?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "birthdate" text, "birthplace" text, "club_team" text );
SELECT "position" FROM "list_of_united_states_national_ice_hocke" WHERE "name"='rod paavola';
2-15715109-8
What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "birthdate" text, "birthplace" text, "club_team" text );
SELECT COUNT("jersey_num") FROM "list_of_united_states_national_ice_hocke" WHERE "position"='w' AND "birthdate"='17 october 1932';
2-15715109-8
What is the Birthplace, when the Name is Bob Mcvey?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "birthdate" text, "birthplace" text, "club_team" text );
SELECT "birthplace" FROM "list_of_united_states_national_ice_hocke" WHERE "name"='bob mcvey';
2-15715109-8
What is the Name, when the Position is W, and when the Jersey # is 11?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "birthdate" text, "birthplace" text, "club_team" text );
SELECT "name" FROM "list_of_united_states_national_ice_hocke" WHERE "position"='w' AND "jersey_num"=11;
2-15715109-8
What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian?
CREATE TABLE "list_of_united_states_national_ice_hocke" ( "position" text, "jersey_num" real, "name" text, "birthdate" text, "birthplace" text, "club_team" text );
SELECT "position" FROM "list_of_united_states_national_ice_hocke" WHERE "club_team"='warroad lakers' AND "name"='roger christian';
2-15715109-8
What home has 122-28 as the score?
CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" text );
SELECT "home" FROM "round_twelve" WHERE "score"='122-28';
2-15764352-12
What ground has etobicoke kangaroos as the home?
CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" text );
SELECT "ground" FROM "round_twelve" WHERE "home"='etobicoke kangaroos';
2-15764352-12
What time has humber college north as the ground, and toronto downtown dingos as the home?
CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" text );
SELECT "time" FROM "round_twelve" WHERE "ground"='humber college north' AND "home"='toronto downtown dingos';
2-15764352-12
What score has Toronto Eagles as the home?
CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" text );
SELECT "score" FROM "round_twelve" WHERE "home"='toronto eagles';
2-15764352-12
What date has high park demons as the away?
CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" text );
SELECT "date" FROM "round_twelve" WHERE "away"='high park demons';
2-15764352-12
What away has toronto downtown dingos as the home?
CREATE TABLE "round_twelve" ( "date" text, "time" text, "home" text, "away" text, "score" text, "ground" text );
SELECT "away" FROM "round_twelve" WHERE "home"='toronto downtown dingos';
2-15764352-12
Who was the winner from the Rip Curl Pro Search?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "winner" FROM "tournaments" WHERE "event"='rip curl pro search';
2-16157018-1
What was the location of the tournament held in Spain?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "location" FROM "tournaments" WHERE "country"='spain';
2-16157018-1
What was the date of the tournament held in Indonesia?
CREATE TABLE "tournaments" ( "date" text, "location" text, "country" text, "event" text, "winner" text, "runner_up" text );
SELECT "date" FROM "tournaments" WHERE "country"='indonesia';
2-16157018-1
What is the average Lost when the difference is - 3, and a Played is less than 10?
CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, "points" real, "played" real, "drawn" real, "lost" real, "against" real, "difference" text );
SELECT AVG("lost") FROM "campeonato_paulista" WHERE "difference"='- 3' AND "played"<10;
2-15351508-1
What is the Position when the Drawn is less than 2, with a Difference of 2?
CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, "points" real, "played" real, "drawn" real, "lost" real, "against" real, "difference" text );
SELECT "position" FROM "campeonato_paulista" WHERE "drawn"<2 AND "difference"='2';
2-15351508-1
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.
CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, "points" real, "played" real, "drawn" real, "lost" real, "against" real, "difference" text );
SELECT SUM("against") FROM "campeonato_paulista" WHERE "drawn"<2 AND "position">8 AND "lost">6;
2-15351508-1
What is the Difference with a position of less than 3, and, 17 points.
CREATE TABLE "campeonato_paulista" ( "position" real, "team" text, "points" real, "played" real, "drawn" real, "lost" real, "against" real, "difference" text );
SELECT "difference" FROM "campeonato_paulista" WHERE "position"<3 AND "points"=17;
2-15351508-1
What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top_25" real, "events" real, "cuts_made" real );
SELECT AVG("top_5") FROM "summary" WHERE "tournament"='u.s. open' AND "cuts_made">10;
2-1544297-7
What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top_25" real, "events" real, "cuts_made" real );
SELECT SUM("events") FROM "summary" WHERE "top_10"=7 AND "top_5">4;
2-1544297-7
What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top_25" real, "events" real, "cuts_made" real );
SELECT SUM("top_5") FROM "summary" WHERE "tournament"='totals' AND "events">86;
2-1544297-7
What is the average Top-10, when Wins is less than 0?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top_25" real, "events" real, "cuts_made" real );
SELECT AVG("top_10") FROM "summary" WHERE "wins"<0;
2-1544297-7
What is the total number of Top-25, when Events is greater than 86?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top_25" real, "events" real, "cuts_made" real );
SELECT COUNT("top_25") FROM "summary" WHERE "events">86;
2-1544297-7
What 2011 has 4r as the 2008?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text );
SELECT "2011" FROM "singles_performance_timeline" WHERE "2008"='4r';
2-15746889-11
What 2007 has wimbledon as the tournament?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text );
SELECT "2007" FROM "singles_performance_timeline" WHERE "tournament"='wimbledon';
2-15746889-11
What 2006 has 1r as the 2007?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text );
SELECT "2006" FROM "singles_performance_timeline" WHERE "2007"='1r';
2-15746889-11
What tournament has q2 as the 2004?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text );
SELECT "tournament" FROM "singles_performance_timeline" WHERE "2004"='q2';
2-15746889-11
What 2009 has grand slam tournaments of 2008?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text );
SELECT "2009" FROM "singles_performance_timeline" WHERE "2008"='grand slam tournaments';
2-15746889-11
What 2006 has 0-0 as the 2011?
CREATE TABLE "singles_performance_timeline" ( "tournament" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text );
SELECT "2006" FROM "singles_performance_timeline" WHERE "2011"='0-0';
2-15746889-11
What is the Lineup from a Match that is 27?
CREATE TABLE "matches_and_goals_scored_at_world_cup_an" ( "match" text, "date" text, "location" text, "lineup" text, "result" text, "competition" text );
SELECT "lineup" FROM "matches_and_goals_scored_at_world_cup_an" WHERE "match"='27';
2-157470-2
What is the date for Orangeville?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, "works_number" text );
SELECT "date" FROM "locomotives" WHERE "name"='orangeville';
2-15339223-1
Who is the builder with a works number of 2534?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, "works_number" text );
SELECT "builder" FROM "locomotives" WHERE "works_number"='2534';
2-15339223-1
Who is the name with a works number of 809?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, "works_number" text );
SELECT "name" FROM "locomotives" WHERE "works_number"='809';
2-15339223-1
In early 1873, Owen sound had what works number?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, "works_number" text );
SELECT "works_number" FROM "locomotives" WHERE "date"='early 1873' AND "name"='owen sound';
2-15339223-1
What was the name for the locomotive with a type of 2-8-0 and a number of 20?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "date" text, "works_number" text );
SELECT "name" FROM "locomotives" WHERE "type"='2-8-0' AND "number"=20;
2-15339223-1
What is the Year won for the player with a larger than 4 To par and less the 157 Total?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_won" real, "total" real, "to_par" real );
SELECT "year_won" FROM "missed_the_cut" WHERE "to_par">4 AND "total"<157;
2-16092658-3
What is the Total for the Player who won after 1983 with less than 4 To par?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_won" real, "total" real, "to_par" real );
SELECT AVG("total") FROM "missed_the_cut" WHERE "to_par"<4 AND "year_won">1983;
2-16092658-3
What is the Total of the player who won before 1983 with a smaller than 4 To par?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_won" real, "total" real, "to_par" real );
SELECT COUNT("total") FROM "missed_the_cut" WHERE "to_par"<4 AND "year_won"<1983;
2-16092658-3
Which venue led to a draw?
CREATE TABLE "england_in_south_africa_1913_4" ( "date" text, "home_captain" text, "away_captain" text, "venue" text, "result" text );
SELECT "venue" FROM "england_in_south_africa_1913_4" WHERE "result"='draw';
2-1598207-14
What is the highest Stolen Ends when ludmila privivkova shows for skip?
CREATE TABLE "standings" ( "nation" text, "skip" text, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" text );
SELECT MAX("stolen_ends") FROM "standings" WHERE "skip"='ludmila privivkova';
2-1543845-3
What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?
CREATE TABLE "standings" ( "nation" text, "skip" text, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" text );
SELECT SUM("blank_ends") FROM "standings" WHERE "nation"='denmark' AND "ends_lost"<42;
2-1543845-3