question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Which competition had the score 1-0?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "competition" FROM "international_goals" WHERE "score"='1-0';
2-10505151-1
Timsah arena is in what country?
CREATE TABLE "under_construction" ( "stadium" text, "capacity" real, "city" text, "country" text, "tenant" text, "opening" real );
SELECT "country" FROM "under_construction" WHERE "stadium"='timsah arena';
2-10601843-2
What country is Relax-Gam from?
CREATE TABLE "general_classification" ( "cyclist" text, "country" text, "team" text, "time" text, "uci_pro_tour_points" text );
SELECT "country" FROM "general_classification" WHERE "team"='relax-gam';
2-10571391-13
Who is Gerolsteiner's cyclist?
CREATE TABLE "general_classification" ( "cyclist" text, "country" text, "team" text, "time" text, "uci_pro_tour_points" text );
SELECT "cyclist" FROM "general_classification" WHERE "team"='gerolsteiner';
2-10571391-13
What is Davide Rebellin' UCI ProTour Points?
CREATE TABLE "general_classification" ( "cyclist" text, "country" text, "team" text, "time" text, "uci_pro_tour_points" text );
SELECT "uci_pro_tour_points" FROM "general_classification" WHERE "cyclist"='davide rebellin';
2-10571391-13
What was North Melbourne's score when they were the home 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 "home_team_score" FROM "round_17" WHERE "home_team"='north melbourne';
2-10776330-17
Where did Footscray 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"='footscray';
2-10776330-17
What was the away team's score in the match 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 "away_team_score" FROM "round_17" WHERE "venue"='lake oval';
2-10776330-17
What was the sum of the crowds that watched Fitzroy 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 SUM("crowd") FROM "round_17" WHERE "away_team"='fitzroy';
2-10776330-17
What is the sum of rank with years 1996–2012 and apps greater than 340?
CREATE TABLE "goalscoring" ( "rank" real, "name" text, "years" text, "goals" real, "apps" real );
SELECT SUM("rank") FROM "goalscoring" WHERE "years"='1996–2012' AND "apps">340;
2-10724559-1
Which player held the position of guard prior to 1982?
CREATE TABLE "c" ( "player" text, "nationality" text, "position" text, "from" real, "school_country" text );
SELECT "player" FROM "c" WHERE "from"<1982 AND "position"='guard';
2-10560886-4
What was the away team that faced Carlton?
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"='carlton';
2-10773753-6
What was the largest crowd to see the away team score 10.6 (66)?
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 MAX("crowd") FROM "round_6" WHERE "away_team_score"='10.6 (66)';
2-10773753-6
What is the total crowd size that saw Geelong play as the away 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 COUNT("crowd") FROM "round_6" WHERE "away_team"='geelong';
2-10773753-6
What away team saw their opponents score 4.5 (29)?
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_score"='4.5 (29)';
2-10773753-6
How many wins did Hobbs had a 15th finish at poles 0?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" text, "wins" text, "poles" text, "podiums" text, "points" text, "final_placing" text );
SELECT "wins" FROM "career_summary" WHERE "poles"='0' AND "final_placing"='15th';
2-10726900-1
What are the points for the GP3 series with 2 podiums?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" text, "wins" text, "poles" text, "podiums" text, "points" text, "final_placing" text );
SELECT "points" FROM "career_summary" WHERE "series"='gp3 series' AND "podiums"='2';
2-10726900-1
Which races have #2 podiums?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" text, "wins" text, "poles" text, "podiums" text, "points" text, "final_placing" text );
SELECT "races" FROM "career_summary" WHERE "podiums"='2';
2-10726900-1
What was the 2009 final placing?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" text, "wins" text, "poles" text, "podiums" text, "points" text, "final_placing" text );
SELECT "final_placing" FROM "career_summary" WHERE "season"=2009;
2-10726900-1
What was the points with 7 races?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" text, "wins" text, "poles" text, "podiums" text, "points" text, "final_placing" text );
SELECT "points" FROM "career_summary" WHERE "races"='7';
2-10726900-1
What venue had south melbourne as the home team?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_1" WHERE "home_team"='south melbourne';
2-10640687-1
What venue had collingwood as the away team?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_1" WHERE "away_team"='collingwood';
2-10640687-1
What was the home team score when south melbourne was the home team?
CREATE TABLE "round_1" ( "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_1" WHERE "home_team"='south melbourne';
2-10640687-1
What day was south melbourne the away squad?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_1" WHERE "away_team"='melbourne';
2-10640687-1
What position did he finish after 1998 and a note time of 2:31:40?
CREATE TABLE "achievements" ( "year" real, "competition" text, "venue" text, "position" text, "notes" text );
SELECT "position" FROM "achievements" WHERE "year">1998 AND "notes"='2:31:40';
2-10682522-1
What venue featured a notes of 2:38:44?
CREATE TABLE "achievements" ( "year" real, "competition" text, "venue" text, "position" text, "notes" text );
SELECT "venue" FROM "achievements" WHERE "notes"='2:38:44';
2-10682522-1
What date in a week later than 8 had an attendance of more than 57,893, and a Opponent of at atlanta falcons?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "date" FROM "schedule" WHERE "week">8 AND "attendance">'57,893' AND "opponent"='at atlanta falcons';
2-10647265-1
Who did they play against in a week after 6 and the result was l 30–24?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "week">6 AND "result"='l 30–24';
2-10647265-1
What opponent has a Result of w 31–0?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "result"='w 31–0';
2-10647265-1
During which round was the final cornerback drafted for the New England Patriots in 2005?
CREATE TABLE "2005_new_england_patriots_draft_selectio" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT MAX("round") FROM "2005_new_england_patriots_draft_selectio" WHERE "position"='cornerback';
2-10716255-1
What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?
CREATE TABLE "highest_and_lowest_scoring_performances" ( "dance" text, "best_dancer" text, "best_score" real, "worst_dancer" text, "worst_score" real );
SELECT MIN("best_score") FROM "highest_and_lowest_scoring_performances" WHERE "worst_dancer"='leeza gibbons' AND "worst_score"<15;
2-10535584-5
What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?
CREATE TABLE "highest_and_lowest_scoring_performances" ( "dance" text, "best_dancer" text, "best_score" real, "worst_dancer" text, "worst_score" real );
SELECT SUM("worst_score") FROM "highest_and_lowest_scoring_performances" WHERE "best_dancer"='apolo anton ohno' AND "best_score">30;
2-10535584-5
What is the biggest crowd when carlton is the away squad?
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 MAX("crowd") FROM "round_13" WHERE "away_team"='carlton';
2-10640687-13
What is the sum of crowd(s) when richmond is the away squad?
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 SUM("crowd") FROM "round_13" WHERE "away_team"='richmond';
2-10640687-13
What is the home team's score in the game played at 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 "home_team_score" FROM "round_13" WHERE "venue"='glenferrie oval';
2-10640687-13
What was the result of the event against Nate Mohr?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "res" FROM "mixed_martial_arts_record" WHERE "opponent"='nate mohr';
2-10507195-2
When the VFL played Junction Oval what was the home team score?
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 "home_team_score" FROM "round_2" WHERE "venue"='junction oval';
2-10766119-2
What was away team Geelong's crowd numbers?
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 "crowd" FROM "round_2" WHERE "away_team"='geelong';
2-10766119-2
What date did the home team score 12.7 (79)?
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_score"='12.7 (79)';
2-10746808-6
What is the date they played against 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 "date" FROM "round_6" WHERE "away_team"='fitzroy';
2-10746808-6
What was the team they played when the home team scored 6.10 (46)?
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_score"='6.10 (46)';
2-10746808-6
How large was the crowd when they played at princes park?
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 SUM("crowd") FROM "round_6" WHERE "venue"='princes park';
2-10746808-6
What was the away team that scored 12.11 (83)?
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 "away_team_score"='12.11 (83)';
2-10746808-6
What day does the home team score 10.10 (70)?
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_score"='10.10 (70)';
2-10746200-2
Who is the away team at junction oval?
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 "venue"='junction oval';
2-10746200-2
What is the away team's score 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 "away_team_score" FROM "round_2" WHERE "venue"='princes park';
2-10746200-2
What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?
CREATE TABLE "internet_availability" ( "nation" text, "population_thousands" real, "internet_subscriptions_2000_thousands_of_users" real, "internet_subscriptions_2008_thousands_of_users" real, "pct_growth_2000_2008" real, "pct_internet_users" real );
SELECT MAX("pct_internet_users") FROM "internet_availability" WHERE "pct_growth_2000_2008"=1622;
2-10733530-3
Who was the home team when Footscray was the away team?
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 "home_team" FROM "round_16" WHERE "away_team"='footscray';
2-10767641-16
Who was the away team when the home team scored 20.15 (135)?
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"='20.15 (135)';
2-10767641-16
Who was the home team when the away team scored 5.10 (40)?
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 "home_team" FROM "round_16" WHERE "away_team_score"='5.10 (40)';
2-10767641-16
What was the home team's score at the game played at Punt Road Oval with a crowd over 20,000?
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 "home_team_score" FROM "round_16" WHERE "crowd">'20,000' AND "venue"='punt road oval';
2-10767641-16
What day did the team play the buffalo bills?
CREATE TABLE "exhibition_schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "date" FROM "exhibition_schedule" WHERE "opponent"='buffalo bills';
2-10651104-2
What is the BB Pop for the song with RIAA of G that was in a year earlier than 1961?
CREATE TABLE "1958_1963" ( "year" real, "bb_pop" text, "bb_cw" text, "bb_rb" text, "bb_el" text, "cb_cw" text, "riaa" text );
SELECT "bb_pop" FROM "1958_1963" WHERE "riaa"='g' AND "year"<1961;
2-1076869-2
Which player has an Other of 3 (15)?
CREATE TABLE "top_goalscorers" ( "name" text, "years" text, "league_a" text, "fa_cup" text, "league_cup_b" text, "other" text, "total" text );
SELECT "name" FROM "top_goalscorers" WHERE "other"='3 (15)';
2-10724151-2
What Name has a Time of 01:17:01?
CREATE TABLE "21st_century" ( "date" text, "time" text, "epicenter" text, "magnitude" text, "fatalities" text, "name" text );
SELECT "name" FROM "21st_century" WHERE "time"='01:17:01';
2-10677198-1
What is the Magnitude on the Date May 28, 2004?
CREATE TABLE "21st_century" ( "date" text, "time" text, "epicenter" text, "magnitude" text, "fatalities" text, "name" text );
SELECT "magnitude" FROM "21st_century" WHERE "date"='may 28, 2004';
2-10677198-1
What Name has a Time of 01:56:52?
CREATE TABLE "21st_century" ( "date" text, "time" text, "epicenter" text, "magnitude" text, "fatalities" text, "name" text );
SELECT "name" FROM "21st_century" WHERE "time"='01:56:52';
2-10677198-1
What number of Fatalities did the Epicenter Māzandarān have?
CREATE TABLE "21st_century" ( "date" text, "time" text, "epicenter" text, "magnitude" text, "fatalities" text, "name" text );
SELECT "fatalities" FROM "21st_century" WHERE "epicenter"='māzandarān';
2-10677198-1
What number of Fatalties is associated with the Time of 12:38:46?
CREATE TABLE "21st_century" ( "date" text, "time" text, "epicenter" text, "magnitude" text, "fatalities" text, "name" text );
SELECT "fatalities" FROM "21st_century" WHERE "time"='12:38:46';
2-10677198-1
What is the Time when the Epicenter was Bam?
CREATE TABLE "21st_century" ( "date" text, "time" text, "epicenter" text, "magnitude" text, "fatalities" text, "name" text );
SELECT "time" FROM "21st_century" WHERE "epicenter"='bam';
2-10677198-1
Who did Clinton appoint as a Chief Judge?
CREATE TABLE "former_judges" ( "state" text, "born_died" text, "active_service" text, "chief_judge" text, "senior_status" text, "appointed_by" text, "reason_for_termination" text );
SELECT "chief_judge" FROM "former_judges" WHERE "appointed_by"='clinton';
2-1065275-2
What was the smallest crowd for a Carlton away game?
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 MIN("crowd") FROM "round_17" WHERE "away_team"='carlton';
2-10701045-17
What is the result when the time is 1:13?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "res" FROM "mixed_martial_arts_record" WHERE "time"='1:13';
2-10705427-2
Who was the opponent when the time was 1:47?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "opponent" FROM "mixed_martial_arts_record" WHERE "time"='1:47';
2-10705427-2
What venue did South Melbourne play as the away 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 "venue" FROM "round_14" WHERE "away_team"='south melbourne';
2-10776868-14
What was the home team's score at the match in front of 19,115 at Punt Road Oval?
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 "crowd">'19,115' AND "venue"='punt road oval';
2-10776868-14
What was the away team's score in the match at Victoria Park?
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 "away_team_score" FROM "round_14" WHERE "venue"='victoria park';
2-10776868-14
What was thome home team whose opponent scored 9.14 (68) in front of 19,115?
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" FROM "round_14" WHERE "crowd">'19,115' AND "away_team_score"='9.14 (68)';
2-10776868-14
Which position has a Round of 7, and a College of kansas state?
CREATE TABLE "1999_new_england_patriots_draft_selectio" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT "position" FROM "1999_new_england_patriots_draft_selectio" WHERE "round"=7 AND "college"='kansas state';
2-10696236-1
How many rounds have an Overall larger than 17, and a Position of quarterback?
CREATE TABLE "1999_new_england_patriots_draft_selectio" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT COUNT("round") FROM "1999_new_england_patriots_draft_selectio" WHERE "overall">17 AND "position"='quarterback';
2-10696236-1
Which average overall has a Round of 1, and a Position of center?
CREATE TABLE "1999_new_england_patriots_draft_selectio" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT AVG("overall") FROM "1999_new_england_patriots_draft_selectio" WHERE "round"=1 AND "position"='center';
2-10696236-1
Where did North Melbourne play as the home team?
CREATE TABLE "round_10" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_10" WHERE "home_team"='north melbourne';
2-10640687-10
What was the attendance when VFL played MCG?
CREATE TABLE "round_10" ( "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_10" WHERE "venue"='mcg';
2-10640687-10
What was the home team score when the away team scored 10.10 (70)?
CREATE TABLE "round_1" ( "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_1" WHERE "away_team_score"='10.10 (70)';
2-10766119-1
How many people were in the crowd when the away team scored 9.12 (66)?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "crowd" FROM "round_1" WHERE "away_team_score"='9.12 (66)';
2-10766119-1
What was the score of the away team when they played at Windy Hill?
CREATE TABLE "round_1" ( "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_1" WHERE "venue"='windy hill';
2-10766119-1
How large was the crowd when the away team was melbourne?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "crowd" FROM "round_1" WHERE "away_team"='melbourne';
2-10766119-1
How many people watched a Glenferrie 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 COUNT("crowd") FROM "round_15" WHERE "venue"='glenferrie oval';
2-10766119-15
How faced Geelong 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 "away_team_score" FROM "round_15" WHERE "home_team"='geelong';
2-10766119-15
How many people watch Essendon 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 SUM("crowd") FROM "round_15" WHERE "away_team"='essendon';
2-10766119-15
Where did South Melbourne go to play a team 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 "home_team" FROM "round_15" WHERE "away_team"='south melbourne';
2-10766119-15
Where did a home team score 9.9 (63)?
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 "home_team_score"='9.9 (63)';
2-10766119-15
What is essendon's away team score?
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_score" FROM "round_15" WHERE "away_team"='essendon';
2-10640687-15
Which home team has an away team score of 11.15 (81)?
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 "away_team_score"='11.15 (81)';
2-10640687-15
What is the date with geelong as 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 "date" FROM "round_15" WHERE "away_team"='geelong';
2-10640687-15
What is the highest crowd at 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 MAX("crowd") FROM "round_15" WHERE "venue"='arden street oval';
2-10640687-15
What is geelong's aberage crowd as 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 AVG("crowd") FROM "round_15" WHERE "away_team"='geelong';
2-10640687-15
What was the date of the game when North Melbourne was the away 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 "away_team"='north melbourne';
2-10775038-6
Where was the game held when the home team scored 8.18 (66)?
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 "venue" FROM "round_6" WHERE "home_team_score"='8.18 (66)';
2-10775038-6
Who was the away team when the home team scored 16.16 (112)?
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_score"='16.16 (112)';
2-10775038-6
What is the team with grid 9?
CREATE TABLE "race_1_results" ( "name" text, "team" text, "laps" real, "time_retired" text, "grid" real );
SELECT "team" FROM "race_1_results" WHERE "grid"=9;
2-10661025-2
What team features garth tander?
CREATE TABLE "race_1_results" ( "name" text, "team" text, "laps" real, "time_retired" text, "grid" real );
SELECT "team" FROM "race_1_results" WHERE "name"='garth tander';
2-10661025-2
How many stages are in a distance of 2,192 km?
CREATE TABLE "marlboro_tour" ( "year" text, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "stages" FROM "marlboro_tour" WHERE "distance"='2,192 km';
2-10694950-3
How long was the 16 staged event in 1997?
CREATE TABLE "marlboro_tour" ( "year" text, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "distance" FROM "marlboro_tour" WHERE "stages"='16' AND "year"='1997';
2-10694950-3
What was the winning time in 1984?
CREATE TABLE "marlboro_tour" ( "year" text, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "time" FROM "marlboro_tour" WHERE "year"='1984';
2-10694950-3
Who won the 17 staged event in 1987?
CREATE TABLE "marlboro_tour" ( "year" text, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "winner" FROM "marlboro_tour" WHERE "stages"='17' AND "year"='1987';
2-10694950-3
Which event happened in 1988?
CREATE TABLE "marlboro_tour" ( "year" text, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "name" FROM "marlboro_tour" WHERE "year"='1988';
2-10694950-3
Where did Rick Mears win, after starting in Pole Position?
CREATE TABLE "races" ( "race_name" text, "circuit" text, "city_location" text, "date" text, "pole_position" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT "city_location" FROM "races" WHERE "pole_position"='rick mears' AND "winning_driver"='rick mears';
2-10707142-2
Where is the budweiser/g. i. joe's 200?
CREATE TABLE "races" ( "race_name" text, "circuit" text, "city_location" text, "date" text, "pole_position" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT "city_location" FROM "races" WHERE "race_name"='budweiser/g. i. joe''s 200';
2-10707142-2
Where is Emerson Fittipaldi starting in Pole position?
CREATE TABLE "races" ( "race_name" text, "circuit" text, "city_location" text, "date" text, "pole_position" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT "city_location" FROM "races" WHERE "pole_position"='emerson fittipaldi';
2-10707142-2