question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What opponent had an attendance of 12,508 during weeks 1 through 8?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "week"<8 AND "attendance"='12,508';
2-10735579-2
What week had an attendance of 14,381?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT AVG("week") FROM "schedule" WHERE "attendance"='14,381';
2-10735579-2
Which round was Dave Yovanovits picked?
CREATE TABLE "2003_new_york_jets_season" ( "round" real, "pick" real, "player" text, "position" text, "college" text );
SELECT MIN("round") FROM "2003_new_york_jets_season" WHERE "player"='dave yovanovits';
2-10769660-1
Where did the player picked for the linebacker position play in college?
CREATE TABLE "2003_new_york_jets_season" ( "round" real, "pick" real, "player" text, "position" text, "college" text );
SELECT "college" FROM "2003_new_york_jets_season" WHERE "position"='linebacker';
2-10769660-1
What country had a 1966-70 rate of -100 and a 1991-95 rate of -7.36%?
CREATE TABLE "five_year_average" ( "country_name" text, "1961_65" text, "1966_70" text, "1971_75" text, "1976_80" text, "1981_85" text, "1986_90" text, "1991_95" text, "1996_2000" text, "2001_05" text, "2006_10" text );
SELECT "country_name" FROM "five_year_average" WHERE "1966_70"='-100' AND "1991_95"='-7.36%';
2-10750138-1
What was the 1971-75 rate for the country that has a 1986-90 rate of -5.28%?
CREATE TABLE "five_year_average" ( "country_name" text, "1961_65" text, "1966_70" text, "1971_75" text, "1976_80" text, "1981_85" text, "1986_90" text, "1991_95" text, "1996_2000" text, "2001_05" text, "2006_10" text );
SELECT "1971_75" FROM "five_year_average" WHERE "1986_90"='-5.28%';
2-10750138-1
What was the 2001-05 rate for the country that had 1981-85 rate of -3.48%?
CREATE TABLE "five_year_average" ( "country_name" text, "1961_65" text, "1966_70" text, "1971_75" text, "1976_80" text, "1981_85" text, "1986_90" text, "1991_95" text, "1996_2000" text, "2001_05" text, "2006_10" text );
SELECT "2001_05" FROM "five_year_average" WHERE "1981_85"='-3.48%';
2-10750138-1
What was the 1976-80 rate for the country that had 1991-95 rate of -0.43%
CREATE TABLE "five_year_average" ( "country_name" text, "1961_65" text, "1966_70" text, "1971_75" text, "1976_80" text, "1981_85" text, "1986_90" text, "1991_95" text, "1996_2000" text, "2001_05" text, "2006_10" text );
SELECT "1976_80" FROM "five_year_average" WHERE "1991_95"='-0.43%';
2-10750138-1
What was the 2001-05 rate for the country that had the 1981-85 rate of 0.38%?
CREATE TABLE "five_year_average" ( "country_name" text, "1961_65" text, "1966_70" text, "1971_75" text, "1976_80" text, "1981_85" text, "1986_90" text, "1991_95" text, "1996_2000" text, "2001_05" text, "2006_10" text );
SELECT "2001_05" FROM "five_year_average" WHERE "1981_85"='0.38%';
2-10750138-1
Who did the Browns play week 12?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "week"=12;
2-10650028-2
What was the attendance in the game against the Detroit Lions?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "opponent"='detroit lions';
2-10652328-2
Who played as the away team when they played at Brunswick Street 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 "away_team" FROM "round_15" WHERE "venue"='brunswick street oval';
2-10775038-15
Who was the home team when the VFL played Arden Street 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 "home_team" FROM "round_15" WHERE "venue"='arden street oval';
2-10775038-15
Who is the away side at junction oval?
CREATE TABLE "round_9" ( "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_9" WHERE "venue"='junction oval';
2-10767641-9
Who was the winning driver of the Kraco Car Stereo 150?
CREATE TABLE "race_results" ( "name" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "report" text );
SELECT "winning_driver" FROM "race_results" WHERE "name"='kraco car stereo 150';
2-10706907-2
What time was the fastest lap during Stoh's 200 in 1982?
CREATE TABLE "race_results" ( "name" text, "pole_position" text, "fastest_lap" text, "winning_driver" text, "report" text );
SELECT "fastest_lap" FROM "race_results" WHERE "name"='stoh''s 200';
2-10706907-2
What is the date for the player who debuted later than 1972 against Limerick?
CREATE TABLE "retirees" ( "player" text, "team" text, "last_game" text, "date" text, "opposition" text, "d_but" real );
SELECT "date" FROM "retirees" WHERE "d_but">1972 AND "opposition"='limerick';
2-10714000-2
Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?
CREATE TABLE "retirees" ( "player" text, "team" text, "last_game" text, "date" text, "opposition" text, "d_but" real );
SELECT "player" FROM "retirees" WHERE "opposition"='limerick' AND "last_game"='munster semi-final' AND "d_but"=1973;
2-10714000-2
What date had a Result of l 23–17 in a week later than 7?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "week">7 AND "result"='l 23–17';
2-10650760-1
How many people attended the game against the cincinnati bengals?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT COUNT("attendance") FROM "schedule" WHERE "opponent"='cincinnati bengals';
2-10650760-1
What was the attendance for the game played at 3:31?
CREATE TABLE "new_york_yankees_vs_boston_red_sox" ( "game" real, "date" text, "location" text, "time" text, "attendance" real );
SELECT "attendance" FROM "new_york_yankees_vs_boston_red_sox" WHERE "time"='3:31';
2-1069627-8
What was the time for game 4?
CREATE TABLE "new_york_yankees_vs_boston_red_sox" ( "game" real, "date" text, "location" text, "time" text, "attendance" real );
SELECT "time" FROM "new_york_yankees_vs_boston_red_sox" WHERE "game"=4;
2-1069627-8
What venue featured a home score of 8.9 (57)?
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 "home_team_score"='8.9 (57)';
2-10701045-13
What was the away team's score at western 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_score" FROM "round_13" WHERE "venue"='western oval';
2-10701045-13
How many games featured a home team scoring 12.18 (90)?
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 COUNT("crowd") FROM "round_13" WHERE "home_team_score"='12.18 (90)';
2-10701045-13
Before 2007, how many wins were there when the point total was 48?
CREATE TABLE "porsche_supercup" ( "year" real, "drivers" text, "wins" real, "points" text, "d_c" text );
SELECT SUM("wins") FROM "porsche_supercup" WHERE "points"='48' AND "year"<2007;
2-10701132-2
In 2011, how many wins did Michael Meadows have?
CREATE TABLE "porsche_supercup" ( "year" real, "drivers" text, "wins" real, "points" text, "d_c" text );
SELECT SUM("wins") FROM "porsche_supercup" WHERE "year"=2011 AND "drivers"='michael meadows';
2-10701132-2
What is the service of the network Set Max from India?
CREATE TABLE "singapore" ( "network" text, "origin_of_programming" text, "language" text, "genre" text, "service" text );
SELECT "service" FROM "singapore" WHERE "origin_of_programming"='india' AND "network"='set max';
2-10503963-5
Which network's genre is music?
CREATE TABLE "singapore" ( "network" text, "origin_of_programming" text, "language" text, "genre" text, "service" text );
SELECT "network" FROM "singapore" WHERE "genre"='music';
2-10503963-5
What genre is Star Plus from India?
CREATE TABLE "singapore" ( "network" text, "origin_of_programming" text, "language" text, "genre" text, "service" text );
SELECT "genre" FROM "singapore" WHERE "origin_of_programming"='india' AND "network"='star plus';
2-10503963-5
Where does the network Star Cricket originate?
CREATE TABLE "singapore" ( "network" text, "origin_of_programming" text, "language" text, "genre" text, "service" text );
SELECT "origin_of_programming" FROM "singapore" WHERE "genre"='cricket' AND "network"='star cricket';
2-10503963-5
What genre is Set Max's Hindi programming?
CREATE TABLE "singapore" ( "network" text, "origin_of_programming" text, "language" text, "genre" text, "service" text );
SELECT "genre" FROM "singapore" WHERE "language"='hindi' AND "network"='set max';
2-10503963-5
What is fitzroy's score as the home team?
CREATE TABLE "round_14" ( "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_14" WHERE "home_team"='fitzroy';
2-10773753-14
What is the listed crowd when the home team's score is 9.7 (61)?
CREATE TABLE "round_14" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "crowd" FROM "round_14" WHERE "home_team_score"='9.7 (61)';
2-10773753-14
What is richmond's score as the home team?
CREATE TABLE "round_14" ( "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_14" WHERE "home_team"='richmond';
2-10773753-14
When was the game where the away team had a score of 5.14 (44)?
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 "date" FROM "round_4" WHERE "away_team_score"='5.14 (44)';
2-10701914-4
Who was the color commentator for Eric Dickerson and Melissa Stark in 2001?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play" text, "color_commentator_s" text, "sideline_reporter_s" text );
SELECT "color_commentator_s" FROM "2000s" WHERE "sideline_reporter_s"='eric dickerson and melissa stark' AND "year"=2001;
2-10656249-6
What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play" text, "color_commentator_s" text, "sideline_reporter_s" text );
SELECT "network" FROM "2000s" WHERE "play_by_play"='al michaels' AND "color_commentator_s"='dan fouts and dennis miller' AND "year"<2002;
2-10656249-6
Who was the 2004 color commentator?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play" text, "color_commentator_s" text, "sideline_reporter_s" text );
SELECT "color_commentator_s" FROM "2000s" WHERE "year"=2004;
2-10656249-6
Who was the color commentator for Andrea Kremer and Tiki Barber?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play" text, "color_commentator_s" text, "sideline_reporter_s" text );
SELECT "color_commentator_s" FROM "2000s" WHERE "sideline_reporter_s"='andrea kremer and tiki barber';
2-10656249-6
Who was Al Michaels' color commentator in 2003?
CREATE TABLE "2000s" ( "year" real, "network" text, "play_by_play" text, "color_commentator_s" text, "sideline_reporter_s" text );
SELECT "color_commentator_s" FROM "2000s" WHERE "play_by_play"='al michaels' AND "year">2003;
2-10656249-6
Who was the home team when Geelong was the away 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" FROM "round_12" WHERE "away_team"='geelong';
2-10767641-12
Where was the game when the home team scored 25.17 (167)?
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 "home_team_score"='25.17 (167)';
2-10767641-12
What was the away team's score when home team Carlton scored 15.16 (106)?
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"='15.16 (106)' AND "home_team"='carlton';
2-10767641-12
What is the highest overall pick from the College of Southern Mississippi that was selected before round 6?
CREATE TABLE "nfl_draft" ( "player" text, "position" text, "round" real, "overall" real, "college" text );
SELECT MAX("overall") FROM "nfl_draft" WHERE "college"='southern mississippi' AND "round"<6;
2-10650028-1
Who, was the coach with an actual adjusted record of 0–19?
CREATE TABLE "vacated_and_forfeited_games" ( "season" real, "coach" text, "record_as_played" text, "actual_adjusted_record" text, "regular_season_vacated" text );
SELECT "coach" FROM "vacated_and_forfeited_games" WHERE "actual_adjusted_record"='0–19';
2-10511872-1
What is the average Season for coach Fisher, and an actual adjusted record of 0–11?
CREATE TABLE "vacated_and_forfeited_games" ( "season" real, "coach" text, "record_as_played" text, "actual_adjusted_record" text, "regular_season_vacated" text );
SELECT AVG("season") FROM "vacated_and_forfeited_games" WHERE "coach"='fisher' AND "actual_adjusted_record"='0–11';
2-10511872-1
What is the regular season vacated for the Record as played of 12–19?
CREATE TABLE "vacated_and_forfeited_games" ( "season" real, "coach" text, "record_as_played" text, "actual_adjusted_record" text, "regular_season_vacated" text );
SELECT "regular_season_vacated" FROM "vacated_and_forfeited_games" WHERE "record_as_played"='12–19';
2-10511872-1
How many seasons did coach steve fisher have?
CREATE TABLE "vacated_and_forfeited_games" ( "season" real, "coach" text, "record_as_played" text, "actual_adjusted_record" text, "regular_season_vacated" text );
SELECT COUNT("season") FROM "vacated_and_forfeited_games" WHERE "coach"='steve fisher';
2-10511872-1
What is shown for Record as played with a Regular season Vacated of 24–0 later than 1997?
CREATE TABLE "vacated_and_forfeited_games" ( "season" real, "coach" text, "record_as_played" text, "actual_adjusted_record" text, "regular_season_vacated" text );
SELECT "record_as_played" FROM "vacated_and_forfeited_games" WHERE "regular_season_vacated"='24–0' AND "season">1997;
2-10511872-1
How many seasons have an Actual adjusted record of 0–19?
CREATE TABLE "vacated_and_forfeited_games" ( "season" real, "coach" text, "record_as_played" text, "actual_adjusted_record" text, "regular_season_vacated" text );
SELECT COUNT("season") FROM "vacated_and_forfeited_games" WHERE "actual_adjusted_record"='0–19';
2-10511872-1
How many gold(s) for teams with a total of 14, and over 6 bronze medals?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT SUM("gold") FROM "medal_table" WHERE "total"=14 AND "bronze">6;
2-10638874-3
What is the highest number of gold medals for the team ranked 7 with less than 3 bronze?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MAX("gold") FROM "medal_table" WHERE "rank"='7' AND "bronze"<3;
2-10638874-3
What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT AVG("gold") FROM "medal_table" WHERE "silver"<2 AND "nation"='uzbekistan' AND "bronze"<4;
2-10638874-3
What was the away team for the match at Punt Road 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"='punt road oval';
2-10766119-7
What was the home team that scored 5.7 (37)?
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 "home_team_score"='5.7 (37)';
2-10766119-7
What was the smallest crowd size for the match played at Junction 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 MIN("crowd") FROM "round_7" WHERE "venue"='junction oval';
2-10766119-7
What was the home team that scored 12.21 (93)?
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 "home_team_score"='12.21 (93)';
2-10766119-7
What was the home team that played Collingwood?
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"='collingwood';
2-10766119-7
What was the sum of the crowd sizes when the home team scored 9.17 (71)?
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 SUM("crowd") FROM "round_7" WHERE "home_team_score"='9.17 (71)';
2-10766119-7
Which province has Michael Kirby?
CREATE TABLE "left_senate_during_the_39th_parliament" ( "date" text, "name" text, "party" text, "province" text, "details" text );
SELECT "province" FROM "left_senate_during_the_39th_parliament" WHERE "name"='michael kirby';
2-10762004-3
Which party is Madeleine Plamondon a member of?
CREATE TABLE "left_senate_during_the_39th_parliament" ( "date" text, "name" text, "party" text, "province" text, "details" text );
SELECT "party" FROM "left_senate_during_the_39th_parliament" WHERE "name"='madeleine plamondon';
2-10762004-3
What are the details for Marisa Ferretti Barth?
CREATE TABLE "left_senate_during_the_39th_parliament" ( "date" text, "name" text, "party" text, "province" text, "details" text );
SELECT "details" FROM "left_senate_during_the_39th_parliament" WHERE "name"='marisa ferretti barth';
2-10762004-3
Which party had a member on August 26, 2008?
CREATE TABLE "left_senate_during_the_39th_parliament" ( "date" text, "name" text, "party" text, "province" text, "details" text );
SELECT "party" FROM "left_senate_during_the_39th_parliament" WHERE "date"='august 26, 2008';
2-10762004-3
What are the details for John Buchanan?
CREATE TABLE "left_senate_during_the_39th_parliament" ( "date" text, "name" text, "party" text, "province" text, "details" text );
SELECT "details" FROM "left_senate_during_the_39th_parliament" WHERE "name"='john buchanan';
2-10762004-3
Which province had a liberal party member on December 31, 2006?
CREATE TABLE "left_senate_during_the_39th_parliament" ( "date" text, "name" text, "party" text, "province" text, "details" text );
SELECT "province" FROM "left_senate_during_the_39th_parliament" WHERE "party"='liberal' AND "date"='december 31, 2006';
2-10762004-3
Which dance style had a draw smaller than 15 and 18 points?
CREATE TABLE "participants" ( "draw" real, "dancers" text, "dance_styles" text, "place" real, "points" real );
SELECT "dance_styles" FROM "participants" WHERE "draw"<15 AND "points"=18;
2-10530468-1
What was the away team when the home team scored 16.19 (115)?
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 "home_team_score"='16.19 (115)';
2-10767118-5
What was the away team's score for the match played at Victoria 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 "away_team_score" FROM "round_5" WHERE "venue"='victoria park';
2-10767118-5
What was the venue where the home team scored 10.15 (75)?
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 "venue" FROM "round_5" WHERE "home_team_score"='10.15 (75)';
2-10767118-5
What is Collingwood's home venue?
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 "venue" FROM "round_5" WHERE "home_team"='collingwood';
2-10767118-5
What was the away teams score when they played Carlton?
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"='carlton';
2-10767118-5
What is the latest year featuring candace parker?
CREATE TABLE "list_of_winners" ( "year" real, "player" text, "nationality" text, "position_played" text, "team_represented" text );
SELECT MAX("year") FROM "list_of_winners" WHERE "player"='candace parker';
2-10525601-1
What is the largest crowd when north melbourne is the home side?
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 MAX("crowd") FROM "round_3" WHERE "home_team"='north melbourne';
2-10767641-3
Who is the away team when the home team scores 10.17 (77)?
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 "home_team_score"='10.17 (77)';
2-10767641-3
What venue features a home team scoring 12.12 (84)?
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 "home_team_score"='12.12 (84)';
2-10767641-3
What home team scores 12.12 (84)?
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 "home_team" FROM "round_3" WHERE "home_team_score"='12.12 (84)';
2-10767641-3
What is the smallest crowd at victoria park?
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 MIN("crowd") FROM "round_7" WHERE "venue"='victoria park';
2-10773616-7
What day was geelong the away side?
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"='geelong';
2-10773616-7
What away team scored 14.5 (89)?
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 "away_team_score"='14.5 (89)';
2-10773616-7
What is the name of the stadium in Brisbane?
CREATE TABLE "round_2" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "stadium" FROM "round_2" WHERE "city"='brisbane';
2-10637415-6
What was the result of the match that had a score of 58-6?
CREATE TABLE "round_2" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "result" FROM "round_2" WHERE "score"='58-6';
2-10637415-6
What was the score for the match that had the result of Hunter Mariners def. Castleford Tigers?
CREATE TABLE "round_2" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "score" FROM "round_2" WHERE "result"='hunter mariners def. castleford tigers';
2-10637415-6
For the match ending in a score of 66-20, what was the stadium?
CREATE TABLE "round_2" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "stadium" FROM "round_2" WHERE "score"='66-20';
2-10637415-6
In what city is the Don Valley Stadium located?
CREATE TABLE "round_2" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "city" FROM "round_2" WHERE "stadium"='don valley stadium';
2-10637415-6
Which championship was the 100m backstroke performed?
CREATE TABLE "men" ( "event" text, "time" text, "nationality" text, "date" text, "meet" text, "location" text );
SELECT "meet" FROM "men" WHERE "event"='100m backstroke';
2-10758004-2
What event has a time of 7:45.67?
CREATE TABLE "men" ( "event" text, "time" text, "nationality" text, "date" text, "meet" text, "location" text );
SELECT "event" FROM "men" WHERE "time"='7:45.67';
2-10758004-2
What nationality has a year larger than 2009 with a position of power forward?
CREATE TABLE "winners" ( "year" real, "player" text, "nationality" text, "position" text, "team" text );
SELECT "nationality" FROM "winners" WHERE "year">2009 AND "position"='power forward';
2-10525442-1
Who plays for the chicago bulls?
CREATE TABLE "winners" ( "year" real, "player" text, "nationality" text, "position" text, "team" text );
SELECT "player" FROM "winners" WHERE "team"='chicago bulls';
2-10525442-1
What are the main places for the streymoy region with an area of larger than 6.1?
CREATE TABLE "population_by_island" ( "name" text, "area" real, "inhabitants" real, "people_per_km" real, "main_places" text, "regions" text );
SELECT "main_places" FROM "population_by_island" WHERE "regions"='streymoy' AND "area">6.1;
2-10700-2
What is the sum of people per km2 for the sandoy region with an area of 112.1?
CREATE TABLE "population_by_island" ( "name" text, "area" real, "inhabitants" real, "people_per_km" real, "main_places" text, "regions" text );
SELECT SUM("people_per_km") FROM "population_by_island" WHERE "regions"='sandoy' AND "area"=112.1;
2-10700-2
what is the week there were 41,604 people in attendance?
CREATE TABLE "exhibition_schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT AVG("week") FROM "exhibition_schedule" WHERE "attendance"='41,604';
2-10651482-1
What is the average crowd size for games with hawthorn as the home side?
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 AVG("crowd") FROM "round_17" WHERE "home_team"='hawthorn';
2-10746808-17
What is the home team's score 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 "home_team_score" FROM "round_17" WHERE "venue"='glenferrie oval';
2-10746808-17
Who had the lowest Best time that also had a Qual 2 of 49.887?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" real );
SELECT MIN("best") FROM "qualifying_results" WHERE "qual_2"='49.887';
2-10600299-1
What was CTE Racing-hvm's Best with a Qual 2 of 50.312?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" real );
SELECT "best" FROM "qualifying_results" WHERE "team"='cte racing-hvm' AND "qual_2"='50.312';
2-10600299-1
What was the average crowd size for the game where the away team scored 10.11 (71)?
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 AVG("crowd") FROM "round_5" WHERE "away_team_score"='10.11 (71)';
2-10750694-5
Which Away team had a score of 18.8 (116)?
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"='18.8 (116)';
2-10750694-5
What was the home team score when essendon was 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 "home_team_score" FROM "round_5" WHERE "away_team"='essendon';
2-10750694-5
When richmond was the Away team what was the score of the home 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 "home_team_score" FROM "round_5" WHERE "away_team"='richmond';
2-10750694-5