question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Name the date for circuit of interlagos
CREATE TABLE "championship_review" ( "race" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "constructor" text, "tyre" text, "report" text );
SELECT "date" FROM "championship_review" WHERE "circuit"='interlagos';
2-1140086-1
What was the event for vinny magalhães?
CREATE TABLE "submission_grappling_record" ( "result" text, "opponent" text, "method" text, "event" text, "date" real );
SELECT "event" FROM "submission_grappling_record" WHERE "opponent"='vinny magalhães';
2-11630690-3
What was the date for renato ferreira?
CREATE TABLE "submission_grappling_record" ( "result" text, "opponent" text, "method" text, "event" text, "date" real );
SELECT "date" FROM "submission_grappling_record" WHERE "opponent"='renato ferreira';
2-11630690-3
What was the event with leonardo chocolate in 2009?
CREATE TABLE "submission_grappling_record" ( "result" text, "opponent" text, "method" text, "event" text, "date" real );
SELECT "event" FROM "submission_grappling_record" WHERE "date"=2009 AND "opponent"='leonardo chocolate';
2-11630690-3
What was the result for the opponent being gerardi rinaldi in 2009?
CREATE TABLE "submission_grappling_record" ( "result" text, "opponent" text, "method" text, "event" text, "date" real );
SELECT "result" FROM "submission_grappling_record" WHERE "date"=2009 AND "opponent"='gerardi rinaldi';
2-11630690-3
What is the away team that has a score of 10.9 (69)?
CREATE TABLE "round_5" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_5" WHERE "away_team_score"='10.9 (69)';
2-10788451-5
The home team has a score of 12.9 (81) what is the score of the away team?
CREATE TABLE "round_5" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team_score" FROM "round_5" WHERE "home_team_score"='12.9 (81)';
2-10788451-5
Tell me the eastern #1 for week of 5
CREATE TABLE "division_races" ( "week" real, "eastern_num1" text, "eastern_num2" text, "western_num1" text, "western_num2" text );
SELECT "eastern_num1" FROM "division_races" WHERE "week"=5;
2-11366592-1
Tell me the eastern #2 for western #2 of oakland
CREATE TABLE "division_races" ( "week" real, "eastern_num1" text, "eastern_num2" text, "western_num1" text, "western_num2" text );
SELECT "eastern_num2" FROM "division_races" WHERE "western_num2"='oakland';
2-11366592-1
Tell me the wekk for eastern #2 of houston
CREATE TABLE "division_races" ( "week" real, "eastern_num1" text, "eastern_num2" text, "western_num1" text, "western_num2" text );
SELECT "week" FROM "division_races" WHERE "eastern_num2"='houston';
2-11366592-1
How many people attended the game when the away team scored 10.11 (71)?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT SUM("crowd") FROM "round_8" WHERE "away_team_score"='10.11 (71)';
2-10869537-8
Which home team had a crowd larger than 20,822 at VFL Park?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team" FROM "round_8" WHERE "crowd">'20,822' AND "venue"='vfl park';
2-10869537-8
Which home team played against the away team Carlton?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team" FROM "round_8" WHERE "away_team"='carlton';
2-10869537-8
Where was the game played where the home team was Collingwood?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_8" WHERE "home_team"='collingwood';
2-10869537-8
What is the home score with a crowd larger than 25,603?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_8" WHERE "crowd">'25,603';
2-10869537-8
What is the date of the home team from South Melbourne?
CREATE TABLE "round_6" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_6" WHERE "home_team"='south melbourne';
2-10806592-6
What is the score of the away team with the home team Fitzroy?
CREATE TABLE "round_6" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team_score" FROM "round_6" WHERE "home_team"='fitzroy';
2-10806592-6
What venue did the away team footscray play at?
CREATE TABLE "round_13" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_13" WHERE "away_team"='footscray';
2-10788451-13
When the home team scored 8.8 (56), what team were they playing?
CREATE TABLE "round_13" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_13" WHERE "home_team_score"='8.8 (56)';
2-10788451-13
When melbourne was the away team, what was the lowest crowd turnout they had?
CREATE TABLE "round_13" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT MIN("crowd") FROM "round_13" WHERE "away_team"='melbourne';
2-10788451-13
Which away team plays at the venue glenferrie oval?
CREATE TABLE "round_13" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_13" WHERE "venue"='glenferrie oval';
2-10788451-13
When the home team scored 11.15 (81), what did the Away team score?
CREATE TABLE "round_13" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team_score" FROM "round_13" WHERE "home_team_score"='11.15 (81)';
2-10788451-13
Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19
CREATE TABLE "ranking_of_chinese_provinces_by_gdp_per_" ( "year" text, "2010" real, "2009" real, "2008" real, "2005" real, "2000" real );
SELECT MIN("2005") FROM "ranking_of_chinese_provinces_by_gdp_per_" WHERE "2009"=19 AND "2010"<21;
2-1145364-6
Name the total number of 2010 for when 2009 is less than 14, 2008 is less than 15 and 2005 is 3
CREATE TABLE "ranking_of_chinese_provinces_by_gdp_per_" ( "year" text, "2010" real, "2009" real, "2008" real, "2005" real, "2000" real );
SELECT COUNT("2010") FROM "ranking_of_chinese_provinces_by_gdp_per_" WHERE "2009"<14 AND "2008"<15 AND "2005"=3;
2-1145364-6
Name the average 2008 for beijing and 2005 more than 2
CREATE TABLE "ranking_of_chinese_provinces_by_gdp_per_" ( "year" text, "2010" real, "2009" real, "2008" real, "2005" real, "2000" real );
SELECT AVG("2008") FROM "ranking_of_chinese_provinces_by_gdp_per_" WHERE "year"='beijing' AND "2005">2;
2-1145364-6
Name the lowest 2008 for guizhou when 2005 is less than 31
CREATE TABLE "ranking_of_chinese_provinces_by_gdp_per_" ( "year" text, "2010" real, "2009" real, "2008" real, "2005" real, "2000" real );
SELECT MIN("2008") FROM "ranking_of_chinese_provinces_by_gdp_per_" WHERE "year"='guizhou' AND "2005"<31;
2-1145364-6
Name the sum of 2010 for 2000 of 17 and 2005 more than 16
CREATE TABLE "ranking_of_chinese_provinces_by_gdp_per_" ( "year" text, "2010" real, "2009" real, "2008" real, "2005" real, "2000" real );
SELECT SUM("2010") FROM "ranking_of_chinese_provinces_by_gdp_per_" WHERE "2000"=17 AND "2005">16;
2-1145364-6
What is the total of crowd at Venue of mcg?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT SUM("crowd") FROM "round_3" WHERE "venue"='mcg';
2-10789881-3
What is the smallest crowd with a Home team score of 7.10 (52)?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT MIN("crowd") FROM "round_3" WHERE "home_team_score"='7.10 (52)';
2-10789881-3
Which date has a Home team score of 6.12 (48)?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_3" WHERE "home_team_score"='6.12 (48)';
2-10789881-3
Which away team has a score of 11.17 (83)?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_3" WHERE "away_team_score"='11.17 (83)';
2-10789881-3
Tell me the number of regions with an area of 58.81
CREATE TABLE "list_of_municipalities_in_quebec" ( "code" real, "type" text, "name" text, "area_km_2" real, "population" real, "regional_county_municipality" text, "region" real );
SELECT COUNT("region") FROM "list_of_municipalities_in_quebec" WHERE "area_km_2"=58.81;
2-11218948-12
what is the rank when the bronze is less than 0?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("rank") FROM "medal_table" WHERE "bronze"<0;
2-11255296-5
what is the highest rank when the bronze is less than 1 and the total is less than 1?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MAX("rank") FROM "medal_table" WHERE "bronze"<1 AND "total"<1;
2-11255296-5
what is the lowest amount of silver when the gold is less than 0?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("silver") FROM "medal_table" WHERE "gold"<0;
2-11255296-5
what is the average number of gold when the rank is more than 5?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT AVG("gold") FROM "medal_table" WHERE "rank">5;
2-11255296-5
what is the highest amount of silver when gold is 0 for soviet union?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MAX("silver") FROM "medal_table" WHERE "gold"=0 AND "nation"='soviet union';
2-11255296-5
What position does adam rachel play?
CREATE TABLE "1990s" ( "player" text, "position" text, "first_team_debut" text, "first_team_appearances" real, "first_team_goals" real, "current_club" text );
SELECT "position" FROM "1990s" WHERE "player"='adam rachel';
2-11526405-3
What player has over 1 first apperance and over 32 first team goals?
CREATE TABLE "1990s" ( "player" text, "position" text, "first_team_debut" text, "first_team_appearances" real, "first_team_goals" real, "current_club" text );
SELECT "player" FROM "1990s" WHERE "first_team_appearances">1 AND "first_team_goals"=32;
2-11526405-3
What is the average speed for ships before 1974 with over 1.73 passengers?
CREATE TABLE "ro_ro_passenger_ships" ( "ship_name" text, "year" real, "length" text, "width" text, "passengers" real, "vessels" real, "speed" real );
SELECT AVG("speed") FROM "ro_ro_passenger_ships" WHERE "year"<1974 AND "passengers">1.73;
2-11570929-1
How many vessels are named aqua jewel?
CREATE TABLE "ro_ro_passenger_ships" ( "ship_name" text, "year" real, "length" text, "width" text, "passengers" real, "vessels" real, "speed" real );
SELECT COUNT("vessels") FROM "ro_ro_passenger_ships" WHERE "ship_name"='aqua jewel';
2-11570929-1
How many districts in Baltimore City does Cheryl Glenn dictate?
CREATE TABLE "current_members_of_the_baltimore_city_de" ( "district" real, "place_of_birth" text, "delegate" text, "party" text, "took_office" real, "committee" text );
SELECT COUNT("district") FROM "current_members_of_the_baltimore_city_de" WHERE "place_of_birth"='baltimore city' AND "delegate"='cheryl glenn';
2-11873520-1
Which party belongs to district 41, and is delegated by Jill P. Carter?
CREATE TABLE "current_members_of_the_baltimore_city_de" ( "district" real, "place_of_birth" text, "delegate" text, "party" text, "took_office" real, "committee" text );
SELECT "party" FROM "current_members_of_the_baltimore_city_de" WHERE "district"=41 AND "delegate"='jill p. carter';
2-11873520-1
Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee?
CREATE TABLE "current_members_of_the_baltimore_city_de" ( "district" real, "place_of_birth" text, "delegate" text, "party" text, "took_office" real, "committee" text );
SELECT "place_of_birth" FROM "current_members_of_the_baltimore_city_de" WHERE "took_office">1982 AND "district"<43 AND "committee"='health and government operations';
2-11873520-1
Where was the delegate belonging to the Judiciary committee of district 43 born?
CREATE TABLE "current_members_of_the_baltimore_city_de" ( "district" real, "place_of_birth" text, "delegate" text, "party" text, "took_office" real, "committee" text );
SELECT "place_of_birth" FROM "current_members_of_the_baltimore_city_de" WHERE "committee"='judiciary' AND "district"=43;
2-11873520-1
What is the largest district for delegate Cheryl Glenn, that she had taken after 2006?
CREATE TABLE "current_members_of_the_baltimore_city_de" ( "district" real, "place_of_birth" text, "delegate" text, "party" text, "took_office" real, "committee" text );
SELECT MAX("district") FROM "current_members_of_the_baltimore_city_de" WHERE "delegate"='cheryl glenn' AND "took_office">2006;
2-11873520-1
What is the average Viewers (m) for "aka", with a Rating larger than 3.3?
CREATE TABLE "u_s_nielsen_weekly_ratings" ( "episode" text, "rating" real, "share" real, "18_49_rating_share" text, "viewers_m" real );
SELECT AVG("viewers_m") FROM "u_s_nielsen_weekly_ratings" WHERE "episode"='\"aka\"' AND "rating">3.3;
2-11302562-2
What is the highest placing for marie mcneil / robert mccall, with less than 168.58?
CREATE TABLE "ice_dancing" ( "rank" real, "name" text, "nation" text, "points" real, "placings" real );
SELECT MAX("placings") FROM "ice_dancing" WHERE "name"='marie mcneil / robert mccall' AND "points"<168.58;
2-11178110-6
What was the date of the Mavericks home game?
CREATE TABLE "december" ( "date" text, "visitor" text, "score" text, "home" text, "leading_scorer" text, "attendance" real, "record" text );
SELECT "date" FROM "december" WHERE "home"='mavericks';
2-11963536-5
What is the highest displacement value for the R Fwd Auto Phase1?
CREATE TABLE "first_generation_models" ( "model" text, "power" text, "torque_rpm" text, "displacement_cc" real, "engine" text );
SELECT MAX("displacement_cc") FROM "first_generation_models" WHERE "model"='r fwd auto phase1';
2-1147701-1
What was the top crowd when the team scored 12.15 (87) at home?
CREATE TABLE "round_11" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT MAX("crowd") FROM "round_11" WHERE "home_team_score"='12.15 (87)';
2-10790804-11
What team played at lake oval while away?
CREATE TABLE "round_11" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_11" WHERE "venue"='lake oval';
2-10790804-11
What is the combined of Crowd that has a Home team which scored 12.15 (87)?
CREATE TABLE "round_11" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT SUM("crowd") FROM "round_11" WHERE "home_team_score"='12.15 (87)';
2-10790804-11
What is the combined of Crowd that has an away team which scored 19.15 (129)?
CREATE TABLE "round_11" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT SUM("crowd") FROM "round_11" WHERE "away_team_score"='19.15 (129)';
2-10790804-11
Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2
CREATE TABLE "top_athletes" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("silver") FROM "top_athletes" WHERE "gold"<1 AND "bronze"=0 AND "total"<2;
2-11036258-13
What is the traffic direction of 70th street?
CREATE TABLE "streets" ( "street" text, "west" text, "east" text, "num_of_lanes" text, "traffic_direction" text );
SELECT "traffic_direction" FROM "streets" WHERE "street"='70th street';
2-11748285-1
What is the traffic direction of 64th street with 2nd avenue to the west and 1 lane?
CREATE TABLE "streets" ( "street" text, "west" text, "east" text, "num_of_lanes" text, "traffic_direction" text );
SELECT "traffic_direction" FROM "streets" WHERE "west"='2nd avenue' AND "num_of_lanes"='1' AND "street"='64th street';
2-11748285-1
What is the traffic direction of 97th street?
CREATE TABLE "streets" ( "street" text, "west" text, "east" text, "num_of_lanes" text, "traffic_direction" text );
SELECT "traffic_direction" FROM "streets" WHERE "street"='97th street';
2-11748285-1
What is the # of lanes on 20th street?
CREATE TABLE "streets" ( "street" text, "west" text, "east" text, "num_of_lanes" text, "traffic_direction" text );
SELECT "num_of_lanes" FROM "streets" WHERE "street"='20th street';
2-11748285-1
What is the long of the player with 16 yards and less than 1 TD?
CREATE TABLE "running_backs" ( "place" real, "player_name" text, "yards" text, "td_s" real, "long" real );
SELECT SUM("long") FROM "running_backs" WHERE "yards"='16' AND "td_s"<1;
2-11486671-4
What is the highest place a player with 4 long and less than 2 TDs has?
CREATE TABLE "running_backs" ( "place" real, "player_name" text, "yards" text, "td_s" real, "long" real );
SELECT MIN("place") FROM "running_backs" WHERE "long"=4 AND "td_s"<2;
2-11486671-4
Who drove the Marlboro Mclaren Peugeot?
CREATE TABLE "drivers_and_constructors" ( "entrant" text, "constructor" text, "chassis" text, "tyre" text, "driver" text, "rounds" text );
SELECT "driver" FROM "drivers_and_constructors" WHERE "entrant"='marlboro mclaren peugeot';
2-1137702-1
What tyre did Mika Salo use for team Lotus?
CREATE TABLE "drivers_and_constructors" ( "entrant" text, "constructor" text, "chassis" text, "tyre" text, "driver" text, "rounds" text );
SELECT "tyre" FROM "drivers_and_constructors" WHERE "entrant"='team lotus' AND "driver"='mika salo';
2-1137702-1
Which driver drove the Tourtel Larrousse F1?
CREATE TABLE "drivers_and_constructors" ( "entrant" text, "constructor" text, "chassis" text, "tyre" text, "driver" text, "rounds" text );
SELECT "driver" FROM "drivers_and_constructors" WHERE "entrant"='tourtel larrousse f1';
2-1137702-1
Who constructed Gerhard Berger car that went all rounds?
CREATE TABLE "drivers_and_constructors" ( "entrant" text, "constructor" text, "chassis" text, "tyre" text, "driver" text, "rounds" text );
SELECT "constructor" FROM "drivers_and_constructors" WHERE "rounds"='all' AND "driver"='gerhard berger';
2-1137702-1
Who visited phoenix with a Record of 2–5–0?
CREATE TABLE "october" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT "visitor" FROM "october" WHERE "home"='phoenix' AND "record"='2–5–0';
2-11857058-3
What decision had a Record of 3–5–0?
CREATE TABLE "october" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT "decision" FROM "october" WHERE "record"='3–5–0';
2-11857058-3
What is the low attendance was based in phoenix with a Record of 1–0–0?
CREATE TABLE "october" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT MIN("attendance") FROM "october" WHERE "home"='phoenix' AND "record"='1–0–0';
2-11857058-3
What was the score did phoenix have with a Record of 3–6–0 at home?
CREATE TABLE "october" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT "score" FROM "october" WHERE "home"='phoenix' AND "record"='3–6–0';
2-11857058-3
What was the record while at home in Anaheim?
CREATE TABLE "october" ( "date" text, "visitor" text, "score" text, "home" text, "decision" text, "attendance" real, "record" text );
SELECT "record" FROM "october" WHERE "home"='anaheim';
2-11857058-3
Which inning were the Minnesota Twins in on 06-07-1961?
CREATE TABLE "roger_maris_61_home_runs" ( "number" real, "game" real, "date" text, "pitcher" text, "team" text, "inning" text );
SELECT "inning" FROM "roger_maris_61_home_runs" WHERE "team"='minnesota twins' AND "date"='06-07-1961';
2-11485403-1
How many people attended the game where the home team scored 8.10 (58)?
CREATE TABLE "round_7" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT MAX("crowd") FROM "round_7" WHERE "home_team_score"='8.10 (58)';
2-10783853-7
Who was the away team at the game held at Arden Street Oval?
CREATE TABLE "round_7" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_7" WHERE "venue"='arden street oval';
2-10783853-7
What is the name of the venue that away team footscray played at?
CREATE TABLE "round_12" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_12" WHERE "away_team"='footscray';
2-10809529-12
What is the name of the venue where the away team scored 10.11 (71)?
CREATE TABLE "round_12" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_12" WHERE "away_team_score"='10.11 (71)';
2-10809529-12
What date was the game played at princes park?
CREATE TABLE "round_12" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_12" WHERE "venue"='princes park';
2-10809529-12
Who is the away team that played at punt road oval where the crowd was larger than 17,000?
CREATE TABLE "round_12" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "away_team" FROM "round_12" WHERE "crowd">'17,000' AND "venue"='punt road oval';
2-10809529-12
How many tracks were Recorded 1964-01-08?
CREATE TABLE "track_listing" ( "track" real, "title" text, "translation" text, "composer" text, "recorded" text );
SELECT COUNT("track") FROM "track_listing" WHERE "recorded"='1964-01-08';
2-1187902-1
WhatTranslation has a Composer of jacques brel, rod mckuen?
CREATE TABLE "track_listing" ( "track" real, "title" text, "translation" text, "composer" text, "recorded" text );
SELECT "translation" FROM "track_listing" WHERE "composer"='jacques brel, rod mckuen';
2-1187902-1
Which recording has a Track larger than 2, and a Translation of the last meal?
CREATE TABLE "track_listing" ( "track" real, "title" text, "translation" text, "composer" text, "recorded" text );
SELECT "recorded" FROM "track_listing" WHERE "track">2 AND "translation"='the last meal';
2-1187902-1
Which title has a Track of 3?
CREATE TABLE "track_listing" ( "track" real, "title" text, "translation" text, "composer" text, "recorded" text );
SELECT "title" FROM "track_listing" WHERE "track"=3;
2-1187902-1
When was the home game when the New Jersey team's record became 7-23-7?
CREATE TABLE "december" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "date" FROM "december" WHERE "home"='new jersey' AND "record"='7-23-7';
2-12019734-5
What college has a pick of 11?
CREATE TABLE "nfl_draft" ( "round" real, "pick" real, "player_drafted_or_traded_for" text, "position" text, "college" text );
SELECT "college" FROM "nfl_draft" WHERE "pick"=11;
2-11159588-1
What is the average pick of Florida State?
CREATE TABLE "nfl_draft" ( "round" real, "pick" real, "player_drafted_or_traded_for" text, "position" text, "college" text );
SELECT AVG("pick") FROM "nfl_draft" WHERE "college"='florida state';
2-11159588-1
What is the average pick of San Diego State?
CREATE TABLE "nfl_draft" ( "round" real, "pick" real, "player_drafted_or_traded_for" text, "position" text, "college" text );
SELECT AVG("pick") FROM "nfl_draft" WHERE "college"='san diego state';
2-11159588-1
What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place?
CREATE TABLE "men" ( "rank" real, "name" text, "nation" text, "sp_fs" real, "points" real, "placings" real );
SELECT MIN("sp_fs") FROM "men" WHERE "name"='miljan begovic' AND "placings">189;
2-11178110-3
What is the average points value for a rank less than 12 for David Santee?
CREATE TABLE "men" ( "rank" real, "name" text, "nation" text, "sp_fs" real, "points" real, "placings" real );
SELECT AVG("points") FROM "men" WHERE "rank"<12 AND "name"='david santee';
2-11178110-3
What is the total number for Rank with 185.16 points and a SP+FS value greater than 5?
CREATE TABLE "men" ( "rank" real, "name" text, "nation" text, "sp_fs" real, "points" real, "placings" real );
SELECT COUNT("rank") FROM "men" WHERE "points"=185.16 AND "sp_fs">5;
2-11178110-3
What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1?
CREATE TABLE "men" ( "rank" real, "name" text, "nation" text, "sp_fs" real, "points" real, "placings" real );
SELECT MAX("sp_fs") FROM "men" WHERE "points">164.56 AND "rank">1 AND "name"='mitsuru matsumura';
2-11178110-3
When phonetic realisation is [[[|u]]], what is the variant with niqqud?
CREATE TABLE "pronunciation_in_modern_hebrew" ( "variant_with_niqqud" text, "without_niqqud" text, "phonemic_value" text, "phonetic_realisation" text, "english_example" text );
SELECT "variant_with_niqqud" FROM "pronunciation_in_modern_hebrew" WHERE "phonetic_realisation"='[[[|u]]]';
2-1137047-2
When a variant without niqqud is as middle letter: וו with a phonemic value of /v/, what is the variant with niqqud?
CREATE TABLE "pronunciation_in_modern_hebrew" ( "variant_with_niqqud" text, "without_niqqud" text, "phonemic_value" text, "phonetic_realisation" text, "english_example" text );
SELECT "variant_with_niqqud" FROM "pronunciation_in_modern_hebrew" WHERE "phonemic_value"='/v/' AND "without_niqqud"='as middle letter: וו';
2-1137047-2
What is the phonetic realisation if the phonemic value is /v/ and the without niqqud is as initial letter: ו?
CREATE TABLE "pronunciation_in_modern_hebrew" ( "variant_with_niqqud" text, "without_niqqud" text, "phonemic_value" text, "phonetic_realisation" text, "english_example" text );
SELECT "phonetic_realisation" FROM "pronunciation_in_modern_hebrew" WHERE "phonemic_value"='/v/' AND "without_niqqud"='as initial letter: ו';
2-1137047-2
Give me an english example of a variant with niqqud of וֹ?
CREATE TABLE "pronunciation_in_modern_hebrew" ( "variant_with_niqqud" text, "without_niqqud" text, "phonemic_value" text, "phonetic_realisation" text, "english_example" text );
SELECT "english_example" FROM "pronunciation_in_modern_hebrew" WHERE "variant_with_niqqud"='וֹ';
2-1137047-2
What is the variant with niqqud for a phonetic realisation of [[[|v]]]?
CREATE TABLE "pronunciation_in_modern_hebrew" ( "variant_with_niqqud" text, "without_niqqud" text, "phonemic_value" text, "phonetic_realisation" text, "english_example" text );
SELECT "variant_with_niqqud" FROM "pronunciation_in_modern_hebrew" WHERE "phonetic_realisation"='[[[|v]]]';
2-1137047-2
If a variant without niqqud is as final letter: ו or יו, what is the phonetic realisation?
CREATE TABLE "pronunciation_in_modern_hebrew" ( "variant_with_niqqud" text, "without_niqqud" text, "phonemic_value" text, "phonetic_realisation" text, "english_example" text );
SELECT "phonetic_realisation" FROM "pronunciation_in_modern_hebrew" WHERE "without_niqqud"='as final letter: ו or יו';
2-1137047-2
What position does pick 113 play?
CREATE TABLE "nfl_draft" ( "pick" real, "round" text, "player" text, "position" text, "school" text );
SELECT "position" FROM "nfl_draft" WHERE "pick"=113;
2-11452830-1
What is the school of Victor Jones, who was picked further than number 225?
CREATE TABLE "nfl_draft" ( "pick" real, "round" text, "player" text, "position" text, "school" text );
SELECT "school" FROM "nfl_draft" WHERE "pick">225 AND "player"='victor jones';
2-11452830-1
What is the total pick number of Virginia Tech?
CREATE TABLE "nfl_draft" ( "pick" real, "round" text, "player" text, "position" text, "school" text );
SELECT COUNT("pick") FROM "nfl_draft" WHERE "school"='virginia tech';
2-11452830-1
What is the position of a player from North Carolina?
CREATE TABLE "nfl_draft" ( "pick" real, "round" text, "player" text, "position" text, "school" text );
SELECT "position" FROM "nfl_draft" WHERE "school"='north carolina';
2-11452830-1
What is the home team score of St Kilda?
CREATE TABLE "round_19" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_19" WHERE "home_team"='st kilda';
2-1164217-19