question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many days did Hawthorn play as a home team?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT COUNT("date") FROM "round_of_16" WHERE "home_team"='Hawthorn';
1-16388230-1
What time was it when the home team's score was 10.7 (67)?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "time" FROM "round_of_16" WHERE "home_team_score"='10.7 (67)';
1-16388230-1
What time was it when the away team's score was 5.4 (34)?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "time" FROM "round_of_16" WHERE "away_team_score"='5.4 (34)';
1-16388230-1
How many days was the away team's score 11.8 (74)?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT COUNT("date") FROM "round_of_16" WHERE "away_team_score"='11.8 (74)';
1-16388230-1
The away team of Richmond played on what grounds?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "ground" FROM "round_of_16" WHERE "away_team"='Richmond';
1-16388230-1
At what venues did the away team score 16.10 (106)?
CREATE TABLE "round_of_14" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "ground" FROM "round_of_14" WHERE "away_team_score"='16.10 (106)';
1-16387953-1
What was the away team's score at the venue football park?
CREATE TABLE "round_of_14" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "away_team_score" FROM "round_of_14" WHERE "ground"='Football Park';
1-16387953-1
On what date did the home team score 14.12 (96)?
CREATE TABLE "round_of_14" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "date" FROM "round_of_14" WHERE "home_team_score"='14.12 (96)';
1-16387953-1
What are the scores for games where the home team is Adelaide?
CREATE TABLE "round_of_14" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "home_team_score" FROM "round_of_14" WHERE "home_team"='Adelaide';
1-16387953-1
On what dates where games played at Football Park?
CREATE TABLE "round_of_14" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "date" FROM "round_of_14" WHERE "ground"='Football Park';
1-16387953-1
What was the home team score against Collingwood?
CREATE TABLE "1st_round" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "1st_round" WHERE "away_team"='Collingwood';
1-16387653-1
Who was the away team playing at Carlton?
CREATE TABLE "1st_round" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "away_team" FROM "1st_round" WHERE "home_team"='Carlton';
1-16387653-1
What did the home team score against Richmond?
CREATE TABLE "1st_round" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "1st_round" WHERE "away_team"='Richmond';
1-16387653-1
What was the maximum crowd size against St Kilda?
CREATE TABLE "1st_round" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT MAX("crowd") FROM "1st_round" WHERE "away_team"='St Kilda';
1-16387653-1
What to Footscray score at home?
CREATE TABLE "1st_round" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "1st_round" WHERE "home_team"='Footscray';
1-16387653-1
How many crowd sizes were recorded at the game when the home team scored 7.8 (50)?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT COUNT("crowd") FROM "round_of_16" WHERE "home_team_score"='7.8 (50)';
1-16388357-1
When the home team scored 7.8 (50), how many away team scores were recorded?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT COUNT("away_team_score") FROM "round_of_16" WHERE "home_team_score"='7.8 (50)';
1-16388357-1
What did the home team score when the away team scored 18.12 (120)?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "home_team_score" FROM "round_of_16" WHERE "away_team_score"='18.12 (120)';
1-16388357-1
Name the date for bundaberg rum stadium
CREATE TABLE "group_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT "date" FROM "group_3" WHERE "ground"='Bundaberg Rum Stadium';
1-16388439-3
Name the home team score for brisbane lions
CREATE TABLE "group_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT "home_team_score" FROM "group_3" WHERE "home_team"='Brisbane Lions';
1-16388439-3
Name the home team for football park
CREATE TABLE "group_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT "home_team" FROM "group_3" WHERE "ground"='Football Park';
1-16388439-3
Name the away team score for carlton
CREATE TABLE "group_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT "away_team_score" FROM "group_3" WHERE "home_team"='Carlton';
1-16388439-3
Name the date for adelaide for westpac stadium
CREATE TABLE "group_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT "date" FROM "group_3" WHERE "home_team"='Adelaide' AND "ground"='Westpac Stadium';
1-16388439-3
Name the total number of ground for essendon
CREATE TABLE "group_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT COUNT("ground") FROM "group_1" WHERE "home_team"='Essendon';
1-16388439-1
Name the most crowd for essendon
CREATE TABLE "group_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT MAX("crowd") FROM "group_1" WHERE "away_team"='Essendon';
1-16388439-1
When ground is manuka oval what is the home team score?
CREATE TABLE "group_2" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT COUNT("home_team_score") FROM "group_2" WHERE "ground"='Manuka Oval';
1-16388439-2
When the crowd was 8642 what was the away team's score?
CREATE TABLE "group_2" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "date" text, "crowd" real );
SELECT "away_team_score" FROM "group_2" WHERE "crowd"=8642;
1-16388439-2
Which location had an attendance of 22537?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "ground" FROM "round_1" WHERE "crowd"=22537;
1-16388545-1
When the away team's score was 0.12.5 (77), what was the home team's score?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_1" WHERE "away_team_score"='0.12.5 (77)';
1-16388545-1
When the away team's score was 2.10.7 (85), what was the home team's score?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_1" WHERE "away_team_score"='2.10.7 (85)';
1-16388545-1
What was the away team's score of at the game of telstra stadium?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "away_team_score" FROM "round_1" WHERE "ground"='Telstra Stadium';
1-16388545-1
When the away team was Carlton, who was the home team?
CREATE TABLE "round_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team" FROM "round_1" WHERE "away_team"='Carlton';
1-16388545-1
What was the average for contestants with a swimsuit score of 8.266?
CREATE TABLE "final_competition_scores" ( "country" text, "preliminary" text, "interview" text, "swimsuit" text, "evening_gown" text, "average" text );
SELECT "average" FROM "final_competition_scores" WHERE "swimsuit"='8.266';
1-16390001-2
What are the interview scores for contestants whose average is 9.090?
CREATE TABLE "final_competition_scores" ( "country" text, "preliminary" text, "interview" text, "swimsuit" text, "evening_gown" text, "average" text );
SELECT "interview" FROM "final_competition_scores" WHERE "average"='9.090';
1-16390001-2
What are the average scores of contestants whose home state is Pennsylvania?
CREATE TABLE "final_competition_scores" ( "country" text, "preliminary" text, "interview" text, "swimsuit" text, "evening_gown" text, "average" text );
SELECT "average" FROM "final_competition_scores" WHERE "country"='Pennsylvania';
1-16390001-2
What are the evening gown scores of contestants whose average is 9.266?
CREATE TABLE "final_competition_scores" ( "country" text, "preliminary" text, "interview" text, "swimsuit" text, "evening_gown" text, "average" text );
SELECT "evening_gown" FROM "final_competition_scores" WHERE "average"='9.266';
1-16390001-2
What are the average scores of contestants whose interview score is 8.011?
CREATE TABLE "final_competition_scores" ( "country" text, "preliminary" text, "interview" text, "swimsuit" text, "evening_gown" text, "average" text );
SELECT "average" FROM "final_competition_scores" WHERE "interview"='8.011';
1-16390001-2
What are the home team scores when richmond is the home team?
CREATE TABLE "week_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "week_1" WHERE "home_team"='Richmond';
1-16388506-1
What are the home team scores when fremantle is the away team?
CREATE TABLE "week_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "week_1" WHERE "away_team"='Fremantle';
1-16388506-1
What is the largest crowd when essendon is the home team?
CREATE TABLE "week_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT MAX("crowd") FROM "week_1" WHERE "home_team"='Essendon';
1-16388506-1
Who are the away teams when subiaco oval was the grounds?
CREATE TABLE "week_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "away_team" FROM "week_1" WHERE "ground"='Subiaco Oval';
1-16388506-1
Who were the away teams when the home team scored 1.8.0.5 (62)?
CREATE TABLE "week_1" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "away_team" FROM "week_1" WHERE "home_team_score"='1.8.0.5 (62)';
1-16388506-1
Who was the home team when the away team is Carlton?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team" FROM "round_3" WHERE "away_team"='Carlton';
1-16388478-4
What is the home team score where the home team is Fremantle?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "home_team_score" FROM "round_3" WHERE "home_team"='Fremantle';
1-16388478-4
What was the away team score for the game with a crowd of 5391?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "away_team_score" FROM "round_3" WHERE "crowd"=5391;
1-16388478-4
What date was Adelaide the home team?
CREATE TABLE "round_3" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text );
SELECT "date" FROM "round_3" WHERE "home_team"='Adelaide';
1-16388478-4
How many locations does Elon University have?
CREATE TABLE "member_teams" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text, "home_rink" text );
SELECT COUNT("location") FROM "member_teams" WHERE "institution"='Elon University';
1-16403890-1
Private/Catholic school's minimum enrollment is?
CREATE TABLE "member_teams" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text, "home_rink" text );
SELECT MIN("enrollment") FROM "member_teams" WHERE "affiliation"='Private/Catholic';
1-16403890-1
Which school has the mascot of the Colonials?
CREATE TABLE "member_teams" ( "institution" text, "location" text, "founded" real, "affiliation" text, "enrollment" real, "team_nickname" text, "primary_conference" text, "home_rink" text );
SELECT "institution" FROM "member_teams" WHERE "team_nickname"='Colonials';
1-16403890-1
What is the socket location for sSPEC number sl3f7(kc0)sl3fj(kc0)?
CREATE TABLE "250_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "socket" FROM "250_nm" WHERE "s_spec_number"='SL3F7(kC0)SL3FJ(kC0)';
1-16400024-1
What is the release date of part 80525py500512bx80525u500512bx80525u500512e?
CREATE TABLE "250_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "release_date" FROM "250_nm" WHERE "part_number_s"='80525PY500512BX80525U500512BX80525U500512E';
1-16400024-1
How many release prices are there for the Pentium iii 550?
CREATE TABLE "250_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT COUNT("release_price_usd") FROM "250_nm" WHERE "model_number"='Pentium III 550';
1-16400024-1
What is the model number with a release price of $496?
CREATE TABLE "250_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "model_number" FROM "250_nm" WHERE "release_price_usd"='$496';
1-16400024-1
What is the l2 cache for the model with a release price of $669?
CREATE TABLE "250_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "l2_cache" FROM "250_nm" WHERE "release_price_usd"='$669';
1-16400024-1
What day(s) did they play on week 2?
CREATE TABLE "table1_1639689_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "date" FROM "table1_1639689_2" WHERE "week"=2;
1-1639689-2
What was the kickoff time on monday, may 13?
CREATE TABLE "table1_1639689_2" ( "week" real, "date" text, "kickoff" text, "opponent" text, "final_score" text, "team_record" text, "game_site" text, "attendance" real );
SELECT "kickoff" FROM "table1_1639689_2" WHERE "date"='Monday, May 13';
1-1639689-2
what is the latest episode in season 2 directed by jamie babbit?
CREATE TABLE "table1_16390576_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT MAX("no_in_season") FROM "table1_16390576_3" WHERE "directed_by"='Jamie Babbit';
1-16390576-3
what is the number of the episode titled "magic jordan"?
CREATE TABLE "table1_16390576_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT MIN("no_in_series") FROM "table1_16390576_3" WHERE "title"='\"Magic Jordan\"';
1-16390576-3
what are the air dates for episodes with the production code 08-02-214
CREATE TABLE "table1_16390576_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "original_air_date" FROM "table1_16390576_3" WHERE "production_code"='08-02-214';
1-16390576-3
what is the title of episode 28
CREATE TABLE "table1_16390576_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "title" FROM "table1_16390576_3" WHERE "no_in_series"=28;
1-16390576-3
What is the dpi of a scanner with the mm dimensions 280 x 95 x 40?
CREATE TABLE "typical_duplex_scanners" ( "product" text, "dimensions_mm" text, "dpi" real, "pages_per_minute_color" real, "max_page_size" text, "interface" text );
SELECT "dpi" FROM "typical_duplex_scanners" WHERE "dimensions_mm"='280 x 95 x 40';
1-16409745-1
What is the maximum pages per minute for the Xerox Travel Scanner 100?
CREATE TABLE "typical_duplex_scanners" ( "product" text, "dimensions_mm" text, "dpi" real, "pages_per_minute_color" real, "max_page_size" text, "interface" text );
SELECT MAX("pages_per_minute_color") FROM "typical_duplex_scanners" WHERE "product"='Xerox Travel Scanner 100';
1-16409745-1
What interface is used on the scanner that has a 36 pages per minute?
CREATE TABLE "typical_duplex_scanners" ( "product" text, "dimensions_mm" text, "dpi" real, "pages_per_minute_color" real, "max_page_size" text, "interface" text );
SELECT "interface" FROM "typical_duplex_scanners" WHERE "pages_per_minute_color"=36;
1-16409745-1
What are the mm dimensions of the Plustek Mobileoffice D28 Corporate?
CREATE TABLE "typical_duplex_scanners" ( "product" text, "dimensions_mm" text, "dpi" real, "pages_per_minute_color" real, "max_page_size" text, "interface" text );
SELECT "dimensions_mm" FROM "typical_duplex_scanners" WHERE "product"='Plustek MobileOffice D28 Corporate';
1-16409745-1
What are the mm dimensions for the Fujitsu fi-6130 a4 Series Scanner?
CREATE TABLE "typical_duplex_scanners" ( "product" text, "dimensions_mm" text, "dpi" real, "pages_per_minute_color" real, "max_page_size" text, "interface" text );
SELECT "dimensions_mm" FROM "typical_duplex_scanners" WHERE "product"='Fujitsu fi-6130 A4 Series Scanner';
1-16409745-1
What is the dpi for the scanner with a max page size of 216mm x 355mm?
CREATE TABLE "typical_duplex_scanners" ( "product" text, "dimensions_mm" text, "dpi" real, "pages_per_minute_color" real, "max_page_size" text, "interface" text );
SELECT "dpi" FROM "typical_duplex_scanners" WHERE "max_page_size"='216mm x 355mm';
1-16409745-1
which country won swimming track & field when lexington won swimming and madison won volleyball
CREATE TABLE "girls_league_championships" ( "school_year" text, "volleyball" text, "cross_country" text, "soccer" text, "tennis" text, "golf" text, "basketball" text, "swimming" text, "softball" text, "track_field" text );
SELECT "track_field" FROM "girls_league_championships" WHERE "swimming"='Lexington' AND "volleyball"='Madison';
1-16423070-4
how many teams won at golf when wooster won soccer
CREATE TABLE "girls_league_championships" ( "school_year" text, "volleyball" text, "cross_country" text, "soccer" text, "tennis" text, "golf" text, "basketball" text, "swimming" text, "softball" text, "track_field" text );
SELECT COUNT("golf") FROM "girls_league_championships" WHERE "soccer"='Wooster';
1-16423070-4
Who won soccer when madison won volleyball, lexington won cross country and orrville won softball
CREATE TABLE "girls_league_championships" ( "school_year" text, "volleyball" text, "cross_country" text, "soccer" text, "tennis" text, "golf" text, "basketball" text, "swimming" text, "softball" text, "track_field" text );
SELECT "soccer" FROM "girls_league_championships" WHERE "volleyball"='Madison' AND "cross_country"='Lexington' AND "softball"='Orrville';
1-16423070-4
Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12
CREATE TABLE "girls_league_championships" ( "school_year" text, "volleyball" text, "cross_country" text, "soccer" text, "tennis" text, "golf" text, "basketball" text, "swimming" text, "softball" text, "track_field" text );
SELECT "volleyball" FROM "girls_league_championships" WHERE "basketball"='West Holmes' AND "swimming"='Wooster' AND "school_year"='2011-12';
1-16423070-4
who won tennis when ashland won softball and wooster won volleybal
CREATE TABLE "girls_league_championships" ( "school_year" text, "volleyball" text, "cross_country" text, "soccer" text, "tennis" text, "golf" text, "basketball" text, "swimming" text, "softball" text, "track_field" text );
SELECT "tennis" FROM "girls_league_championships" WHERE "softball"='Ashland' AND "volleyball"='Wooster';
1-16423070-4
who won basketball when ashland won track & field and cross country
CREATE TABLE "girls_league_championships" ( "school_year" text, "volleyball" text, "cross_country" text, "soccer" text, "tennis" text, "golf" text, "basketball" text, "swimming" text, "softball" text, "track_field" text );
SELECT "basketball" FROM "girls_league_championships" WHERE "track_field"='Ashland' AND "cross_country"='Ashland';
1-16423070-4
What is the location of the school established in 1923
CREATE TABLE "american_division" ( "institution" text, "location" text, "nickname" text, "enrollment" real, "established" real );
SELECT "location" FROM "american_division" WHERE "established"=1923;
1-16432543-1
Total enrollment at the school with the nickname Blue Hens
CREATE TABLE "american_division" ( "institution" text, "location" text, "nickname" text, "enrollment" real, "established" real );
SELECT COUNT("enrollment") FROM "american_division" WHERE "nickname"='Blue Hens';
1-16432543-1
Nickname of the school established in 1773
CREATE TABLE "american_division" ( "institution" text, "location" text, "nickname" text, "enrollment" real, "established" real );
SELECT "nickname" FROM "american_division" WHERE "established"=1773;
1-16432543-1
What is the year Rowan University was established
CREATE TABLE "american_division" ( "institution" text, "location" text, "nickname" text, "enrollment" real, "established" real );
SELECT "established" FROM "american_division" WHERE "institution"='Rowan University';
1-16432543-1
How many nicknames does the school in Newark, DE have
CREATE TABLE "american_division" ( "institution" text, "location" text, "nickname" text, "enrollment" real, "established" real );
SELECT COUNT("nickname") FROM "american_division" WHERE "location"='Newark, DE';
1-16432543-1
Location of the school with the nickname Mountaineers
CREATE TABLE "american_division" ( "institution" text, "location" text, "nickname" text, "enrollment" real, "established" real );
SELECT "location" FROM "american_division" WHERE "nickname"='Mountaineers';
1-16432543-1
What was the original air date of the episode titled "Beaver's Pigeons"
CREATE TABLE "table1_16432167_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "original_air_date" FROM "table1_16432167_1" WHERE "title"='\"Beaver''s Pigeons\"';
1-16432167-1
Who wrote the episode with the production code of 942A?
CREATE TABLE "table1_16432167_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "written_by" FROM "table1_16432167_1" WHERE "production_code"='942A';
1-16432167-1
What numbered episode of the season was titled "Beaver says Good-Bye"?
CREATE TABLE "table1_16432167_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "no_in_season" FROM "table1_16432167_1" WHERE "title"='\"Beaver Says Good-bye\"';
1-16432167-1
What number episode in the series was titled "Wally's Pug Nose"?
CREATE TABLE "table1_16432167_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "no_in_series" FROM "table1_16432167_1" WHERE "title"='\"Wally''s Pug Nose\"';
1-16432167-1
What was the production code of the episode written by Joe Connelly and Bob Mosher titled "Beaver Gets Adopted"?
CREATE TABLE "table1_16432167_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "production_code" FROM "table1_16432167_1" WHERE "written_by"='Joe Connelly and Bob Mosher' AND "title"='\"Beaver Gets Adopted\"';
1-16432167-1
Who was responsible for original beechwood bunny tale / source material for the episode title "Papa Bramble's Secret"?
CREATE TABLE "table1_16425614_3" ( "official_num" real, "tf1_num" real, "french_title" text, "english_title" text, "air_date_france" text, "original_beechwood_bunny_tale_source_material" text );
SELECT "original_beechwood_bunny_tale_source_material" FROM "table1_16425614_3" WHERE "english_title"='\"Papa Bramble''s Secret\"';
1-16425614-3
What is the French title for "Papa Bramble's Secret"?
CREATE TABLE "table1_16425614_3" ( "official_num" real, "tf1_num" real, "french_title" text, "english_title" text, "air_date_france" text, "original_beechwood_bunny_tale_source_material" text );
SELECT "french_title" FROM "table1_16425614_3" WHERE "english_title"='\"Papa Bramble''s Secret\"';
1-16425614-3
Who was responsible for original beechwood bunny tale / source material for the episode title "The Monster of Blueberry Lake"?
CREATE TABLE "table1_16425614_3" ( "official_num" real, "tf1_num" real, "french_title" text, "english_title" text, "air_date_france" text, "original_beechwood_bunny_tale_source_material" text );
SELECT "original_beechwood_bunny_tale_source_material" FROM "table1_16425614_3" WHERE "english_title"='\"The Monster of Blueberry Lake\"';
1-16425614-3
What is the English title for the official number 22 episode?
CREATE TABLE "table1_16425614_3" ( "official_num" real, "tf1_num" real, "french_title" text, "english_title" text, "air_date_france" text, "original_beechwood_bunny_tale_source_material" text );
SELECT "english_title" FROM "table1_16425614_3" WHERE "official_num"=22;
1-16425614-3
Which CFL team did the player from British Columbia get drafted to
CREATE TABLE "round_five" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "cfl_team" FROM "round_five" WHERE "college"='British Columbia';
1-16441561-5
Which positions had players from Laval college
CREATE TABLE "round_five" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_five" WHERE "college"='Laval';
1-16441561-5
What position did Gene Stahl play
CREATE TABLE "round_five" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_five" WHERE "player"='Gene Stahl';
1-16441561-5
Which player played DB
CREATE TABLE "round_five" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "player" FROM "round_five" WHERE "position"='DB';
1-16441561-5
Who was the lowest picked LB
CREATE TABLE "round_five" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT MIN("pick_num") FROM "round_five" WHERE "position"='LB';
1-16441561-5
How many players named Jeff Brown were drafted
CREATE TABLE "round_five" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("position") FROM "round_five" WHERE "player"='Jeff Brown';
1-16441561-5
How many feet per second does a shell move where the height range is 23500?
CREATE TABLE "table1_16439764_1" ( "gun" text, "m_v_ft_s" real, "shell_lb" text, "time_to_ft_m_at_25_seconds" text, "time_to_ft_m_at_40_seconds" text, "time_to_ft_m_at_55_seconds" text, "max_height_ft" real );
SELECT MIN("m_v_ft_s") FROM "table1_16439764_1" WHERE "max_height_ft"=23500;
1-16439764-1
If the gun used is the qf 12 pdr 12 cwt, what is the shell weight?
CREATE TABLE "table1_16439764_1" ( "gun" text, "m_v_ft_s" real, "shell_lb" text, "time_to_ft_m_at_25_seconds" text, "time_to_ft_m_at_40_seconds" text, "time_to_ft_m_at_55_seconds" text, "max_height_ft" real );
SELECT "shell_lb" FROM "table1_16439764_1" WHERE "gun"='QF 12 pdr 12 cwt';
1-16439764-1
Where the height range is higher than 20000.0 and the shell weight is 12.5, what is the time to feet ratio at 25 degrees?
CREATE TABLE "table1_16439764_1" ( "gun" text, "m_v_ft_s" real, "shell_lb" text, "time_to_ft_m_at_25_seconds" text, "time_to_ft_m_at_40_seconds" text, "time_to_ft_m_at_55_seconds" text, "max_height_ft" real );
SELECT "time_to_ft_m_at_25_seconds" FROM "table1_16439764_1" WHERE "shell_lb"='12.5' AND "max_height_ft">20000.0;
1-16439764-1
What gun has a time to feet ratio of 18.8 at 55 degrees?
CREATE TABLE "table1_16439764_1" ( "gun" text, "m_v_ft_s" real, "shell_lb" text, "time_to_ft_m_at_25_seconds" text, "time_to_ft_m_at_40_seconds" text, "time_to_ft_m_at_55_seconds" text, "max_height_ft" real );
SELECT "gun" FROM "table1_16439764_1" WHERE "time_to_ft_m_at_55_seconds"='18.8';
1-16439764-1
What is the maximum foot per second speed where time to feet ratio is 22.1 at 55 degrees?
CREATE TABLE "table1_16439764_1" ( "gun" text, "m_v_ft_s" real, "shell_lb" text, "time_to_ft_m_at_25_seconds" text, "time_to_ft_m_at_40_seconds" text, "time_to_ft_m_at_55_seconds" text, "max_height_ft" real );
SELECT MAX("m_v_ft_s") FROM "table1_16439764_1" WHERE "time_to_ft_m_at_55_seconds"='22.1';
1-16439764-1
What is the foot per second speed where time to feet ratio is 9.2 at 25 degrees?
CREATE TABLE "table1_16439764_1" ( "gun" text, "m_v_ft_s" real, "shell_lb" text, "time_to_ft_m_at_25_seconds" text, "time_to_ft_m_at_40_seconds" text, "time_to_ft_m_at_55_seconds" text, "max_height_ft" real );
SELECT "m_v_ft_s" FROM "table1_16439764_1" WHERE "time_to_ft_m_at_25_seconds"='9.2';
1-16439764-1
Who was skip for the country whose points for (PF) was 73?
CREATE TABLE "round_robin" ( "country" text, "skip" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" real );
SELECT "skip" FROM "round_robin" WHERE "pf"=73;
1-1644857-2