question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Which FAT32 has a no for HPFS, a no for ReFS, and a yes v3.0 fir 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 "hpfs"='no' AND "re_fs"='no' AND "ntfs"='yes v3.0';
2-10758793-13
Which ReFS has yes v3.0 for NTFS?
CREATE TABLE "windows_nt" ( "fat16" text, "fat32" text, "hpfs" text, "iso_9660" text, "ntfs" text, "re_fs" text );
SELECT "re_fs" FROM "windows_nt" WHERE "ntfs"='yes v3.0';
2-10758793-13
Which NTFS has a no for ReFS and a yes for HPFS?
CREATE TABLE "windows_nt" ( "fat16" text, "fat32" text, "hpfs" text, "iso_9660" text, "ntfs" text, "re_fs" text );
SELECT "ntfs" FROM "windows_nt" WHERE "re_fs"='no' AND "hpfs"='yes';
2-10758793-13
What player position was drafted in 1955?
CREATE TABLE "g" ( "player" text, "nationality" text, "position" text, "from" text, "school_country" text );
SELECT "position" FROM "g" WHERE "from"='1955';
2-10560886-8
From what school was a player drafted in 1950?
CREATE TABLE "g" ( "player" text, "nationality" text, "position" text, "from" text, "school_country" text );
SELECT "school_country" FROM "g" WHERE "from"='1950';
2-10560886-8
What home team has a score of 11.9 (75)?
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"='11.9 (75)';
2-10774891-7
What home team plays at glenferrie 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 "home_team" FROM "round_7" WHERE "venue"='glenferrie oval';
2-10774891-7
What is the away side that playes at lake 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_score" FROM "round_7" WHERE "venue"='lake oval';
2-10774891-7
What day does the away team score 7.8 (50)?
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_score"='7.8 (50)';
2-10774891-7
What is the away side when carlton is the home 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 "away_team_score" FROM "round_7" WHERE "home_team"='carlton';
2-10774891-7
Who is the away team at western 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 "away_team_score" FROM "round_12" WHERE "venue"='western oval';
2-10750694-12
What venue featured the home side scoring 10.17 (77)?
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"='10.17 (77)';
2-10750694-12
What is the Icelandic title for the Norweigan titled galgeblomsten?
CREATE TABLE "the_legend_of_the_ice_people" ( "swedish_title" text, "norwegian_title" text, "icelandic_title" text, "translated_title" text, "polish_title" text, "hungarian_title" text, "published" real );
SELECT "icelandic_title" FROM "the_legend_of_the_ice_people" WHERE "norwegian_title"='galgeblomsten';
2-10657400-1
When is the event at lake oval?
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 "venue"='lake oval';
2-10750694-1
What is the away team's score at western oval?
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"='western oval';
2-10750694-1
What's the home team's score at lake oval?
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 "venue"='lake oval';
2-10750694-1
What date did VFL play MCG?
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 "date" FROM "round_9" WHERE "venue"='mcg';
2-10773616-9
How many times is st kilda the away team?
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 COUNT("crowd") FROM "round_4" WHERE "away_team"='st kilda';
2-10773616-4
What is the largest crowd when the home team scores 14.12 (96)?
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 "home_team_score"='14.12 (96)';
2-10773616-4
When the crowd was larger than 20,915 what did the Away 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 "away_team_score" FROM "round_11" WHERE "crowd">'20,915';
2-10775890-11
What did the Away team score in their game at Victoria Park?
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_score" FROM "round_11" WHERE "venue"='victoria park';
2-10775890-11
When the crowd was over 15,322 in Richmond what did the Away 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 "away_team_score" FROM "round_11" WHERE "crowd">'15,322' AND "away_team"='richmond';
2-10775890-11
What did the Home team score when they were in MCG?
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 "venue"='mcg';
2-10775890-11
What was the attendance for each game held at Foxboro Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "game_site"='foxboro stadium';
2-10746194-1
When was the game against the Indianapolis Colts?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "date" FROM "schedule" WHERE "opponent"='indianapolis colts';
2-10746194-1
How many weeks total did the New York Jets face the Pittsburgh Steelers?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT COUNT("week") FROM "schedule" WHERE "opponent"='pittsburgh steelers';
2-10746194-1
What week did the Jets play in the meadowlands with and attendance of 78,161?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT SUM("week") FROM "schedule" WHERE "game_site"='the meadowlands' AND "attendance"='78,161';
2-10745921-1
Who did the Jets play in the Meadowlands on week 14?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "game_site"='the meadowlands' AND "week"=14;
2-10745921-1
What was the Jets week 17 attendance?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "week"=17;
2-10745921-1
When did the hotel with 727 rooms open?
CREATE TABLE "current_casinos" ( "casino" text, "opening_date" text, "theme" text, "hotel_rooms" real, "section_of_atlantic_city" text );
SELECT "opening_date" FROM "current_casinos" WHERE "hotel_rooms"=727;
2-106211-1
Which school(s) had a wide receiver drafted in round 4?
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">4 AND "position"='wide receiver';
2-10651180-1
Which of the above are from 1987?
CREATE TABLE "l" ( "player" text, "nationality" text, "position" text, "from" real, "school_country" text );
SELECT "school_country" FROM "l" WHERE "from"=1987;
2-10560886-13
What position is the player from 1987?
CREATE TABLE "l" ( "player" text, "nationality" text, "position" text, "from" real, "school_country" text );
SELECT "position" FROM "l" WHERE "from"=1987;
2-10560886-13
What position is the player from 1959?
CREATE TABLE "l" ( "player" text, "nationality" text, "position" text, "from" real, "school_country" text );
SELECT "position" FROM "l" WHERE "from"=1959;
2-10560886-13
Who was the opponent before week 6 at cleveland municipal stadium?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "record" text, "attendance" real );
SELECT "opponent" FROM "regular_season" WHERE "week"<6 AND "game_site"='cleveland municipal stadium';
2-10647639-1
What date was Richmond the away 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 "away_team"='richmond';
2-10773753-18
Which county has a % (2040) larger than 1.8, a % (2000) smaller than 4.1, a % (1960) smaller than 3.2, and is ranked 13?
CREATE TABLE "historical_population" ( "rank" text, "county" text, "pct_1960" real, "pct_2000" real, "pct_2040" real );
SELECT "county" FROM "historical_population" WHERE "pct_2040">1.8 AND "pct_2000"<4.1 AND "pct_1960"<3.2 AND "rank"='13';
2-1064198-3
What is the % (1960) of Troms, which has a % (2040) smaller than 100 and a % (2000) smaller than 4.7?
CREATE TABLE "historical_population" ( "rank" text, "county" text, "pct_1960" real, "pct_2000" real, "pct_2040" real );
SELECT SUM("pct_1960") FROM "historical_population" WHERE "pct_2040"<100 AND "pct_2000"<4.7 AND "county"='troms';
2-1064198-3
What is the % (1960) of the county with a % (2040) of 3.4?
CREATE TABLE "historical_population" ( "rank" text, "county" text, "pct_1960" real, "pct_2000" real, "pct_2040" real );
SELECT COUNT("pct_1960") FROM "historical_population" WHERE "pct_2040"=3.4;
2-1064198-3
What record company has robert craft conducting?
CREATE TABLE "complete_ballet" ( "orchestra" text, "conductor" text, "record_company" text, "year_of_recording" real, "format" text );
SELECT "record_company" FROM "complete_ballet" WHERE "conductor"='robert craft';
2-1060482-1
Who is the conductor when the chicago symphony orchestra is featured?
CREATE TABLE "complete_ballet" ( "orchestra" text, "conductor" text, "record_company" text, "year_of_recording" real, "format" text );
SELECT "conductor" FROM "complete_ballet" WHERE "orchestra"='chicago symphony orchestra';
2-1060482-1
How many people attended the Cleveland Browns game on November 11, 1979?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT MAX("attendance") FROM "schedule" WHERE "date"='november 11, 1979' AND "week">11;
2-10651193-2
The game on September 2, 1979 was during which week of the season?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT COUNT("week") FROM "schedule" WHERE "date"='september 2, 1979';
2-10651193-2
What was the home team's score at the game where Richmond was 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 "home_team_score" FROM "round_14" WHERE "away_team"='richmond';
2-10773616-14
What was the size of the crowd when Essendon was 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 "crowd" FROM "round_14" WHERE "away_team"='essendon';
2-10773616-14
What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964?
CREATE TABLE "british_railways_batch" ( "br_no" real, "name" text, "builder" text, "whenbuilt" text, "withdrawn" text );
SELECT "whenbuilt" FROM "british_railways_batch" WHERE "builder"='brighton' AND "withdrawn"='september 1964' AND "name"='blandford forum';
2-10608850-2
What is the crowd with an Away team score of 8.11 (59)?
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 AVG("crowd") FROM "round_13" WHERE "away_team_score"='8.11 (59)';
2-10701914-13
What team has Away team score of 8.11 (59)?
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 "away_team_score"='8.11 (59)';
2-10701914-13
What was the away team score when the team team score was 15.8 (98)?
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"='15.8 (98)';
2-10640687-16
What was the listed attendance when north melbourne was the home 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 "crowd" FROM "round_16" WHERE "home_team"='north melbourne';
2-10640687-16
What day was geelong the home 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 "date" FROM "round_16" WHERE "home_team"='geelong';
2-10640687-16
Who played as the home team when the attendance was more than 30,080?
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 "crowd">'30,080';
2-10775890-12
What was the highest attendance 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 MAX("crowd") FROM "round_12" WHERE "venue"='junction oval';
2-10775890-12
What was the away teams score when Hawthorn played as 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 "away_team_score" FROM "round_12" WHERE "home_team"='hawthorn';
2-10775890-12
How many bids does Atlantic 10 have?
CREATE TABLE "record_by_conference" ( "conference" text, "num_of_bids" real, "record" text, "win_pct" text, "round_of_32" text, "sweet_sixteen" text, "elite_eight" text, "final_four" text, "championship_game" text );
SELECT "num_of_bids" FROM "record_by_conference" WHERE "conference"='atlantic 10';
2-10743839-6
What was the away team's score in the game against North Melbourne?
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_score" FROM "round_11" WHERE "home_team"='north melbourne';
2-10750694-11
What was the lowest crowd size when the away team scored 11.17 (83)?
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 MIN("crowd") FROM "round_11" WHERE "away_team_score"='11.17 (83)';
2-10750694-11
What was the average crowd size when the away team was South Melbourne?
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 AVG("crowd") FROM "round_11" WHERE "away_team"='south melbourne';
2-10750694-11
At what venue did a crowd larger than 11,000 see the away team score 11.10 (76)?
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 "venue" FROM "round_11" WHERE "crowd">'11,000' AND "away_team_score"='11.10 (76)';
2-10750694-11
At what venue was the away team Fitzroy?
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 "venue" FROM "round_11" WHERE "away_team"='fitzroy';
2-10750694-11
In what year saw a total distance of 1,870.23 km?
CREATE TABLE "tour_of_luzon" ( "year" text, "date" text, "stages" text, "distance" text, "winner" text );
SELECT "year" FROM "tour_of_luzon" WHERE "distance"='1,870.23 km';
2-10694950-1
Who won in 1965?
CREATE TABLE "tour_of_luzon" ( "year" text, "date" text, "stages" text, "distance" text, "winner" text );
SELECT "winner" FROM "tour_of_luzon" WHERE "year"='1965';
2-10694950-1
What stage was 1,648 km achieved?
CREATE TABLE "tour_of_luzon" ( "year" text, "date" text, "stages" text, "distance" text, "winner" text );
SELECT "stages" FROM "tour_of_luzon" WHERE "distance"='1,648 km';
2-10694950-1
What year was stage 8 reached?
CREATE TABLE "tour_of_luzon" ( "year" text, "date" text, "stages" text, "distance" text, "winner" text );
SELECT "year" FROM "tour_of_luzon" WHERE "stages"='8';
2-10694950-1
What is the lowest number of bronze medals for teams ranked below 13?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("bronze") FROM "medal_table" WHERE "rank">13;
2-10649319-3
How many golds for teams ranking below 7 with 3 bronze and less than 5 total medals?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("gold") FROM "medal_table" WHERE "bronze"=3 AND "rank">7 AND "total"<5;
2-10649319-3
What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?
CREATE TABLE "highest_and_lowest_scoring_performances" ( "dance" text, "best_dancer_s" text, "highest_score" real, "worst_dancer_s" text, "lowest_score" real );
SELECT MIN("highest_score") FROM "highest_and_lowest_scoring_performances" WHERE "worst_dancer_s"='master p' AND "best_dancer_s"='drew lachey' AND "lowest_score"<8;
2-10535445-4
Which of the Worst dancer(s) has the Lowest score of 14?
CREATE TABLE "highest_and_lowest_scoring_performances" ( "dance" text, "best_dancer_s" text, "highest_score" real, "worst_dancer_s" text, "lowest_score" real );
SELECT "worst_dancer_s" FROM "highest_and_lowest_scoring_performances" WHERE "lowest_score"=14;
2-10535445-4
What is the Dance with the Highest score under 30 and Stacy Keibler as the Best dancer(s)?
CREATE TABLE "highest_and_lowest_scoring_performances" ( "dance" text, "best_dancer_s" text, "highest_score" real, "worst_dancer_s" text, "lowest_score" real );
SELECT "dance" FROM "highest_and_lowest_scoring_performances" WHERE "highest_score"<30 AND "best_dancer_s"='stacy keibler';
2-10535445-4
What is the lowest of the Highest score for the Quickstep Dance and the Lowest score under 16?
CREATE TABLE "highest_and_lowest_scoring_performances" ( "dance" text, "best_dancer_s" text, "highest_score" real, "worst_dancer_s" text, "lowest_score" real );
SELECT MIN("highest_score") FROM "highest_and_lowest_scoring_performances" WHERE "dance"='quickstep' AND "lowest_score"<16;
2-10535445-4
What is his record at ufc 67?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "record" FROM "mixed_martial_arts_record" WHERE "event"='ufc 67';
2-10673214-2
What is his record at ufc 115?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "record" FROM "mixed_martial_arts_record" WHERE "event"='ufc 115';
2-10673214-2
Which opponent had an attendance of 40,070?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "attendance"='40,070';
2-10653722-1
What's the result for the game held on December 27, 2004 with a week greater than 2?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "attendance" text );
SELECT "result" FROM "schedule" WHERE "week">2 AND "date"='december 27, 2004';
2-10653722-1
Who was the opponent for week 6?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "week"=6;
2-10653722-1
Which opponent had the result of W 24-14?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "result"='w 24-14';
2-10653722-1
What's the attendance for the game held on January 2, 2005?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "date"='january 2, 2005';
2-10653722-1
Which had an attendance of larger than 33,435?
CREATE TABLE "exhibition_schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "result" FROM "exhibition_schedule" WHERE "attendance">'33,435';
2-10651674-1
Which team lost under interim head coach, Dewayne Walker?
CREATE TABLE "coaching_changes" ( "team" text, "bowl" text, "season_coach" text, "interim_head_coach" text, "result" text, "2008_head_coach" text );
SELECT "team" FROM "coaching_changes" WHERE "result"='lost' AND "interim_head_coach"='dewayne walker';
2-10650879-1
What was the result under interim head coach, Gary Darnell?
CREATE TABLE "coaching_changes" ( "team" text, "bowl" text, "season_coach" text, "interim_head_coach" text, "result" text, "2008_head_coach" text );
SELECT "result" FROM "coaching_changes" WHERE "interim_head_coach"='gary darnell';
2-10650879-1
What was the result in 2008 under head coach Mike Sherman?
CREATE TABLE "coaching_changes" ( "team" text, "bowl" text, "season_coach" text, "interim_head_coach" text, "result" text, "2008_head_coach" text );
SELECT "result" FROM "coaching_changes" WHERE "2008_head_coach"='mike sherman';
2-10650879-1
What team has a bowl of humanitarian?
CREATE TABLE "coaching_changes" ( "team" text, "bowl" text, "season_coach" text, "interim_head_coach" text, "result" text, "2008_head_coach" text );
SELECT "team" FROM "coaching_changes" WHERE "bowl"='humanitarian';
2-10650879-1
What is the result under the season coach Rich Rodriguez?
CREATE TABLE "coaching_changes" ( "team" text, "bowl" text, "season_coach" text, "interim_head_coach" text, "result" text, "2008_head_coach" text );
SELECT "result" FROM "coaching_changes" WHERE "season_coach"='rich rodriguez';
2-10650879-1
Who is the 2008 head coach of UCLA?
CREATE TABLE "coaching_changes" ( "team" text, "bowl" text, "season_coach" text, "interim_head_coach" text, "result" text, "2008_head_coach" text );
SELECT "2008_head_coach" FROM "coaching_changes" WHERE "team"='ucla';
2-10650879-1
In what score did the match against Marcos Daniel end?
CREATE TABLE "challengers_and_futures_17" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "score" FROM "challengers_and_futures_17" WHERE "opponent_in_the_final"='marcos daniel';
2-10650393-2
What was the score of the game played on a clay surface on June 6, 2005?
CREATE TABLE "challengers_and_futures_17" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "score" FROM "challengers_and_futures_17" WHERE "surface"='clay' AND "date"='june 6, 2005';
2-10650393-2
On what date did the match against Flavio Cipolla, played on a clay surface, occur?
CREATE TABLE "challengers_and_futures_17" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "date" FROM "challengers_and_futures_17" WHERE "surface"='clay' AND "opponent_in_the_final"='flavio cipolla';
2-10650393-2
Which home team had a home team score of 15.8 (98)?
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"='15.8 (98)';
2-10640687-6
What was Fitzroy'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"='fitzroy';
2-10640687-6
Who was the home team when the away team had a score of 11.18 (84)?
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 "away_team_score"='11.18 (84)';
2-10640687-6
Where was the Hawthorn game played?
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 "venue" FROM "round_7" WHERE "away_team"='hawthorn';
2-10746200-7
What was the away teams score at Princes 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 "away_team_score" FROM "round_7" WHERE "venue"='princes park';
2-10746200-7
Which Rider finished with a speed of 81.91mph?
CREATE TABLE "1971_isle_of_man_sidecar_750cc_tt_final_" ( "rank" real, "rider" text, "team" text, "speed" text, "time" text );
SELECT "rider" FROM "1971_isle_of_man_sidecar_750cc_tt_final_" WHERE "speed"='81.91mph';
2-10638654-8
Which Rider finished with a speed of 80.18mph?
CREATE TABLE "1971_isle_of_man_sidecar_750cc_tt_final_" ( "rank" real, "rider" text, "team" text, "speed" text, "time" text );
SELECT "rider" FROM "1971_isle_of_man_sidecar_750cc_tt_final_" WHERE "speed"='80.18mph';
2-10638654-8
What is the home team's score at princes park?
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"='princes park';
2-10775890-13
What is the largest crowd when the home team scores 16.16 (112)?
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 "home_team_score"='16.16 (112)';
2-10775890-13
What is the venue for the Footscray 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 "venue" FROM "round_5" WHERE "home_team"='footscray';
2-10640687-5
Which home team's venue is Windy Hill?
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" FROM "round_5" WHERE "venue"='windy hill';
2-10640687-5
What is the score for Hawthorn as an 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 "away_team"='hawthorn';
2-10640687-5
What is the score of the away team when the home team is Essendon?
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"='essendon';
2-10640687-5