question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
On what date is Footscray the away team?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_3" WHERE "away_team"='footscray';
2-10746200-3
What was the crowd population for Footscray as an away team?
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 "away_team"='footscray';
2-10746200-3
On what date was there both a crowd larger than 16,570 and the away team was Footscray?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_3" WHERE "crowd">'16,570' AND "away_team"='footscray';
2-10746200-3
How many bids were there for the .500 win percentage in the Ohio Valley conference?
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 SUM("num_of_bids") FROM "record_by_conference" WHERE "win_pct"='.500' AND "conference"='ohio valley';
2-10696974-6
What is the Championship Game when the Final Four is 1 and the conference is American South?
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 "championship_game" FROM "record_by_conference" WHERE "final_four"='1' AND "conference"='american south';
2-10696974-6
What is the Final Four with a win percentage of .750?
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 "final_four" FROM "record_by_conference" WHERE "win_pct"='.750';
2-10696974-6
What is the date of the game at the Arden Street Oval?
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 "venue"='arden street oval';
2-10701045-18
What is the date where the home team scores 8.7 (55)?
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_score"='8.7 (55)';
2-10701045-18
What is the date of the game when the venue is Kardinia 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 "date" FROM "round_5" WHERE "venue"='kardinia park';
2-10773753-5
What is the total of the crowd when the away team score is 4.8 (32)?
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 SUM("crowd") FROM "round_5" WHERE "away_team_score"='4.8 (32)';
2-10773753-5
What is the date of the game when the home team score is 11.11 (77)?
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 "date" FROM "round_5" WHERE "home_team_score"='11.11 (77)';
2-10773753-5
Which away team played against the home team of St Kilda?
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" FROM "round_1" WHERE "home_team"='st kilda';
2-10773753-1
Which home team competed against the away team of 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 "home_team" FROM "round_1" WHERE "away_team"='melbourne';
2-10773753-1
Which away team resulted in a 15.14 (104) score for 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 "away_team" FROM "round_1" WHERE "home_team_score"='15.14 (104)';
2-10773753-1
Which venue hosted an away team with a score of 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 "venue" FROM "round_1" WHERE "away_team_score"='9.12 (66)';
2-10773753-1
What venue hosted a home team with a score of 6.12 (48)?
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_score"='6.12 (48)';
2-10773753-1
What was the result of week 1 and the opponent was bye?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff" text, "game_site" text, "record" text, "attendance" text );
SELECT "result" FROM "schedule" WHERE "week"='1' AND "opponent"='bye';
2-10659676-2
What is the site of the game with a Record of 6-2?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff" text, "game_site" text, "record" text, "attendance" text );
SELECT "game_site" FROM "schedule" WHERE "record"='6-2';
2-10659676-2
What week has a Record of 12-2?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff" text, "game_site" text, "record" text, "attendance" text );
SELECT "week" FROM "schedule" WHERE "record"='12-2';
2-10659676-2
What city has Sky Tower?
CREATE TABLE "buildings_above_140m" ( "rank" text, "name" text, "city" text, "height_in_m_ft" text, "floors" real, "year_built" real );
SELECT "city" FROM "buildings_above_140m" WHERE "name"='sky tower';
2-10728418-1
What is the name of a building in Courbevoie built before 1973?
CREATE TABLE "buildings_above_140m" ( "rank" text, "name" text, "city" text, "height_in_m_ft" text, "floors" real, "year_built" real );
SELECT "name" FROM "buildings_above_140m" WHERE "year_built"<1973 AND "city"='courbevoie';
2-10728418-1
Who was the away team at Lake Oval?
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 "venue"='lake oval';
2-10767118-4
What was the home team score for the game where Hawthorn is the home 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 "home_team_score" FROM "round_4" WHERE "home_team"='hawthorn';
2-10767118-4
Who is the home team that scored 14.19 (103)?
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" FROM "round_4" WHERE "home_team_score"='14.19 (103)';
2-10767118-4
What is the date of the game where Essendon is 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 "date" FROM "round_4" WHERE "away_team"='essendon';
2-10767118-4
What is the average crowd size when the home side scores 4.10 (34)?
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 "crowd" FROM "round_10" WHERE "home_team_score"='4.10 (34)';
2-10783853-10
What is the home team's score when the away team is south melbourne?
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 "home_team_score" FROM "round_10" WHERE "away_team"='south melbourne';
2-10783853-10
What venue featured the home side of st kilda?
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"='st kilda';
2-10783853-10
How many metres tall is the building that is larger than 850 feet tall?
CREATE TABLE "timeline_of_tallest_buildings" ( "name" text, "city" text, "years_as_tallest" text, "metres" real, "feet" real, "floors" real );
SELECT "metres" FROM "timeline_of_tallest_buildings" WHERE "feet">850;
2-10728418-4
What was Geelong's score when they were the home 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 "home_team_score" FROM "round_15" WHERE "home_team"='geelong';
2-10776868-15
Where was the game when Collingwood was the home 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"='collingwood';
2-10776868-15
Who was the away team that scored 8.12 (60)?
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 "away_team_score"='8.12 (60)';
2-10776868-15
What was Peter Woolfolk's Total Rebound average?
CREATE TABLE "rebounds" ( "rank" real, "player" text, "years" text, "games" real, "reb_avg" real, "total_rebounds" real );
SELECT SUM("total_rebounds") FROM "rebounds" WHERE "player"='peter woolfolk';
2-10645911-3
What was week 3 score?
CREATE TABLE "exhibition_schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "result" FROM "exhibition_schedule" WHERE "week"=3;
2-10651617-1
What city had a crowd larger than 11,346 and score of 24-16?
CREATE TABLE "round_1" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "city" FROM "round_1" WHERE "crowd">'11,346' AND "score"='24-16';
2-10637415-5
What is the result of the game at Odsal Stadium?
CREATE TABLE "round_1" ( "date" text, "result" text, "score" text, "stadium" text, "city" text, "crowd" real );
SELECT "result" FROM "round_1" WHERE "stadium"='odsal stadium';
2-10637415-5
Which championship had a margin of 10 strokes?
CREATE TABLE "wins_6" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "championship" FROM "wins_6" WHERE "margin"='10 strokes';
2-1075064-4
Which runner-up player(s) had a margin of 10 strokes?
CREATE TABLE "wins_6" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT "runner_s_up" FROM "wins_6" WHERE "margin"='10 strokes';
2-1075064-4
What was the most recent year that Kathy Ahern was a runner-up?
CREATE TABLE "wins_6" ( "year" real, "championship" text, "winning_score" text, "margin" text, "runner_s_up" text );
SELECT MAX("year") FROM "wins_6" WHERE "runner_s_up"='kathy ahern';
2-1075064-4
What is the RTM build of the Windows Home Server 2011?
CREATE TABLE "windows_nt" ( "name" text, "release_date" text, "rtm_build" text, "current_version" text, "status_support" text, "license" text, "based_on_kernel" text, "supported_architectures" text, "os_type" text );
SELECT "rtm_build" FROM "windows_nt" WHERE "name"='windows home server 2011';
2-10758793-4
What is the current version of windows 8 with an RTM build of 9200?
CREATE TABLE "windows_nt" ( "name" text, "release_date" text, "rtm_build" text, "current_version" text, "status_support" text, "license" text, "based_on_kernel" text, "supported_architectures" text, "os_type" text );
SELECT "current_version" FROM "windows_nt" WHERE "rtm_build"='9200' AND "name"='windows 8';
2-10758793-4
What home team scored 14.14 (98)?
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" FROM "round_11" WHERE "home_team_score"='14.14 (98)';
2-10767641-11
What was the home team's score that played Geelong?
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 "away_team"='geelong';
2-10767641-11
At what venue did the home team score 12.10 (82)?
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 "home_team_score"='12.10 (82)';
2-10767641-11
How many rounds were fought with opponent Kevin Roddy?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT COUNT("round") FROM "mixed_martial_arts_record" WHERE "opponent"='kevin roddy';
2-10603143-2
What was the score when attendance was 19,887?
CREATE TABLE "game_by_game_results" ( "week" text, "opponent" text, "result" text, "stadium" text, "record" text, "attendance" text );
SELECT "record" FROM "game_by_game_results" WHERE "attendance"='19,887';
2-10646390-2
What week was the Bye attendance week?
CREATE TABLE "game_by_game_results" ( "week" text, "opponent" text, "result" text, "stadium" text, "record" text, "attendance" text );
SELECT "week" FROM "game_by_game_results" WHERE "attendance"='bye';
2-10646390-2
Who won when the Patriots played the Denver Broncos?
CREATE TABLE "game_by_game_results" ( "week" text, "opponent" text, "result" text, "stadium" text, "record" text, "attendance" text );
SELECT "record" FROM "game_by_game_results" WHERE "opponent"='denver broncos';
2-10646390-2
Who won when the attendance was 8,000?
CREATE TABLE "game_by_game_results" ( "week" text, "opponent" text, "result" text, "stadium" text, "record" text, "attendance" text );
SELECT "record" FROM "game_by_game_results" WHERE "attendance"='8,000';
2-10646390-2
What channel has an operator of ivptc?
CREATE TABLE "television" ( "band_ch" real, "call" text, "city" text, "owner" text, "operator" text, "virt_ch" real, "nickname" text, "programming" text );
SELECT "programming" FROM "television" WHERE "operator"='ivptc';
2-10742875-3
What was the score when Richmond payed as the home team?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_8" WHERE "home_team"='richmond';
2-10776868-8
Who played against Carlton as the home team?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team" FROM "round_8" WHERE "away_team"='carlton';
2-10776868-8
What was the attendance when South Melbourne was the away team?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT SUM("crowd") FROM "round_8" WHERE "away_team"='south melbourne';
2-10776868-8
Who was the home team when the VFL played Kardinia Park?
CREATE TABLE "round_8" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_8" WHERE "venue"='kardinia park';
2-10776868-8
How many silver medals did the nation who received 32 bronze medals receive?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT "silver" FROM "medal_table" WHERE "bronze"=32;
2-10574234-3
What is the highest numbered grid with a time or retired time of 52:52.1881?
CREATE TABLE "race_1_results" ( "name" text, "team" text, "laps" real, "time_retired" text, "grid" real );
SELECT MAX("grid") FROM "race_1_results" WHERE "time_retired"='52:52.1881';
2-10660606-2
Who recorded a time or retired time of 52:56.4653?
CREATE TABLE "race_1_results" ( "name" text, "team" text, "laps" real, "time_retired" text, "grid" real );
SELECT "name" FROM "race_1_results" WHERE "time_retired"='52:56.4653';
2-10660606-2
What is the average grid number for paul cruickshank racing with less than 27 laps?
CREATE TABLE "race_1_results" ( "name" text, "team" text, "laps" real, "time_retired" text, "grid" real );
SELECT AVG("grid") FROM "race_1_results" WHERE "team"='paul cruickshank racing' AND "laps"<27;
2-10660606-2
What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?
CREATE TABLE "medal_table" ( "rank" real, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("total") FROM "medal_table" WHERE "silver">6 AND "bronze"=6 AND "gold"<16;
2-10647806-3
What 09-10 class, with a graduate percentage of 85% had the least amount of points?
CREATE TABLE "arnold_today" ( "school" text, "09_10_fcat" text, "09_10_points" real, "09_10_graduation" text, "08_09_fcat" text );
SELECT MIN("09_10_points") FROM "arnold_today" WHERE "09_10_graduation"='85%';
2-10597155-1
What is the crowd size of the game at Brunswick Street Oval?
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 SUM("crowd") FROM "round_10" WHERE "venue"='brunswick street oval';
2-10775890-10
Who was the home team of the game where Footscray is the away 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 "home_team_score" FROM "round_10" WHERE "away_team"='footscray';
2-10775890-10
Who is the away team with a score of 7.8 (50)?
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 "away_team" FROM "round_10" WHERE "away_team_score"='7.8 (50)';
2-10775890-10
What week has a date of September 3, 2000?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT AVG("week") FROM "schedule" WHERE "date"='september 3, 2000';
2-10696381-3
Who was the home team when Hawthorn was 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 "home_team" FROM "round_17" WHERE "away_team"='hawthorn';
2-10701914-17
Who was the away team when the home team scored 11.14 (80)?
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 "home_team_score"='11.14 (80)';
2-10701914-17
What was Fitzroy's score when they were 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 "away_team_score" FROM "round_17" WHERE "away_team"='fitzroy';
2-10701914-17
What was #7 BMW's speed?
CREATE TABLE "1971_isle_of_man_production_750_cc_tt_fi" ( "rank" real, "rider" text, "team" text, "speed" text, "time" text );
SELECT "speed" FROM "1971_isle_of_man_production_750_cc_tt_fi" WHERE "team"='bmw' AND "rank"=7;
2-10638654-6
What was the crowd size in the match South Melbourne played at home?
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 "home_team"='south melbourne';
2-10701045-1
What was 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-10701045-1
What was the date when the away team scored 9.16 (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 "date" FROM "round_1" WHERE "away_team_score"='9.16 (70)';
2-10701045-1
What was the crowd size when Essendon was 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 COUNT("crowd") FROM "round_1" WHERE "away_team"='essendon';
2-10701045-1
What was the home team that scored 13.13 (91) in front of a crowd larger than 10,000?
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" FROM "round_1" WHERE "crowd">'10,000' AND "home_team_score"='13.13 (91)';
2-10701045-1
On what date was the time of 16:24.12 achieved?
CREATE TABLE "women" ( "event" text, "time" text, "nationality" text, "date" text, "meet" text, "location" text );
SELECT "date" FROM "women" WHERE "time"='16:24.12';
2-10760098-3
What year did the Capital City Giants have a game with the final score of 8-0?
CREATE TABLE "game_results" ( "year" real, "game" text, "team" text, "runner_up" text, "score" text );
SELECT AVG("year") FROM "game_results" WHERE "team"='capital city giants' AND "score"='8-0';
2-10615272-1
What team lost a game by a score of 6-0?
CREATE TABLE "game_results" ( "year" real, "game" text, "team" text, "runner_up" text, "score" text );
SELECT "runner_up" FROM "game_results" WHERE "score"='6-0';
2-10615272-1
What teams played in Capital Bowl IV?
CREATE TABLE "game_results" ( "year" real, "game" text, "team" text, "runner_up" text, "score" text );
SELECT "team" FROM "game_results" WHERE "game"='capital bowl iv';
2-10615272-1
What team defeated the Capital City Giants?
CREATE TABLE "game_results" ( "year" real, "game" text, "team" text, "runner_up" text, "score" text );
SELECT "team" FROM "game_results" WHERE "runner_up"='capital city giants';
2-10615272-1
What is the total tenure rank of the person with an uninterrupted time of 49 years, 349 days?
CREATE TABLE "senate_time" ( "total_tenure_rank" real, "uninterrupted_rank" real, "name" text, "state_represented" text, "total_tenure_time" text, "uninterrupted_time" text );
SELECT "total_tenure_rank" FROM "senate_time" WHERE "uninterrupted_time"='49 years, 349 days';
2-10644188-3
What is the total tenure time of Warren Magnuson, who had an uninterrupted rank larger than 4 and a total tenure rank larger than 9?
CREATE TABLE "senate_time" ( "total_tenure_rank" real, "uninterrupted_rank" real, "name" text, "state_represented" text, "total_tenure_time" text, "uninterrupted_time" text );
SELECT "total_tenure_time" FROM "senate_time" WHERE "uninterrupted_rank">4 AND "total_tenure_rank">9 AND "name"='warren magnuson';
2-10644188-3
What round was the overall 63 drafted?
CREATE TABLE "2004_new_england_patriots_draft_selectio" ( "round" real, "overall" real, "player" text, "position" text, "college" text );
SELECT COUNT("round") FROM "2004_new_england_patriots_draft_selectio" WHERE "overall"=63;
2-10716211-1
What is the Swedish name for South Karelia?
CREATE TABLE "regions" ( "in_english" text, "in_finnish" text, "in_swedish" text, "capital" text, "regional_state_administrative_agency" text );
SELECT "in_swedish" FROM "regions" WHERE "in_english"='south karelia';
2-10577-1
What was the home team in the match where the away team scored 15.12 (102)?
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" FROM "round_1" WHERE "away_team_score"='15.12 (102)';
2-10773616-1
What home team plays at Arden Street 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" FROM "round_1" WHERE "venue"='arden street oval';
2-10773616-1
Who has a Jump 2 of 7.06, and what is this person's Jump 3?
CREATE TABLE "final_round" ( "athlete_name" text, "jump_1" text, "jump_2" text, "jump_3" text, "best_jump" text );
SELECT "jump_3" FROM "final_round" WHERE "jump_2"='7.06';
2-10676139-2
Who has an x under Jump 1, a Jump 2 of 7.28, and what is this person's Best Jump?
CREATE TABLE "final_round" ( "athlete_name" text, "jump_1" text, "jump_2" text, "jump_3" text, "best_jump" text );
SELECT "best_jump" FROM "final_round" WHERE "jump_1"='x' AND "jump_2"='7.28';
2-10676139-2
What is the Jump 2 of the person that has a Jump 3 of 7.77?
CREATE TABLE "final_round" ( "athlete_name" text, "jump_1" text, "jump_2" text, "jump_3" text, "best_jump" text );
SELECT "jump_2" FROM "final_round" WHERE "jump_3"='7.77';
2-10676139-2
What is the Jump 2 of the person that has a Jump 1 of 7.14
CREATE TABLE "final_round" ( "athlete_name" text, "jump_1" text, "jump_2" text, "jump_3" text, "best_jump" text );
SELECT "jump_2" FROM "final_round" WHERE "jump_1"='7.14';
2-10676139-2
Which player from Tucson, Arizona won the Championship?
CREATE TABLE "pac_10_12_tournament" ( "year" real, "champion" text, "score" text, "runner_up" text, "arena" text, "city" text, "tournament_mvp" text );
SELECT "champion" FROM "pac_10_12_tournament" WHERE "city"='tucson, arizona';
2-10609116-6
What was the final score of the player from Inglewood, California?
CREATE TABLE "pac_10_12_tournament" ( "year" real, "champion" text, "score" text, "runner_up" text, "arena" text, "city" text, "tournament_mvp" text );
SELECT "score" FROM "pac_10_12_tournament" WHERE "city"='inglewood, california';
2-10609116-6
What tour was cancelled?
CREATE TABLE "le_tour_de_pilipinas_padyak_pinoy_fed_ex" ( "year" real, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "name" FROM "le_tour_de_pilipinas_padyak_pinoy_fed_ex" WHERE "date"='cancelled';
2-10694950-4
Who won the Fedex tour of Calabarzon?
CREATE TABLE "le_tour_de_pilipinas_padyak_pinoy_fed_ex" ( "year" real, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT "winner" FROM "le_tour_de_pilipinas_padyak_pinoy_fed_ex" WHERE "name"='fedex tour of calabarzon';
2-10694950-4
What year has the time of 55:29:20?
CREATE TABLE "le_tour_de_pilipinas_padyak_pinoy_fed_ex" ( "year" real, "name" text, "date" text, "stages" text, "distance" text, "winner" text, "time" text );
SELECT COUNT("year") FROM "le_tour_de_pilipinas_padyak_pinoy_fed_ex" WHERE "time"='55:29:20';
2-10694950-4
What was the score when Mark parterned with lorenzo manta?
CREATE TABLE "doubles_finals_8" ( "date" text, "tournament" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score" text );
SELECT "score" FROM "doubles_finals_8" WHERE "partner"='lorenzo manta';
2-10670367-2
Who was his partner when he played on carpet?
CREATE TABLE "doubles_finals_8" ( "date" text, "tournament" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score" text );
SELECT "partner" FROM "doubles_finals_8" WHERE "surface"='carpet';
2-10670367-2
When did he play with peter nyborg?
CREATE TABLE "doubles_finals_8" ( "date" text, "tournament" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score" text );
SELECT "date" FROM "doubles_finals_8" WHERE "partner"='peter nyborg';
2-10670367-2
What day did he play on hard with tom mercer?
CREATE TABLE "doubles_finals_8" ( "date" text, "tournament" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score" text );
SELECT "date" FROM "doubles_finals_8" WHERE "surface"='hard' AND "partner"='tom mercer';
2-10670367-2
What was the week 2's record?
CREATE TABLE "schedule" ( "week" text, "kickoff" text, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" text );
SELECT "record" FROM "schedule" WHERE "week"='2';
2-10716061-3
What was week 12's record?
CREATE TABLE "schedule" ( "week" text, "kickoff" text, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" text );
SELECT "record" FROM "schedule" WHERE "week"='12';
2-10716061-3
What was the Bye week attendance?
CREATE TABLE "schedule" ( "week" text, "kickoff" text, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "record"='bye';
2-10716061-3