question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What date was the Home team fitzroy? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_2" WHERE "home_team"='fitzroy'; | 2-10701914-2 |
What is the largest crowd when st kilda was the away team? | 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 MAX("crowd") FROM "round_2" WHERE "away_team"='st kilda'; | 2-10701914-2 |
What was the score of essendon when they were the away team? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "away_team_score" FROM "round_2" WHERE "away_team"='essendon'; | 2-10701914-2 |
What is the home team when there were more than 13,000 in the crowd at brunswick street oval? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_2" WHERE "crowd">'13,000' AND "venue"='brunswick street oval'; | 2-10701914-2 |
What away team played when the home team scoreed 5.7 (37)? | 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"='5.7 (37)'; | 2-10701914-2 |
What home team played at the western oval? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_2" WHERE "venue"='western oval'; | 2-10701914-2 |
Which mid-hill zone has a slightly warm temperature? | CREATE TABLE "references" (
"particulars_and_characteristics" text,
"shivalik_zone" text,
"mid_hill_zone" text,
"high_hill_zone" text,
"trance_n_himalaya_zone" text
); | SELECT "high_hill_zone" FROM "references" WHERE "mid_hill_zone"='slightly warm temperature'; | 2-10638523-1 |
Which one took place on December 3, 1995? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "date"='december 3, 1995'; | 2-10689293-2 |
Who was the opponent of the New Orleans Saints? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "opponent"='new orleans saints'; | 2-10689293-2 |
What grid has 23 laps done by Josh Brookes? | CREATE TABLE "superbike_race_1_classification" (
"rider" text,
"bike" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "grid" FROM "superbike_race_1_classification" WHERE "laps"=23 AND "rider"='josh brookes'; | 2-10651263-1 |
What is noriyuki haga's time? | CREATE TABLE "superbike_race_1_classification" (
"rider" text,
"bike" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "time" FROM "superbike_race_1_classification" WHERE "rider"='noriyuki haga'; | 2-10651263-1 |
What laps have a Time of +28.778? | CREATE TABLE "superbike_race_1_classification" (
"rider" text,
"bike" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "laps" FROM "superbike_race_1_classification" WHERE "time"='+28.778'; | 2-10651263-1 |
Where was the game held where 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 "venue" FROM "round_17" WHERE "away_team"='hawthorn'; | 2-10783853-17 |
What was the date of the game when Richmond was the home team? | CREATE TABLE "round_17" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_17" WHERE "home_team"='richmond'; | 2-10783853-17 |
Who was the home team at the game played at Kardinia Park? | 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 "venue"='kardinia park'; | 2-10783853-17 |
What is the away team score when the venue was Western 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 "away_team_score" FROM "round_10" WHERE "venue"='western oval'; | 2-10776868-10 |
What is the date of the game with an away team score of 6.12 (48)? | 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 "date" FROM "round_10" WHERE "away_team_score"='6.12 (48)'; | 2-10776868-10 |
What is the away team when the away team score is 8.17 (65)? | 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"='8.17 (65)'; | 2-10776868-10 |
What is the date of the game when the venue is MCG? | CREATE TABLE "round_10" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_10" WHERE "venue"='mcg'; | 2-10776868-10 |
What is the home team score when the away team is Essendon? | 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"='essendon'; | 2-10776868-10 |
What is the name of the away team whose venue is Kardinia Park? | 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 "venue"='kardinia park'; | 2-10776868-10 |
What was the result when they were on a bye week? | CREATE TABLE "schedule" (
"week" real,
"opponent" text,
"result" text,
"stadium" text,
"record" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "stadium"='bye week'; | 2-10646496-1 |
What was the result when the attendance was 25,418? | CREATE TABLE "schedule" (
"week" real,
"opponent" text,
"result" text,
"stadium" text,
"record" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "attendance"='25,418'; | 2-10646496-1 |
Which of the Latest version was released on Release date 1987-12-09? | CREATE TABLE "dos_shells" (
"name" text,
"release_date" text,
"latest_version" text,
"status_support" text,
"source_model" text,
"architecture" text,
"target_market" text
); | SELECT "latest_version" FROM "dos_shells" WHERE "release_date"='1987-12-09'; | 2-10758793-2 |
Which Source model has a 16-bit* Architecture? | CREATE TABLE "dos_shells" (
"name" text,
"release_date" text,
"latest_version" text,
"status_support" text,
"source_model" text,
"architecture" text,
"target_market" text
); | SELECT "source_model" FROM "dos_shells" WHERE "architecture"='16-bit*'; | 2-10758793-2 |
Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20? | CREATE TABLE "dos_shells" (
"name" text,
"release_date" text,
"latest_version" text,
"status_support" text,
"source_model" text,
"architecture" text,
"target_market" text
); | SELECT "latest_version" FROM "dos_shells" WHERE "architecture"='16-bit' AND "release_date"='1985-11-20'; | 2-10758793-2 |
Which Architecture was released on Release date 1988-05-27? | CREATE TABLE "dos_shells" (
"name" text,
"release_date" text,
"latest_version" text,
"status_support" text,
"source_model" text,
"architecture" text,
"target_market" text
); | SELECT "architecture" FROM "dos_shells" WHERE "release_date"='1988-05-27'; | 2-10758793-2 |
Which Source model has a Release date of 1992-04-06? | CREATE TABLE "dos_shells" (
"name" text,
"release_date" text,
"latest_version" text,
"status_support" text,
"source_model" text,
"architecture" text,
"target_market" text
); | SELECT "source_model" FROM "dos_shells" WHERE "release_date"='1992-04-06'; | 2-10758793-2 |
Who is the away side when collingwood is at home? | 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 "away_team" FROM "round_18" WHERE "home_team"='collingwood'; | 2-10776868-18 |
Who is the home team at 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 "home_team" FROM "round_18" WHERE "venue"='arden street oval'; | 2-10776868-18 |
Who is the home team that scores 12.10 (82)? | 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 "home_team" FROM "round_18" WHERE "home_team_score"='12.10 (82)'; | 2-10776868-18 |
What is the WPW freq with a day power of 250? | CREATE TABLE "am" (
"freq" real,
"call" text,
"city" text,
"owner" text,
"day_power_w" real,
"night_power" real,
"format" text,
"stereo" text
); | SELECT SUM("freq") FROM "am" WHERE "owner"='wpw' AND "day_power_w">250; | 2-10742875-2 |
What is the Triad frew with a day power of 5,000? | CREATE TABLE "am" (
"freq" real,
"call" text,
"city" text,
"owner" text,
"day_power_w" real,
"night_power" real,
"format" text,
"stereo" text
); | SELECT COUNT("freq") FROM "am" WHERE "day_power_w"='5,000' AND "owner"='triad'; | 2-10742875-2 |
Is WPEO in stereo? | CREATE TABLE "am" (
"freq" real,
"call" text,
"city" text,
"owner" text,
"day_power_w" real,
"night_power" real,
"format" text,
"stereo" text
); | SELECT "stereo" FROM "am" WHERE "call"='wpeo'; | 2-10742875-2 |
What is Park Tae-Hwan's final time? | CREATE TABLE "final" (
"lane" real,
"name" text,
"nationality" text,
"100m" real,
"150m" text,
"time" text
); | SELECT "time" FROM "final" WHERE "name"='park tae-hwan'; | 2-10563642-4 |
What was the largest crowd for an away Carlton game? | 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 MAX("crowd") FROM "round_2" WHERE "away_team"='carlton'; | 2-10767118-2 |
Who was the home team for the game played at Corio Oval? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_2" WHERE "venue"='corio oval'; | 2-10767118-2 |
Who was the home team for the game where the away team scored 16.8 (104) and the crowd was over 12,000? | 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 "crowd">'12,000' AND "away_team_score"='16.8 (104)'; | 2-10767118-2 |
What was the crowd size at the game where the home team scored 12.17 (89)? | 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 AVG("crowd") FROM "round_2" WHERE "home_team_score"='12.17 (89)'; | 2-10767118-2 |
What is the Euro for a ticket with a Price per "Within" Day of &0 8? | CREATE TABLE "durations_and_prices" (
"valid" text,
"within" text,
"price_in_euro" real,
"price_per_valid_day" text,
"price_per_within_day" text,
"area" text
); | SELECT SUM("price_in_euro") FROM "durations_and_prices" WHERE "price_per_within_day"='&0 8'; | 2-1067650-3 |
What is the lowest Euro for a ticket with a price per valid day of & 34? | CREATE TABLE "durations_and_prices" (
"valid" text,
"within" text,
"price_in_euro" real,
"price_per_valid_day" text,
"price_per_within_day" text,
"area" text
); | SELECT MIN("price_in_euro") FROM "durations_and_prices" WHERE "price_per_valid_day"='& 34'; | 2-1067650-3 |
The safety position is represented in the draft by which colleges? | CREATE TABLE "2001_new_england_patriots_draft_selectio" (
"round" real,
"overall" real,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "2001_new_england_patriots_draft_selectio" WHERE "position"='safety'; | 2-10716061-1 |
In how many rounds of the draft was there a college from Georgia involved? | CREATE TABLE "2001_new_england_patriots_draft_selectio" (
"round" real,
"overall" real,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("round") FROM "2001_new_england_patriots_draft_selectio" WHERE "college"='georgia'; | 2-10716061-1 |
What is the Time of Driver Jan Heylen (r)? | CREATE TABLE "race" (
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"points" real
); | SELECT "time_retired" FROM "race" WHERE "driver"='jan heylen (r)'; | 2-10599984-2 |
What Grid has Driver Cristiano da Matta? | CREATE TABLE "race" (
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"points" real
); | SELECT "grid" FROM "race" WHERE "driver"='cristiano da matta'; | 2-10599984-2 |
Which Driver has less than 84 laps, more than 9 points and is on Rocketsports Racing Team? | CREATE TABLE "race" (
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"points" real
); | SELECT "driver" FROM "race" WHERE "laps"<84 AND "points">9 AND "team"='rocketsports racing'; | 2-10599984-2 |
Which team has less than 73 laps and a gearbox time? | CREATE TABLE "race" (
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"points" real
); | SELECT "team" FROM "race" WHERE "laps"<73 AND "time_retired"='gearbox'; | 2-10599984-2 |
What is the car with the lowest extinct year that has a NBR class of 32? | CREATE TABLE "locomotives" (
"nbr_class" real,
"type" text,
"introduced" real,
"driving_wheel" text,
"total" real,
"extinct" real
); | SELECT MIN("extinct") FROM "locomotives" WHERE "nbr_class"=32; | 2-10668727-1 |
What is the home team that played at Corio 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"='corio oval'; | 2-10747009-9 |
At which venue did the home team score 12.15 (87)? | 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 "home_team_score"='12.15 (87)'; | 2-10747009-9 |
At which venue did the away team score 15.9 (99)? | 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"='15.9 (99)'; | 2-10747009-9 |
On which date was St Kilda the home 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 "date" FROM "round_9" WHERE "home_team"='st kilda'; | 2-10747009-9 |
What is the Austin record of Kansas State? | CREATE TABLE "all_time_series_records_against_big_12_m" (
"texas_vs" text,
"overall_record" text,
"at_austin" text,
"at_opponent_s_venue" text,
"at_neutral_site" text,
"last_5_meetings" text,
"last_10_meetings" text,
"current_streak" text
); | SELECT "at_austin" FROM "all_time_series_records_against_big_12_m" WHERE "texas_vs"='kansas state'; | 2-10779468-2 |
What was the result of the last 5 meetings for a team with an L 1 streak? | CREATE TABLE "all_time_series_records_against_big_12_m" (
"texas_vs" text,
"overall_record" text,
"at_austin" text,
"at_opponent_s_venue" text,
"at_neutral_site" text,
"last_5_meetings" text,
"last_10_meetings" text,
"current_streak" text
); | SELECT "last_5_meetings" FROM "all_time_series_records_against_big_12_m" WHERE "current_streak"='l 1'; | 2-10779468-2 |
Who is the partner on a date later than 1971 who is the runner-up with a score of 3–6, 3–6? | CREATE TABLE "doubles_titles_8" (
"outcome" text,
"date" real,
"tournament" text,
"surface" text,
"partner" text,
"opponents_in_the_final" text,
"score_in_the_final" text
); | SELECT "partner" FROM "doubles_titles_8" WHERE "date">1971 AND "outcome"='runner-up' AND "score_in_the_final"='3–6, 3–6'; | 2-10669284-1 |
What is the first year that Mario Lemieux from Canada won playing center? | CREATE TABLE "notes" (
"year" real,
"player" text,
"country" text,
"team" text,
"position" text
); | SELECT MIN("year") FROM "notes" WHERE "country"='canada' AND "position"='center' AND "player"='mario lemieux'; | 2-10524751-1 |
What country did mario lemieux play for in 1994? | CREATE TABLE "notes" (
"year" real,
"player" text,
"country" text,
"team" text,
"position" text
); | SELECT "country" FROM "notes" WHERE "player"='mario lemieux' AND "year"=1994; | 2-10524751-1 |
What player played center in 2010? | CREATE TABLE "notes" (
"year" real,
"player" text,
"country" text,
"team" text,
"position" text
); | SELECT "player" FROM "notes" WHERE "position"='center' AND "year"=2010; | 2-10524751-1 |
What is the drop number on 10/02/2007? | CREATE TABLE "most_points_in_a_match" (
"player" text,
"tries" text,
"conv" text,
"pens" text,
"drop" text,
"venue" text,
"date" text
); | SELECT "drop" FROM "most_points_in_a_match" WHERE "date"='10/02/2007'; | 2-1074629-8 |
What is the drop number on 08/06/2011? | CREATE TABLE "most_points_in_a_match" (
"player" text,
"tries" text,
"conv" text,
"pens" text,
"drop" text,
"venue" text,
"date" text
); | SELECT "drop" FROM "most_points_in_a_match" WHERE "date"='08/06/2011'; | 2-1074629-8 |
How many drops occurred with 0 pens and Fangatapu Apikotoa playing? | CREATE TABLE "most_points_in_a_match" (
"player" text,
"tries" text,
"conv" text,
"pens" text,
"drop" text,
"venue" text,
"date" text
); | SELECT "drop" FROM "most_points_in_a_match" WHERE "pens"='0' AND "player"='fangatapu apikotoa'; | 2-1074629-8 |
Who is the player associated with the Esher venue? | CREATE TABLE "most_points_in_a_match" (
"player" text,
"tries" text,
"conv" text,
"pens" text,
"drop" text,
"venue" text,
"date" text
); | SELECT "player" FROM "most_points_in_a_match" WHERE "venue"='esher'; | 2-1074629-8 |
What is the conversion number with 0 drops on 02/07/2011? | CREATE TABLE "most_points_in_a_match" (
"player" text,
"tries" text,
"conv" text,
"pens" text,
"drop" text,
"venue" text,
"date" text
); | SELECT "conv" FROM "most_points_in_a_match" WHERE "drop"='0' AND "date"='02/07/2011'; | 2-1074629-8 |
In which venue did 0 pens and 1 try occur? | CREATE TABLE "most_points_in_a_match" (
"player" text,
"tries" text,
"conv" text,
"pens" text,
"drop" text,
"venue" text,
"date" text
); | SELECT "venue" FROM "most_points_in_a_match" WHERE "pens"='0' AND "tries"='1'; | 2-1074629-8 |
What was the score of the game against the St. Louis Cardinals? | CREATE TABLE "exhibition_schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "result" FROM "exhibition_schedule" WHERE "opponent"='st. louis cardinals'; | 2-10651152-2 |
Which model has a CPU speed of 133mhz? | CREATE TABLE "comparison_table_of_hp_laser_jet_4000_mo" (
"model" real,
"introduction" text,
"discontinued" text,
"cpu_speed" text,
"print_speed_ppm" text,
"standard_memory" text,
"maximum_memory" text
); | SELECT "model" FROM "comparison_table_of_hp_laser_jet_4000_mo" WHERE "cpu_speed"='133mhz'; | 2-10528691-4 |
Which model has a maximum memory of 512 mb? | CREATE TABLE "comparison_table_of_hp_laser_jet_4000_mo" (
"model" real,
"introduction" text,
"discontinued" text,
"cpu_speed" text,
"print_speed_ppm" text,
"standard_memory" text,
"maximum_memory" text
); | SELECT MAX("model") FROM "comparison_table_of_hp_laser_jet_4000_mo" WHERE "maximum_memory"='512 mb'; | 2-10528691-4 |
What is the maximum memory of the model that has a standard memory of 16 mb? | CREATE TABLE "comparison_table_of_hp_laser_jet_4000_mo" (
"model" real,
"introduction" text,
"discontinued" text,
"cpu_speed" text,
"print_speed_ppm" text,
"standard_memory" text,
"maximum_memory" text
); | SELECT "maximum_memory" FROM "comparison_table_of_hp_laser_jet_4000_mo" WHERE "standard_memory"='16 mb'; | 2-10528691-4 |
What is the largest crowd for a Melbourne 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 MAX("crowd") FROM "round_1" WHERE "away_team"='melbourne'; | 2-10783853-1 |
What is the home team score when the home team is Essendon? | 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_score" FROM "round_9" WHERE "home_team"='essendon'; | 2-10776330-9 |
What is the home team when the home team score is 12.17 (89)? | 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.17 (89)'; | 2-10776330-9 |
What is the away team when the away team score is 10.10 (70)? | 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"='10.10 (70)'; | 2-10776330-9 |
Which opponent was playing on December 20, 1998? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"tv_time" text
); | SELECT "opponent" FROM "schedule" WHERE "date"='december 20, 1998'; | 2-10696170-2 |
Who was the home team that had a score of 13.11 (89)? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_15" WHERE "home_team_score"='13.11 (89)'; | 2-10747009-15 |
When was the game that was held at the Princes Park? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_15" WHERE "venue"='princes park'; | 2-10747009-15 |
What was the smallest crowd size at a home game for Footscray? | 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 MIN("crowd") FROM "round_15" WHERE "home_team"='footscray'; | 2-10747009-15 |
When was the game where the home team scored 18.14 (122)? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_15" WHERE "home_team_score"='18.14 (122)'; | 2-10747009-15 |
What was Melbourne's score as 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"='melbourne'; | 2-10767641-15 |
What was the away team's score when the crowd at Arden Street Oval was larger than 31,481? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "away_team_score" FROM "round_15" WHERE "crowd">'31,481' AND "venue"='arden street oval'; | 2-10767641-15 |
What was the away team that played Fitzroy? | 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 "home_team"='fitzroy'; | 2-10767641-15 |
What was the sum of the crowds at Western Oval? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT SUM("crowd") FROM "round_15" WHERE "venue"='western oval'; | 2-10767641-15 |
What was the total crowd size when the away team scored 17.13 (115)? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT COUNT("crowd") FROM "round_15" WHERE "away_team_score"='17.13 (115)'; | 2-10767641-15 |
Where did the home team score 18.17 (125)? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "venue" FROM "round_15" WHERE "home_team_score"='18.17 (125)'; | 2-10767641-15 |
What country had a winner in 1907? | CREATE TABLE "winners" (
"year" real,
"rider" text,
"country" text,
"distance" text,
"pacing" text,
"velodrome" text
); | SELECT "country" FROM "winners" WHERE "year"=1907; | 2-10553615-1 |
What velodrome took place earlier than 1950 with a winner from France in tandem paced over a distance of 951.750 km? | CREATE TABLE "winners" (
"year" real,
"rider" text,
"country" text,
"distance" text,
"pacing" text,
"velodrome" text
); | SELECT "velodrome" FROM "winners" WHERE "year"<1950 AND "country"='france' AND "pacing"='tandem paced' AND "distance"='951.750 km'; | 2-10553615-1 |
Where was the game played when they kickoff was 12:00 p.m., and a Record of 8-5? | CREATE TABLE "schedule" (
"week" text,
"date" text,
"opponent" text,
"result" text,
"kickoff" text,
"game_site" text,
"record" text
); | SELECT "game_site" FROM "schedule" WHERE "kickoff"='12:00 p.m.' AND "record"='8-5'; | 2-10659613-2 |
What date has a Game site of bye? | CREATE TABLE "schedule" (
"week" text,
"date" text,
"opponent" text,
"result" text,
"kickoff" text,
"game_site" text,
"record" text
); | SELECT "date" FROM "schedule" WHERE "game_site"='bye'; | 2-10659613-2 |
What is the record which shows Kickoff as kickoff? | CREATE TABLE "schedule" (
"week" text,
"date" text,
"opponent" text,
"result" text,
"kickoff" text,
"game_site" text,
"record" text
); | SELECT "record" FROM "schedule" WHERE "kickoff"='kickoff'; | 2-10659613-2 |
What is the record when the game was played at raymond james stadium? | CREATE TABLE "schedule" (
"week" text,
"date" text,
"opponent" text,
"result" text,
"kickoff" text,
"game_site" text,
"record" text
); | SELECT "record" FROM "schedule" WHERE "game_site"='raymond james stadium'; | 2-10659613-2 |
What is the kickoff for the game on october 22, 2000? | CREATE TABLE "schedule" (
"week" text,
"date" text,
"opponent" text,
"result" text,
"kickoff" text,
"game_site" text,
"record" text
); | SELECT "kickoff" FROM "schedule" WHERE "date"='october 22, 2000'; | 2-10659613-2 |
Which Hindi network is based in India and uses dish service and shows general programming? | CREATE TABLE "united_states" (
"network" text,
"origin_of_programming" text,
"language" text,
"genre" text,
"service" text
); | SELECT "network" FROM "united_states" WHERE "service"='dish' AND "language"='hindi' AND "origin_of_programming"='india' AND "genre"='general'; | 2-10503963-7 |
Which language is used by the optimum TV service that shows cricket and is based in the United States? | CREATE TABLE "united_states" (
"network" text,
"origin_of_programming" text,
"language" text,
"genre" text,
"service" text
); | SELECT "language" FROM "united_states" WHERE "service"='optimum tv' AND "origin_of_programming"='united states' AND "genre"='cricket'; | 2-10503963-7 |
What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network? | CREATE TABLE "united_states" (
"network" text,
"origin_of_programming" text,
"language" text,
"genre" text,
"service" text
); | SELECT "origin_of_programming" FROM "united_states" WHERE "service"='dish' AND "language"='malayalam' AND "genre"='general' AND "network"='asianet plus'; | 2-10503963-7 |
What is the average grid number with a ferrari and a time or retired time of 1:32:35.101? | CREATE TABLE "race" (
"driver" text,
"constructor" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT AVG("grid") FROM "race" WHERE "constructor"='ferrari' AND "time_retired"='1:32:35.101'; | 2-1075296-2 |
What week of the season was November 24, 1957? | CREATE TABLE "regular_season_schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "week" FROM "regular_season_schedule" WHERE "date"='november 24, 1957'; | 2-10651617-2 |
What was the score of the game against the San Diego Chargers? | CREATE TABLE "regular_season_schedule" (
"date" text,
"opponent" text,
"score" text,
"record" text,
"attendance" real
); | SELECT "score" FROM "regular_season_schedule" WHERE "opponent"='san diego chargers'; | 2-10650829-3 |
What is the week more than 58,675 attended on october 22, 1995? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT SUM("week") FROM "schedule" WHERE "attendance">'58,675' AND "date"='october 22, 1995'; | 2-10650160-2 |
What is the latest week with the date of november 5, 1995? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT MAX("week") FROM "schedule" WHERE "date"='november 5, 1995'; | 2-10650160-2 |
How many weeks was the attendance less than 74,171 and the result was w 26–10? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT COUNT("week") FROM "schedule" WHERE "attendance"<'74,171' AND "result"='w 26–10'; | 2-10650160-2 |
What was the outcome of the Tournament in Buenos Aires? | CREATE TABLE "doubles_finals" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponent" text,
"score" text
); | SELECT "outcome" FROM "doubles_finals" WHERE "tournament"='buenos aires'; | 2-10713126-4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.