question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Which kit maker does Aston Villa use?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_maker" text, "shirt_sponsor" text );
SELECT "kit_maker" FROM "personnel_and_kits" WHERE "team"='aston villa';
2-10592536-6
Who captains Portsmouth?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_maker" text, "shirt_sponsor" text );
SELECT "captain" FROM "personnel_and_kits" WHERE "team"='portsmouth';
2-10592536-6
What bombing happened in Brighton, UK?
CREATE TABLE "list_of_some_notable_incidents_involving" ( "year" real, "event" text, "location" text, "perpetrator_s" text, "deaths" text );
SELECT "event" FROM "list_of_some_notable_incidents_involving" WHERE "location"='brighton, uk';
2-1053290-1
What result had a score of 3–0?
CREATE TABLE "papa_bouba_diop_international_goals" ( "goal" real, "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "result" FROM "papa_bouba_diop_international_goals" WHERE "score"='3–0';
2-1053469-3
For the venue of suwon world cup stadium , suwon , south korea and a Score of 3–0 what is the result?
CREATE TABLE "papa_bouba_diop_international_goals" ( "goal" real, "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "result" FROM "papa_bouba_diop_international_goals" WHERE "venue"='suwon world cup stadium , suwon , south korea' AND "score"='3–0';
2-1053469-3
What is the top goal for the result of 2–3?
CREATE TABLE "papa_bouba_diop_international_goals" ( "goal" real, "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT MAX("goal") FROM "papa_bouba_diop_international_goals" WHERE "result"='2–3';
2-1053469-3
When was the time of 12:49:08 first set?
CREATE TABLE "event_records" ( "grade" text, "team" text, "town" text, "time" text, "year" real );
SELECT MIN("year") FROM "event_records" WHERE "time"='12:49:08';
2-10635031-2
What was the date when the attendance was 77,918?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "date" FROM "regular_season" WHERE "attendance"='77,918';
2-10769849-2
What was the attendance of the game played in the Georgia Dome?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "attendance" FROM "regular_season" WHERE "game_site"='georgia dome';
2-10769849-2
What was the date when the attendance was 73,529?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "attendance" text );
SELECT "date" FROM "regular_season" WHERE "attendance"='73,529';
2-10769849-2
What away team played at Western 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 "away_team" FROM "round_14" WHERE "venue"='western oval';
2-10746200-14
What away team scored 18.14 (122)?
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" FROM "round_14" WHERE "away_team_score"='18.14 (122)';
2-10746200-14
What away team scored 9.15 (69)?
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" FROM "round_14" WHERE "away_team_score"='9.15 (69)';
2-10746200-14
What was the smallest crowd when Footscray played at home?
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 MIN("crowd") FROM "round_14" WHERE "home_team"='footscray';
2-10746200-14
What was the away team when the home team scored 9.8 (62)?
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" FROM "round_14" WHERE "home_team_score"='9.8 (62)';
2-10746200-14
Where was the game held when the away team scored 10.12 (72)?
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_score"='10.12 (72)';
2-10773616-11
What was the home team's score at the game where the away team scored 13.6 (84)?
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_score"='13.6 (84)';
2-10773616-11
What was the outcome when she partnered with mashona washington?
CREATE TABLE "doubles_11_1_10" ( "outcome" text, "date" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "outcome" FROM "doubles_11_1_10" WHERE "partner"='mashona washington';
2-10577658-3
What is the listed crowd 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 "crowd" FROM "round_9" WHERE "venue"='junction oval';
2-10775890-9
What is the sum of crowd(s) when north melbourne is away?
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 SUM("crowd") FROM "round_9" WHERE "away_team"='north melbourne';
2-10775890-9
What day is south melbourne away?
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 "away_team"='south melbourne';
2-10775890-9
What was the away team's score when the home team scored 16.14 (110)?
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 "away_team_score" FROM "round_8" WHERE "home_team_score"='16.14 (110)';
2-10775890-8
What was the home team's score when the away team scored 13.14 (92)?
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 "away_team_score"='13.14 (92)';
2-10775890-8
Who was the home team at the game where the away team scored 10.13 (73) and there was a crowd over 24,119?
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 "crowd">'24,119' AND "away_team_score"='10.13 (73)';
2-10775890-8
What was the score of the competition on 23 November 2003?
CREATE TABLE "goals_for_senior_national_team" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "score" FROM "goals_for_senior_national_team" WHERE "date"='23 november 2003';
2-10749217-1
Where did Richmond play as an 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"='richmond';
2-10766119-14
When did South Melbourne play at home?
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 "date" FROM "round_14" WHERE "home_team"='south melbourne';
2-10766119-14
What is the average election for vicenza province with the liga veneta party?
CREATE TABLE "provinces" ( "province" text, "inhabitants" real, "president" text, "party" text, "election" real );
SELECT AVG("election") FROM "provinces" WHERE "party"='liga veneta' AND "province"='vicenza';
2-10747104-1
What is the sum of elections in vicenza?
CREATE TABLE "provinces" ( "province" text, "inhabitants" real, "president" text, "party" text, "election" real );
SELECT SUM("election") FROM "provinces" WHERE "province"='vicenza';
2-10747104-1
What province has an election after 2009?
CREATE TABLE "provinces" ( "province" text, "inhabitants" real, "president" text, "party" text, "election" real );
SELECT "province" FROM "provinces" WHERE "election">2009;
2-10747104-1
What format does Japan use?
CREATE TABLE "release_details" ( "country" text, "date" text, "label" text, "format" text, "catalogue" text );
SELECT "format" FROM "release_details" WHERE "country"='japan';
2-1059674-3
What date has a catalogue of 540 3622?
CREATE TABLE "release_details" ( "country" text, "date" text, "label" text, "format" text, "catalogue" text );
SELECT "date" FROM "release_details" WHERE "catalogue"='540 3622';
2-1059674-3
What format has a catalogue of asw 40362?
CREATE TABLE "release_details" ( "country" text, "date" text, "label" text, "format" text, "catalogue" text );
SELECT "format" FROM "release_details" WHERE "catalogue"='asw 40362';
2-1059674-3
What date has a catalogue of asw 40362?
CREATE TABLE "release_details" ( "country" text, "date" text, "label" text, "format" text, "catalogue" text );
SELECT "date" FROM "release_details" WHERE "catalogue"='asw 40362';
2-1059674-3
On what Date is the Crowd larger than 17,000?
CREATE TABLE "round_12" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "date" FROM "round_12" WHERE "crowd">'17,000';
2-10746808-12
What Home team has an Away team score of 8.9 (57)?
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_score"='8.9 (57)';
2-10746808-12
What is the Home team score when the Away team score is 17.16 (118)?
CREATE TABLE "round_12" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_12" WHERE "away_team_score"='17.16 (118)';
2-10746808-12
Which Away team has the Home team of Carlton?
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" FROM "round_12" WHERE "home_team"='carlton';
2-10746808-12
What was the score of the Jeff Tarango game?
CREATE TABLE "doubles_5" ( "date" text, "tournament" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score" text );
SELECT "score" FROM "doubles_5" WHERE "partner"='jeff tarango';
2-10670367-1
Where did Collingwood play ae the away team?
CREATE TABLE "round_7" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_7" WHERE "away_team"='collingwood';
2-10701045-7
What was the score when there was more than 27,000 in attendance?
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_score" FROM "round_7" WHERE "crowd">'27,000';
2-10701045-7
Where did Hawthorn play as the home team?
CREATE TABLE "round_7" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "venue" text, "crowd" real, "date" text );
SELECT "venue" FROM "round_7" WHERE "home_team"='hawthorn';
2-10701045-7
In 1990-2005 what is the lowest Start with Convs smaller than 2?
CREATE TABLE "leading_point_scorers" ( "player" text, "span" text, "start" real, "tries" real, "conv" real, "pens" real, "drop" real );
SELECT MIN("start") FROM "leading_point_scorers" WHERE "span"='1990-2005' AND "conv"<2;
2-1074629-7
What is the away team when the score is 6.9 (45)?
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" FROM "round_14" WHERE "away_team_score"='6.9 (45)';
2-10775890-14
What is the total of the crowd when the home team is footscray?
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 COUNT("crowd") FROM "round_14" WHERE "home_team"='footscray';
2-10775890-14
What is the away team score when the away team is Essendon?
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 "away_team"='essendon';
2-10775890-14
What is the crowd total when the home score is 5.9 (39)?
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"='5.9 (39)';
2-10775890-14
How many weeks ended in a result of L 20-10?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT COUNT("week") FROM "schedule" WHERE "result"='l 20-10';
2-10689224-1
What was the attendance in week 6?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "week"=6;
2-10689224-1
Who was the opponent in the game that had an attendance of 60,066?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "attendance"='60,066';
2-10689224-1
What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent?
CREATE TABLE "classification" ( "positional_or_automatic" text, "opponents" text, "suits" text, "material_or_non_material" text, "count_rectified" text );
SELECT "material_or_non_material" FROM "classification" WHERE "positional_or_automatic"='either' AND "count_rectified"='no' AND "opponents"='either';
2-105345-3
What is the value for positional opponents with no material or non-material, and 3 suits?
CREATE TABLE "classification" ( "positional_or_automatic" text, "opponents" text, "suits" text, "material_or_non_material" text, "count_rectified" text );
SELECT "opponents" FROM "classification" WHERE "positional_or_automatic"='positional' AND "material_or_non_material"='no' AND "suits"='3';
2-105345-3
Is it material or non-material when there are 2 suits for either opponent?
CREATE TABLE "classification" ( "positional_or_automatic" text, "opponents" text, "suits" text, "material_or_non_material" text, "count_rectified" text );
SELECT "material_or_non_material" FROM "classification" WHERE "suits"='2' AND "opponents"='either';
2-105345-3
Which suits have no material or non-material, either opponent, and are positional?
CREATE TABLE "classification" ( "positional_or_automatic" text, "opponents" text, "suits" text, "material_or_non_material" text, "count_rectified" text );
SELECT "suits" FROM "classification" WHERE "material_or_non_material"='no' AND "opponents"='either' AND "positional_or_automatic"='positional';
2-105345-3
Is the count rectified for single opponents, either positional or automatic, and no material or non-material?
CREATE TABLE "classification" ( "positional_or_automatic" text, "opponents" text, "suits" text, "material_or_non_material" text, "count_rectified" text );
SELECT "count_rectified" FROM "classification" WHERE "opponents"='single' AND "positional_or_automatic"='either' AND "material_or_non_material"='no';
2-105345-3
How many points did Happy Valley score before game 14?
CREATE TABLE "finalised_league_table" ( "team" text, "game" real, "draw" real, "loss" real, "goal_gain" real, "goal_loss" real, "goal_diff" real, "point" real );
SELECT COUNT("point") FROM "finalised_league_table" WHERE "team"='happy valley' AND "game"<14;
2-10661351-1
How many points were there in the game with a goal loss of 16 and a goal diff less than 26 after game 14?
CREATE TABLE "finalised_league_table" ( "team" text, "game" real, "draw" real, "loss" real, "goal_gain" real, "goal_loss" real, "goal_diff" real, "point" real );
SELECT COUNT("point") FROM "finalised_league_table" WHERE "goal_loss"=16 AND "goal_diff"<26 AND "game">14;
2-10661351-1
How many draws did the game after game 14 with goal gain 17 have?
CREATE TABLE "finalised_league_table" ( "team" text, "game" real, "draw" real, "loss" real, "goal_gain" real, "goal_loss" real, "goal_diff" real, "point" real );
SELECT MAX("draw") FROM "finalised_league_table" WHERE "goal_gain"=17 AND "game">14;
2-10661351-1
How many total draws were there with a less than 8 loss, more than 30 points, and a goal diff larger than 26?
CREATE TABLE "finalised_league_table" ( "team" text, "game" real, "draw" real, "loss" real, "goal_gain" real, "goal_loss" real, "goal_diff" real, "point" real );
SELECT COUNT("draw") FROM "finalised_league_table" WHERE "loss"<8 AND "point">30 AND "goal_diff">26;
2-10661351-1
What is the highest loss before game 14?
CREATE TABLE "finalised_league_table" ( "team" text, "game" real, "draw" real, "loss" real, "goal_gain" real, "goal_loss" real, "goal_diff" real, "point" real );
SELECT MAX("loss") FROM "finalised_league_table" WHERE "game"<14;
2-10661351-1
How many average points did the player with a time/retired of +16.789 and have more laps than 68 have?
CREATE TABLE "race" ( "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "points" real );
SELECT AVG("points") FROM "race" WHERE "time_retired"='+16.789' AND "laps">68;
2-10506557-3
How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?
CREATE TABLE "race" ( "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "points" real );
SELECT AVG("points") FROM "race" WHERE "team"='minardi team usa' AND "grid"=3 AND "laps">68;
2-10506557-3
Which was the highest crowd drawn by an Away team in Richmond?
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 MAX("crowd") FROM "round_9" WHERE "away_team"='richmond';
2-10776868-9
Which home team has a venue of Arden Street 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 "home_team" FROM "round_9" WHERE "venue"='arden street oval';
2-10776868-9
Which away team has a venue of Arden Street 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"='arden street oval';
2-10776868-9
What is the value for 2011 corresponding to a 2007 value of 1r?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2007" text, "2011" text, "2012" text, "2013" text );
SELECT "2011" FROM "doubles_performance_timeline" WHERE "2007"='1r';
2-10577658-5
What value in 2013 corresponds to Grand Slam Tournaments in 2012?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2007" text, "2011" text, "2012" text, "2013" text );
SELECT "2013" FROM "doubles_performance_timeline" WHERE "2012"='grand slam tournaments';
2-10577658-5
What is the 2012 value when the 2011 and 2007 values are 1R?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2007" text, "2011" text, "2012" text, "2013" text );
SELECT "2012" FROM "doubles_performance_timeline" WHERE "2011"='1r' AND "2007"='1r';
2-10577658-5
What value for 2013 corresponds to the US Open Tournament?
CREATE TABLE "doubles_performance_timeline" ( "tournament" text, "2007" text, "2011" text, "2012" text, "2013" text );
SELECT "2013" FROM "doubles_performance_timeline" WHERE "tournament"='us open';
2-10577658-5
The school nicknamed the wildcats has what sum of enrollment?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text );
SELECT SUM("enrollment") FROM "current_members" WHERE "team_nickname"='wildcats';
2-10720390-1
What is the Founded year of the school located in Paul Smiths, New York?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text );
SELECT "founded" FROM "current_members" WHERE "location"='paul smiths, new york';
2-10720390-1
What home side scored 9.4 (58)?
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"='9.4 (58)';
2-10783853-11
What was fitzroy's away side 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 "away_team"='fitzroy';
2-10783853-11
What is the away team's score when the home side scores 9.4 (58)?
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_score"='9.4 (58)';
2-10783853-11
What player attended UAB college?
CREATE TABLE "2002_new_york_jets_season" ( "round" real, "pick" real, "player" text, "position" text, "college" text );
SELECT "player" FROM "2002_new_york_jets_season" WHERE "college"='uab';
2-10769447-1
What was the score of the game at RIch Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "stadium" text, "record" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "stadium"='rich stadium';
2-10647138-1
Who had the best time of 1:32.269?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" text );
SELECT "name" FROM "qualifying_results" WHERE "best"='1:32.269';
2-10566303-1
Who from Conquest Racing had the best time of 1:34.748 in Qual 1?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" text );
SELECT "best" FROM "qualifying_results" WHERE "team"='conquest racing' AND "qual_1"='1:34.748';
2-10566303-1
Who in Qual 2 had the best time of 1:31.327?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" text );
SELECT "qual_2" FROM "qualifying_results" WHERE "best"='1:31.327';
2-10566303-1
What was Dan Selznick best time?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" text );
SELECT "best" FROM "qualifying_results" WHERE "name"='dan selznick';
2-10566303-1
What team had 1:34.578 in Qual 2?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" text );
SELECT "team" FROM "qualifying_results" WHERE "qual_2"='1:34.578';
2-10566303-1
Jiang Tengyi is on which team?
CREATE TABLE "qualifying_results" ( "name" text, "team" text, "qual_1" text, "qual_2" text, "best" text );
SELECT "team" FROM "qualifying_results" WHERE "name"='jiang tengyi';
2-10566303-1
What is the away team's score when footscray is the away team?
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_score" FROM "round_9" WHERE "away_team"='footscray';
2-10701914-9
What venue has an Away team score of 8.8 (56)?
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 "venue" FROM "round_9" WHERE "away_team_score"='8.8 (56)';
2-10701914-9
Whom is the away team when the Away team score is 23.14 (152)?
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 "away_team_score"='23.14 (152)';
2-10701914-9
Whom is the home team when the home team score is 12.13 (85)?
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 "home_team" FROM "round_9" WHERE "home_team_score"='12.13 (85)';
2-10701914-9
What was the rank for czechoslovakia with 1 bronze?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT "rank" FROM "medal_table" WHERE "bronze"=1 AND "nation"='czechoslovakia';
2-10636637-1
How many bronze medals for the nation with over 9 golds?
CREATE TABLE "medal_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("bronze") FROM "medal_table" WHERE "gold">9;
2-10636637-1
What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong?
CREATE TABLE "international_career" ( "date" text, "venue" text, "result" text, "goals" real, "competition" text );
SELECT AVG("goals") FROM "international_career" WHERE "venue"='hong kong stadium, hong kong';
2-10749142-2
Which country uses pound sterling with a value higher than 1.33 USD?
CREATE TABLE "currency_and_central_banks" ( "country" text, "currency" text, "value_in_euro" text, "value_in_usd" real, "central_bank" text );
SELECT "country" FROM "currency_and_central_banks" WHERE "value_in_usd">1.33 AND "currency"='pound sterling';
2-1069072-2
Who is the away side, when the home side scores 13.22 (100)?
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 "home_team_score"='13.22 (100)';
2-10776868-7
What venue features carlton at home?
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 "home_team"='carlton';
2-10776868-7
What venue features fitzroy as 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 "venue" FROM "round_7" WHERE "away_team"='fitzroy';
2-10776868-7
What was the crowd size when the home team scored 17.14 (116)?
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 "home_team_score"='17.14 (116)';
2-10767641-2
What was the smallest crowd that Melbourne played for at home?
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 MIN("crowd") FROM "round_2" WHERE "home_team"='melbourne';
2-10767641-2
What was the home teams score when the away team scored 7.5 (47)?
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 "away_team_score"='7.5 (47)';
2-10767641-2
What was the home teams score at Victoria 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 "home_team_score" FROM "round_2" WHERE "venue"='victoria park';
2-10767641-2
What was the away team against which the home team scored 10.14 (74)?
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 "home_team_score"='10.14 (74)';
2-10767641-2
What home team played the away team of Richmond?
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" FROM "round_2" WHERE "away_team"='richmond';
2-10767641-2
What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1?
CREATE TABLE "batting_averages" ( "player" text, "matches" real, "inns" real, "runs" real, "high_score" real, "average" real, "catches" real, "stump" real );
SELECT SUM("high_score") FROM "batting_averages" WHERE "stump"=0 AND "catches"=4 AND "average"<56.1 AND "inns">14;
2-10621256-1