question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
When was the kickoff time of the SB XXXVI?
CREATE TABLE "schedule" ( "week" text, "kickoff" text, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" text );
SELECT "kickoff" FROM "schedule" WHERE "week"='sb xxxvi';
2-10716061-3
What was the home team score for the game played at Princes Park?
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 "home_team_score" FROM "round_5" WHERE "venue"='princes park';
2-10701914-5
What event had a time of 6:37.73?
CREATE TABLE "master_world_records" ( "pool" text, "age_group" text, "time" text, "event" text, "date" text );
SELECT "event" FROM "master_world_records" WHERE "time"='6:37.73';
2-10711000-1
What is the time for the 50m breaststroke?
CREATE TABLE "master_world_records" ( "pool" text, "age_group" text, "time" text, "event" text, "date" text );
SELECT "time" FROM "master_world_records" WHERE "event"='50m breaststroke';
2-10711000-1
What age group has a time of 6:37.73 at the 200m breaststroke?
CREATE TABLE "master_world_records" ( "pool" text, "age_group" text, "time" text, "event" text, "date" text );
SELECT "age_group" FROM "master_world_records" WHERE "event"='200m breaststroke' AND "time"='6:37.73';
2-10711000-1
What date did the 90-94 year old have a tie of 1:25.91 at the LC pool?
CREATE TABLE "master_world_records" ( "pool" text, "age_group" text, "time" text, "event" text, "date" text );
SELECT "date" FROM "master_world_records" WHERE "age_group"='90-94' AND "pool"='lc' AND "time"='1:25.91';
2-10711000-1
How many point totals are there that rank higher than 9 and have a PPG avg higher than 13.4?
CREATE TABLE "points" ( "rank" real, "player" text, "years" text, "games" real, "ppg_avg" real, "total_points" real );
SELECT COUNT("total_points") FROM "points" WHERE "rank">9 AND "ppg_avg">13.4;
2-10645911-2
How many players played over 125 games and were named david gonzalvez?
CREATE TABLE "points" ( "rank" real, "player" text, "years" text, "games" real, "ppg_avg" real, "total_points" real );
SELECT COUNT("rank") FROM "points" WHERE "games">125 AND "player"='david gonzalvez';
2-10645911-2
Which host university is based in Missoula?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "host" FROM "first_and_second_rounds" WHERE "city"='missoula';
2-10708865-4
What state is the city of Ruston in?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "state" FROM "first_and_second_rounds" WHERE "city"='ruston';
2-10708865-4
Which mideast regional state contains the city of Seattle?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "state" FROM "first_and_second_rounds" WHERE "region"='mideast' AND "city"='seattle';
2-10708865-4
Which region does Old Dominion University represent?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "region" FROM "first_and_second_rounds" WHERE "host"='old dominion university';
2-10708865-4
Which state is University of Tennessee based in?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "state" FROM "first_and_second_rounds" WHERE "host"='university of tennessee';
2-10708865-4
What was the grid for Bruno Junqueira for Dale Coyne Racing?
CREATE TABLE "race" ( "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "points" real );
SELECT "grid" FROM "race" WHERE "team"='dale coyne racing' AND "driver"='bruno junqueira';
2-10651556-3
What were the highest points for less than 78 laps and on grid 5?
CREATE TABLE "race" ( "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "points" real );
SELECT MAX("points") FROM "race" WHERE "grid"=5 AND "laps"<78;
2-10651556-3
How many were in the crowd at the Junction Oval venue?
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 "crowd" FROM "round_6" WHERE "venue"='junction oval';
2-10773616-6
What was the away team score in the game at Arden Street Oval?
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 "venue"='arden street oval';
2-10773616-6
What was the date of the Arden Street Oval game?
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 "venue"='arden street oval';
2-10773616-6
What was the away team's score during the match where the crowd was larger than 25,819 and the home team scored 14.10 (94)?
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_score" FROM "round_3" WHERE "crowd">'25,819' AND "home_team_score"='14.10 (94)';
2-10776868-3
What is the sum of all the crowds at matches where the away team's score was 7.6 (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 SUM("crowd") FROM "round_3" WHERE "away_team_score"='7.6 (48)';
2-10776868-3
What venue saw a crowd larger than 29,840?
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 "venue" FROM "round_3" WHERE "crowd">'29,840';
2-10776868-3
When does week 11 start?
CREATE TABLE "schedule" ( "week" text, "date" text, "location" text, "opponent" text, "result" text );
SELECT "date" FROM "schedule" WHERE "week"='11';
2-10672678-2
Which week starts on December 28, 1997?
CREATE TABLE "schedule" ( "week" text, "date" text, "location" text, "opponent" text, "result" text );
SELECT "week" FROM "schedule" WHERE "date"='december 28, 1997';
2-10672678-2
When does week 1 start?
CREATE TABLE "schedule" ( "week" text, "date" text, "location" text, "opponent" text, "result" text );
SELECT "date" FROM "schedule" WHERE "week"='1';
2-10672678-2
Who one in the Tampa Bay Buccaneers?
CREATE TABLE "schedule" ( "week" text, "date" text, "location" text, "opponent" text, "result" text );
SELECT "result" FROM "schedule" WHERE "opponent"='tampa bay buccaneers';
2-10672678-2
Which week starts on November 23, 1997?
CREATE TABLE "schedule" ( "week" text, "date" text, "location" text, "opponent" text, "result" text );
SELECT "week" FROM "schedule" WHERE "date"='november 23, 1997';
2-10672678-2
Who is the home team that scored 8.15 (63)?
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 "home_team" FROM "round_6" WHERE "home_team_score"='8.15 (63)';
2-10776868-6
Who is the away team when the home team was 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" FROM "round_6" WHERE "home_team"='fitzroy';
2-10776868-6
What was Melbourne's score when they were the home team?
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 "home_team_score" FROM "round_6" WHERE "home_team"='melbourne';
2-10776868-6
What is the date of the game where Collingwood was the home team?
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"='collingwood';
2-10776868-6
Who watches North Melbourne when they are away?
CREATE TABLE "round_4" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "crowd" FROM "round_4" WHERE "away_team"='north melbourne';
2-10767641-4
What Away team is visiting Carlton?
CREATE TABLE "round_4" ( "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_4" WHERE "home_team"='carlton';
2-10767641-4
What team has Windy Hill as their home venue
CREATE TABLE "round_4" ( "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_4" WHERE "venue"='windy hill';
2-10767641-4
When richmond played away, what was the largest number of people who watched?
CREATE TABLE "round_4" ( "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_4" WHERE "away_team"='richmond';
2-10767641-4
Which country is ranked higher than 68, with a city named Santa Fe and a stadium that has a capacity of 32,000?
CREATE TABLE "list" ( "rank" real, "stadium" text, "capacity" text, "city" text, "country" text );
SELECT "country" FROM "list" WHERE "rank">68 AND "capacity"='32,000' AND "city"='santa fe';
2-10605510-1
What is the capacity of the stadium with a rank lower than 31 located in the city of Belém ?
CREATE TABLE "list" ( "rank" real, "stadium" text, "capacity" text, "city" text, "country" text );
SELECT "capacity" FROM "list" WHERE "rank"<31 AND "city"='belém';
2-10605510-1
What is the sum of week(s) with an attendance of 30,751?
CREATE TABLE "exhibition_schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT SUM("week") FROM "exhibition_schedule" WHERE "attendance"='30,751';
2-10651062-2
On what date did the home team Essendon play?
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 "date" FROM "round_11" WHERE "home_team"='essendon';
2-10774891-11
What was South Melbourne's home team score?
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 "home_team_score" FROM "round_11" WHERE "home_team"='south melbourne';
2-10774891-11
On what date was the venue of Glenferrie Oval?
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 "date" FROM "round_11" WHERE "venue"='glenferrie oval';
2-10774891-11
What was the score for the away team when the home 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 "away_team_score" FROM "round_12" WHERE "home_team_score"='10.11 (71)';
2-10783853-12
What was the score for the away team when they played collingwood?
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_score" FROM "round_12" WHERE "home_team"='collingwood';
2-10783853-12
What was the score when essendon was the home team?
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 "home_team_score" FROM "round_12" WHERE "home_team"='essendon';
2-10783853-12
What is the date of the game where Richmond was the away team?
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 "date" FROM "round_7" WHERE "away_team"='richmond';
2-10746808-7
Who was the home team when Carlton was the away team?
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 "home_team" FROM "round_7" WHERE "away_team"='carlton';
2-10746808-7
Which home team played against Hawthorn?
CREATE TABLE "round_18" ( "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_18" WHERE "away_team"='hawthorn';
2-10775038-18
What date did the Geelong team play on as a home team?
CREATE TABLE "round_18" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_18" WHERE "home_team"='geelong';
2-10775038-18
What school/club team did the player who was drafted after round 13 with an overall rank of 384 play for?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT "school_club_team" FROM "nfl_draft" WHERE "round">13 AND "overall"=384;
2-10651062-1
What is the largest overall rank for a center drafted before round 10?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT MAX("overall") FROM "nfl_draft" WHERE "position"='center' AND "round"<10;
2-10651062-1
What position does the player from Texas State who was drafted before round 11 with an overall rank lower than 306 play?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT "position" FROM "nfl_draft" WHERE "overall"<306 AND "round"<11 AND "school_club_team"='texas state';
2-10651062-1
What is the average overall rank of all players drafted from Duke after round 9?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT AVG("overall") FROM "nfl_draft" WHERE "school_club_team"='duke' AND "round">9;
2-10651193-1
What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT COUNT("round") FROM "nfl_draft" WHERE "school_club_team"='tennessee state' AND "overall"<261;
2-10651193-1
What is the highest overall rank of any Tennessee State player drafted before round 10?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT MIN("overall") FROM "nfl_draft" WHERE "school_club_team"='tennessee state' AND "round"<10;
2-10651193-1
How many rounds did Blane Smith play linebacker?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT COUNT("round") FROM "nfl_draft" WHERE "position"='linebacker' AND "player"='blane smith';
2-10651152-1
How many times was Arizona the team and the round was bigger than 11?
CREATE TABLE "nfl_draft" ( "round" real, "overall" real, "player" text, "position" text, "school_club_team" text );
SELECT COUNT("overall") FROM "nfl_draft" WHERE "school_club_team"='arizona' AND "round">11;
2-10651152-1
What is the result of the game after week 5 against the st. louis rams?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "kickoff_time" text, "attendance" text );
SELECT "result" FROM "schedule" WHERE "week">5 AND "opponent"='st. louis rams';
2-10652497-2
What day did they play on week 4?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "kickoff_time" text, "attendance" text );
SELECT "date" FROM "schedule" WHERE "week"=4;
2-10652497-2
What is the largest crowd at princes park?
CREATE TABLE "round_2" ( "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_2" WHERE "venue"='princes park';
2-10776330-2
What day is north melbourne the away side?
CREATE TABLE "round_2" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_2" WHERE "away_team"='north melbourne';
2-10776330-2
What day is essendon the home team?
CREATE TABLE "round_2" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_2" WHERE "home_team"='essendon';
2-10776330-2
What away side scores 11.10 (76)?
CREATE TABLE "round_2" ( "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_2" WHERE "away_team_score"='11.10 (76)';
2-10776330-2
How many games had an assist number greater than 54?
CREATE TABLE "assists" ( "rank" real, "player" text, "nation" text, "assist" real, "games" real, "years" text );
SELECT SUM("games") FROM "assists" WHERE "assist">54;
2-1053453-7
Which years did the USA have a rank lower than 6 and an assist number less than 26?
CREATE TABLE "assists" ( "rank" real, "player" text, "nation" text, "assist" real, "games" real, "years" text );
SELECT "years" FROM "assists" WHERE "assist"<26 AND "rank"<6 AND "nation"='usa';
2-1053453-7
Which year or years did a team win 174 games and had an assist number less than 17?
CREATE TABLE "assists" ( "rank" real, "player" text, "nation" text, "assist" real, "games" real, "years" text );
SELECT "years" FROM "assists" WHERE "assist"<17 AND "games"=174;
2-1053453-7
Which party does Claudette Tardif belong to?
CREATE TABLE "senators_at_the_beginning_of_the_39th_pa" ( "name" text, "party" text, "province_division" text, "date_appointed" text, "appointed_by" text, "left_office" text );
SELECT "party" FROM "senators_at_the_beginning_of_the_39th_pa" WHERE "name"='claudette tardif';
2-10762004-1
Who appointed the conservative from Ontario on June 18, 1993?
CREATE TABLE "senators_at_the_beginning_of_the_39th_pa" ( "name" text, "party" text, "province_division" text, "date_appointed" text, "appointed_by" text, "left_office" text );
SELECT "appointed_by" FROM "senators_at_the_beginning_of_the_39th_pa" WHERE "party"='conservative' AND "province_division"='ontario' AND "date_appointed"='june 18, 1993';
2-10762004-1
What competition, federation, or league are the Tennessee Titans a member of?
CREATE TABLE "list_of_winners" ( "year" real, "sportsperson" text, "nationality" text, "team" text, "competition_federation_or_league" text, "sport" text );
SELECT "competition_federation_or_league" FROM "list_of_winners" WHERE "team"='tennessee titans';
2-10540109-1
How many years has the winner been a member of the National Football League?
CREATE TABLE "list_of_winners" ( "year" real, "sportsperson" text, "nationality" text, "team" text, "competition_federation_or_league" text, "sport" text );
SELECT AVG("year") FROM "list_of_winners" WHERE "competition_federation_or_league"='national football league';
2-10540109-1
Post 1994, who are the winners of Sportsperson from the National Basketball Association?
CREATE TABLE "list_of_winners" ( "year" real, "sportsperson" text, "nationality" text, "team" text, "competition_federation_or_league" text, "sport" text );
SELECT "sportsperson" FROM "list_of_winners" WHERE "year">1994 AND "competition_federation_or_league"='national basketball association';
2-10540109-1
What day is south melbourne at home?
CREATE TABLE "round_15" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_15" WHERE "home_team"='south melbourne';
2-10746808-15
What is the lowest crowd at corio oval?
CREATE TABLE "round_15" ( "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_15" WHERE "venue"='corio oval';
2-10746808-15
What venue features carlton as an away team?
CREATE TABLE "round_15" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_15" WHERE "away_team"='carlton';
2-10746808-15
What is the away team's score when the home team scores 7.8 (50)?
CREATE TABLE "round_16" ( "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_16" WHERE "home_team_score"='7.8 (50)';
2-10746200-16
What day does the team play at western oval?
CREATE TABLE "round_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_16" WHERE "venue"='western oval';
2-10746200-16
What venue features collingwood as the home side?
CREATE TABLE "round_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_16" WHERE "home_team"='collingwood';
2-10746200-16
What is the away team's score when the home side scores 12.13 (85)?
CREATE TABLE "round_16" ( "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_16" WHERE "home_team_score"='12.13 (85)';
2-10746200-16
What is the attendance of week 1
CREATE TABLE "exhibition_schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "attendance" FROM "exhibition_schedule" WHERE "week"=1;
2-10652161-2
What is the Result for Couple Kelly & Alec when they have a Score of 22 (8, 7, 7)?
CREATE TABLE "week_5" ( "couple" text, "score" text, "dance" text, "music" text, "result" text );
SELECT "result" FROM "week_5" WHERE "couple"='kelly & alec' AND "score"='22 (8, 7, 7)';
2-10535354-10
What is the Music for the Dance that Scored 25 (9, 8, 8) and a Result of bottom 2?
CREATE TABLE "week_5" ( "couple" text, "score" text, "dance" text, "music" text, "result" text );
SELECT "music" FROM "week_5" WHERE "score"='25 (9, 8, 8)' AND "result"='bottom 2';
2-10535354-10
How many totals are there for players with an average under 8 and less than 4 matches?
CREATE TABLE "season" ( "rank" real, "player" text, "county" text, "tally" text, "total" real, "matches" real, "average" real );
SELECT COUNT("total") FROM "season" WHERE "average"<8 AND "matches"<4;
2-10577744-2
What is the highest rank for championships with christy heffernan with over 4 matches?
CREATE TABLE "season" ( "rank" real, "player" text, "county" text, "tally" text, "total" real, "matches" real, "average" real );
SELECT MAX("rank") FROM "season" WHERE "player"='christy heffernan' AND "matches">4;
2-10577744-2
What is the date of the game at Junction Oval?
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"='junction oval';
2-10773616-12
What was the away team score at Windy Hill?
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_score" FROM "round_12" WHERE "venue"='windy hill';
2-10773616-12
Where did St Kilda play as the away team?
CREATE TABLE "round_17" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_17" WHERE "away_team"='st kilda';
2-10750694-17
What away team played at Glenferrie Oval?
CREATE TABLE "round_17" ( "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_17" WHERE "venue"='glenferrie oval';
2-10750694-17
How many people attended the game at Lake Oval?
CREATE TABLE "round_17" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "crowd" FROM "round_17" WHERE "venue"='lake oval';
2-10750694-17
What home team played at Lake Oval?
CREATE TABLE "round_17" ( "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_17" WHERE "venue"='lake oval';
2-10750694-17
What was the terrain for stage 10 of the tour?
CREATE TABLE "stage_results" ( "stage" text, "date" text, "route" text, "terrain" text, "length" text, "winner" text );
SELECT "terrain" FROM "stage_results" WHERE "stage"='10';
2-1063029-1
Which stage took the tour through Boulogne-Billancourt?
CREATE TABLE "stage_results" ( "stage" text, "date" text, "route" text, "terrain" text, "length" text, "winner" text );
SELECT "stage" FROM "stage_results" WHERE "route"='boulogne-billancourt';
2-1063029-1
Who won at stage 22?
CREATE TABLE "stage_results" ( "stage" text, "date" text, "route" text, "terrain" text, "length" text, "winner" text );
SELECT "winner" FROM "stage_results" WHERE "stage"='22';
2-1063029-1
Who was the winner of stage 12?
CREATE TABLE "stage_results" ( "stage" text, "date" text, "route" text, "terrain" text, "length" text, "winner" text );
SELECT "winner" FROM "stage_results" WHERE "stage"='12';
2-1063029-1
When was the Hon Ian Causley first elected?
CREATE TABLE "see_also" ( "member" text, "party" text, "electorate" text, "state" text, "first_elected" text );
SELECT "first_elected" FROM "see_also" WHERE "member"='hon ian causley';
2-1070306-1
When was Jill Hall of the Labor Party first elected?
CREATE TABLE "see_also" ( "member" text, "party" text, "electorate" text, "state" text, "first_elected" text );
SELECT "first_elected" FROM "see_also" WHERE "party"='labor' AND "member"='jill hall';
2-1070306-1
What state is Tanya Plibersek from?
CREATE TABLE "see_also" ( "member" text, "party" text, "electorate" text, "state" text, "first_elected" text );
SELECT "state" FROM "see_also" WHERE "member"='tanya plibersek';
2-1070306-1
What is the smallest number of goals for the player from 2008-present named tony beltran, ranked lower than 7?
CREATE TABLE "players_with_100_appearances_or_more" ( "rank" real, "player" text, "nation" text, "games" real, "goals" real, "years" text );
SELECT MIN("goals") FROM "players_with_100_appearances_or_more" WHERE "years"='2008-present' AND "player"='tony beltran' AND "rank">7;
2-1053453-2
What is the smallest number of goals for andy williams?
CREATE TABLE "players_with_100_appearances_or_more" ( "rank" real, "player" text, "nation" text, "games" real, "goals" real, "years" text );
SELECT MIN("goals") FROM "players_with_100_appearances_or_more" WHERE "player"='andy williams';
2-1053453-2
What is the highest number of goals for robbie findley ranked above 10?
CREATE TABLE "players_with_100_appearances_or_more" ( "rank" real, "player" text, "nation" text, "games" real, "goals" real, "years" text );
SELECT MAX("goals") FROM "players_with_100_appearances_or_more" WHERE "player"='robbie findley' AND "rank"<10;
2-1053453-2
Which NTFS has a yes for FAT32 and a no for ReFS?
CREATE TABLE "windows_nt" ( "fat16" text, "fat32" text, "hpfs" text, "iso_9660" text, "ntfs" text, "re_fs" text );
SELECT "ntfs" FROM "windows_nt" WHERE "fat32"='yes' AND "re_fs"='no';
2-10758793-13
Which HPFS has a no for ReFS?
CREATE TABLE "windows_nt" ( "fat16" text, "fat32" text, "hpfs" text, "iso_9660" text, "ntfs" text, "re_fs" text );
SELECT "hpfs" FROM "windows_nt" WHERE "re_fs"='no';
2-10758793-13
Which FAT32 has yes v1.0/v1.1 for NTFS?
CREATE TABLE "windows_nt" ( "fat16" text, "fat32" text, "hpfs" text, "iso_9660" text, "ntfs" text, "re_fs" text );
SELECT "fat32" FROM "windows_nt" WHERE "ntfs"='yes v1.0/v1.1';
2-10758793-13