question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What was the away team that scored 63-69? | CREATE TABLE "round_14" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "away_team" FROM "round_14" WHERE "score"='63-69'; | 2-16653153-21 |
Where is the player Davis Love III? | CREATE TABLE "first_round" (
"place" text,
"player" text,
"country" text,
"score" real,
"to_par" text
); | SELECT "place" FROM "first_round" WHERE "player"='davis love iii'; | 2-16514575-4 |
What is the second qualifying time for the dale coyne racing team with a first qualifying time of 1:00.081? | CREATE TABLE "qualifying_results" (
"name" text,
"team" text,
"qual_1" text,
"qual_2" text,
"best" text
); | SELECT "qual_2" FROM "qualifying_results" WHERE "team"='dale coyne racing' AND "qual_1"='1:00.081'; | 2-16609829-1 |
Which team had a second qualifying time of 58.539? | CREATE TABLE "qualifying_results" (
"name" text,
"team" text,
"qual_1" text,
"qual_2" text,
"best" text
); | SELECT "team" FROM "qualifying_results" WHERE "qual_2"='58.539'; | 2-16609829-1 |
What is the best time from patrick carpentier from the forsythe racing team? | CREATE TABLE "qualifying_results" (
"name" text,
"team" text,
"qual_1" text,
"qual_2" text,
"best" text
); | SELECT "best" FROM "qualifying_results" WHERE "team"='forsythe racing' AND "name"='patrick carpentier'; | 2-16609829-1 |
What is the best time for a team with a first-qualifying time of 59.448? | CREATE TABLE "qualifying_results" (
"name" text,
"team" text,
"qual_1" text,
"qual_2" text,
"best" text
); | SELECT "best" FROM "qualifying_results" WHERE "qual_1"='59.448'; | 2-16609829-1 |
What is the name of the racer with a best time of 57.546? | CREATE TABLE "qualifying_results" (
"name" text,
"team" text,
"qual_1" text,
"qual_2" text,
"best" text
); | SELECT "name" FROM "qualifying_results" WHERE "best"='57.546'; | 2-16609829-1 |
What is the name of the racer with a first-qualifying time of 58.991? | CREATE TABLE "qualifying_results" (
"name" text,
"team" text,
"qual_1" text,
"qual_2" text,
"best" text
); | SELECT "name" FROM "qualifying_results" WHERE "qual_1"='58.991'; | 2-16609829-1 |
What is the average Points, when Played is greater than 126? | CREATE TABLE "relegation" (
"team" text,
"average" real,
"points" real,
"played" real,
"2006" text,
"2007" text,
"2008" text
); | SELECT AVG("points") FROM "relegation" WHERE "played">126; | 2-17334827-4 |
What is the sum of Average, when 2006 is "36/40", and when Played is greater than 126? | CREATE TABLE "relegation" (
"team" text,
"average" real,
"points" real,
"played" real,
"2006" text,
"2007" text,
"2008" text
); | SELECT SUM("average") FROM "relegation" WHERE "2006"='36/40' AND "played">126; | 2-17334827-4 |
What is 2006, when Team is "Tacuary"? | CREATE TABLE "relegation" (
"team" text,
"average" real,
"points" real,
"played" real,
"2006" text,
"2007" text,
"2008" text
); | SELECT "2006" FROM "relegation" WHERE "team"='tacuary'; | 2-17334827-4 |
Which Rank has a Bronze of 3? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT "rank" FROM "medal_table" WHERE "bronze"=3; | 2-16338733-1 |
What are the Runner(s)-up of the 1956 Championship? | CREATE TABLE "winners" (
"year" text,
"winner" text,
"country" text,
"score" text,
"runner_s_up" text
); | SELECT "runner_s_up" FROM "winners" WHERE "year"='1956'; | 2-1636222-1 |
What are the Runner(s)-up of the 1972 Championship? | CREATE TABLE "winners" (
"year" text,
"winner" text,
"country" text,
"score" text,
"runner_s_up" text
); | SELECT "runner_s_up" FROM "winners" WHERE "year"='1972'; | 2-1636222-1 |
What is the Country of the Championship with a Score of 293? | CREATE TABLE "winners" (
"year" text,
"winner" text,
"country" text,
"score" text,
"runner_s_up" text
); | SELECT "country" FROM "winners" WHERE "score"='293'; | 2-1636222-1 |
What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens? | CREATE TABLE "membership" (
"school" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text,
"primary_conference" text
); | SELECT COUNT("enrollment") FROM "membership" WHERE "nickname"='fightin'' blue hens'; | 2-16382861-1 |
What was the score for set 3 when set 1 was 14–25? | CREATE TABLE "pool_h" (
"date" text,
"time" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"total" text
); | SELECT "set_3" FROM "pool_h" WHERE "set_1"='14–25'; | 2-16571273-17 |
What is the time when the set 3 score is 31–29? | CREATE TABLE "pool_h" (
"date" text,
"time" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"total" text
); | SELECT "time" FROM "pool_h" WHERE "set_3"='31–29'; | 2-16571273-17 |
What is the total when the score for set 1 is 14–25? | CREATE TABLE "pool_h" (
"date" text,
"time" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"total" text
); | SELECT "total" FROM "pool_h" WHERE "set_1"='14–25'; | 2-16571273-17 |
What is the total when the score for set 2 is 20–25? | CREATE TABLE "pool_h" (
"date" text,
"time" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"total" text
); | SELECT "total" FROM "pool_h" WHERE "set_2"='20–25'; | 2-16571273-17 |
What is the total when the score for set 2 is 25–22? | CREATE TABLE "pool_h" (
"date" text,
"time" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"total" text
); | SELECT "total" FROM "pool_h" WHERE "set_2"='25–22'; | 2-16571273-17 |
What is the price of 150 mbps downstread? | CREATE TABLE "switzerland" (
"internet_plan" text,
"downstream" text,
"upstream" text,
"bandwidth_included" text,
"price" text
); | SELECT "price" FROM "switzerland" WHERE "downstream"='150 mbps'; | 2-17304621-11 |
What is the upstream with the price 65 chf? | CREATE TABLE "switzerland" (
"internet_plan" text,
"downstream" text,
"upstream" text,
"bandwidth_included" text,
"price" text
); | SELECT "upstream" FROM "switzerland" WHERE "price"='65 chf'; | 2-17304621-11 |
What is the price of the internet 150 plans? | CREATE TABLE "switzerland" (
"internet_plan" text,
"downstream" text,
"upstream" text,
"bandwidth_included" text,
"price" text
); | SELECT "price" FROM "switzerland" WHERE "internet_plan"='internet 150'; | 2-17304621-11 |
What is the upstream for the 100 mbps downstream? | CREATE TABLE "switzerland" (
"internet_plan" text,
"downstream" text,
"upstream" text,
"bandwidth_included" text,
"price" text
); | SELECT "upstream" FROM "switzerland" WHERE "downstream"='100 mbps'; | 2-17304621-11 |
What is the price of 60 mbps downstream? | CREATE TABLE "switzerland" (
"internet_plan" text,
"downstream" text,
"upstream" text,
"bandwidth_included" text,
"price" text
); | SELECT "price" FROM "switzerland" WHERE "downstream"='60 mbps'; | 2-17304621-11 |
What is the upstream for the internet 100 plans? | CREATE TABLE "switzerland" (
"internet_plan" text,
"downstream" text,
"upstream" text,
"bandwidth_included" text,
"price" text
); | SELECT "upstream" FROM "switzerland" WHERE "internet_plan"='internet 100'; | 2-17304621-11 |
Which club team was the player from who was selected in a round under 4? | CREATE TABLE "draft_picks" (
"round" real,
"pick" text,
"player" text,
"position" text,
"nationality" text,
"club_team" text
); | SELECT "club_team" FROM "draft_picks" WHERE "round"<4; | 2-17360840-23 |
What was the club team for Kyle de Coste? | CREATE TABLE "draft_picks" (
"round" real,
"pick" text,
"player" text,
"position" text,
"nationality" text,
"club_team" text
); | SELECT "club_team" FROM "draft_picks" WHERE "player"='kyle de coste'; | 2-17360840-23 |
What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578? | CREATE TABLE "coaches" (
"coach" text,
"first_yr" real,
"last_yr" real,
"w_lpct" real,
"g_500" real,
"yr_plyf" real,
"g_plyf" real,
"w_plyf" real,
"l_plyf" real
); | SELECT MAX("w_plyf") FROM "coaches" WHERE "first_yr"<1960 AND "g_plyf">0 AND "g_500"<43 AND "w_lpct"<0.578; | 2-17597770-2 |
What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0? | CREATE TABLE "coaches" (
"coach" text,
"first_yr" real,
"last_yr" real,
"w_lpct" real,
"g_500" real,
"yr_plyf" real,
"g_plyf" real,
"w_plyf" real,
"l_plyf" real
); | SELECT SUM("yr_plyf") FROM "coaches" WHERE "g_plyf"=0 AND "coach"='ed robinson'; | 2-17597770-2 |
What is the total number of yr plyf with a G plyf less than 0? | CREATE TABLE "coaches" (
"coach" text,
"first_yr" real,
"last_yr" real,
"w_lpct" real,
"g_500" real,
"yr_plyf" real,
"g_plyf" real,
"w_plyf" real,
"l_plyf" real
); | SELECT COUNT("yr_plyf") FROM "coaches" WHERE "g_plyf"<0; | 2-17597770-2 |
Who is the coach with a w-l% greater than 0.516, a first yr before 1925, a yr plyf greater than 2, and a last yr in 1967? | CREATE TABLE "coaches" (
"coach" text,
"first_yr" real,
"last_yr" real,
"w_lpct" real,
"g_500" real,
"yr_plyf" real,
"g_plyf" real,
"w_plyf" real,
"l_plyf" real
); | SELECT "coach" FROM "coaches" WHERE "w_lpct">0.516 AND "first_yr"<1925 AND "yr_plyf">2 AND "last_yr"=1967; | 2-17597770-2 |
What is the average last yr with an l plyf less than 0? | CREATE TABLE "coaches" (
"coach" text,
"first_yr" real,
"last_yr" real,
"w_lpct" real,
"g_500" real,
"yr_plyf" real,
"g_plyf" real,
"w_plyf" real,
"l_plyf" real
); | SELECT AVG("last_yr") FROM "coaches" WHERE "l_plyf"<0; | 2-17597770-2 |
What is the earliest last year with a yr plyf less than 0? | CREATE TABLE "coaches" (
"coach" text,
"first_yr" real,
"last_yr" real,
"w_lpct" real,
"g_500" real,
"yr_plyf" real,
"g_plyf" real,
"w_plyf" real,
"l_plyf" real
); | SELECT MIN("last_yr") FROM "coaches" WHERE "yr_plyf"<0; | 2-17597770-2 |
What is the To par of the Player with a Score of 69-70=139? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "score"='69-70=139'; | 2-17231125-5 |
What is Bob Gilder in Place T3's To par? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "place"='t3' AND "player"='bob gilder'; | 2-17231125-5 |
What is High Points, when Game is less than 82, when Location Attendance is "Quicken Loans Arena 20,562", and when High Rebounds is "Žydrūnas Ilgauskas (13)"? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_points" FROM "game_log" WHERE "game"<82 AND "location_attendance"='quicken loans arena 20,562' AND "high_rebounds"='žydrūnas ilgauskas (13)'; | 2-17325580-10 |
What is the lowest Game, when High Assists is "Maurice Williams (8)"? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MIN("game") FROM "game_log" WHERE "high_assists"='maurice williams (8)'; | 2-17325580-10 |
What is the lowest Game, when Date is "April 12"? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MIN("game") FROM "game_log" WHERE "date"='april 12'; | 2-17325580-10 |
What is Winner, when Date is 5 Sep? | CREATE TABLE "race_calendar" (
"date" text,
"series" text,
"circuit" text,
"city_state" text,
"winner" text,
"team" text
); | SELECT "winner" FROM "race_calendar" WHERE "date"='5 sep'; | 2-17001488-1 |
What is Team, when Circuit is Queensland Raceway, and when Winner is Garth Tander? | CREATE TABLE "race_calendar" (
"date" text,
"series" text,
"circuit" text,
"city_state" text,
"winner" text,
"team" text
); | SELECT "team" FROM "race_calendar" WHERE "circuit"='queensland raceway' AND "winner"='garth tander'; | 2-17001488-1 |
What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway? | CREATE TABLE "race_calendar" (
"date" text,
"series" text,
"circuit" text,
"city_state" text,
"winner" text,
"team" text
); | SELECT "date" FROM "race_calendar" WHERE "team"='holden racing team' AND "circuit"='eastern creek raceway'; | 2-17001488-1 |
What is Team, when Circuit is Phillip Island Grand Prix Circuit? | CREATE TABLE "race_calendar" (
"date" text,
"series" text,
"circuit" text,
"city_state" text,
"winner" text,
"team" text
); | SELECT "team" FROM "race_calendar" WHERE "circuit"='phillip island grand prix circuit'; | 2-17001488-1 |
What is Circuit, when Series is ASTC Round 4? | CREATE TABLE "race_calendar" (
"date" text,
"series" text,
"circuit" text,
"city_state" text,
"winner" text,
"team" text
); | SELECT "circuit" FROM "race_calendar" WHERE "series"='astc round 4'; | 2-17001488-1 |
What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2? | CREATE TABLE "final" (
"lane" real,
"name" text,
"country" text,
"mark" text,
"react" real
); | SELECT COUNT("react") FROM "final" WHERE "name"='sean wroe' AND "lane">2; | 2-16194679-4 |
What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251? | CREATE TABLE "final" (
"lane" real,
"name" text,
"country" text,
"mark" text,
"react" real
); | SELECT MAX("lane") FROM "final" WHERE "mark"='46.65' AND "react">0.251; | 2-16194679-4 |
What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6? | CREATE TABLE "final" (
"lane" real,
"name" text,
"country" text,
"mark" text,
"react" real
); | SELECT MIN("react") FROM "final" WHERE "mark"='46.26 sb' AND "lane">6; | 2-16194679-4 |
What is Mark, when Lane is greater than 2, and when Country is Bahamas? | CREATE TABLE "final" (
"lane" real,
"name" text,
"country" text,
"mark" text,
"react" real
); | SELECT "mark" FROM "final" WHERE "lane">2 AND "country"='bahamas'; | 2-16194679-4 |
What is the number of the belarusian language? | CREATE TABLE "language" (
"language" text,
"number" text,
"percentage_pct" text,
"males" text,
"females" text
); | SELECT "number" FROM "language" WHERE "language"='belarusian'; | 2-17051786-1 |
What is the number with an 80.62 percentage? | CREATE TABLE "language" (
"language" text,
"number" text,
"percentage_pct" text,
"males" text,
"females" text
); | SELECT "number" FROM "language" WHERE "percentage_pct"='80.62'; | 2-17051786-1 |
How many males have a percentage of 80.62? | CREATE TABLE "language" (
"language" text,
"number" text,
"percentage_pct" text,
"males" text,
"females" text
); | SELECT "males" FROM "language" WHERE "percentage_pct"='80.62'; | 2-17051786-1 |
What is Name, when Team is New York Knicks, and when WSU Year(s) is 1965-68? | CREATE TABLE "players_in_the_nba" (
"name" text,
"wsu_year_s" text,
"position" text,
"team" text,
"pro_year_s" text
); | SELECT "name" FROM "players_in_the_nba" WHERE "team"='new york knicks' AND "wsu_year_s"='1965-68'; | 2-16619531-2 |
What is Name, when WSU Year(s) is 1981-82? | CREATE TABLE "players_in_the_nba" (
"name" text,
"wsu_year_s" text,
"position" text,
"team" text,
"pro_year_s" text
); | SELECT "name" FROM "players_in_the_nba" WHERE "wsu_year_s"='1981-82'; | 2-16619531-2 |
What is WSU Year(s), when Pro Year(s) is 1974-77? | CREATE TABLE "players_in_the_nba" (
"name" text,
"wsu_year_s" text,
"position" text,
"team" text,
"pro_year_s" text
); | SELECT "wsu_year_s" FROM "players_in_the_nba" WHERE "pro_year_s"='1974-77'; | 2-16619531-2 |
What is Pro Year(s), when Team is Cincinnati Royals? | CREATE TABLE "players_in_the_nba" (
"name" text,
"wsu_year_s" text,
"position" text,
"team" text,
"pro_year_s" text
); | SELECT "pro_year_s" FROM "players_in_the_nba" WHERE "team"='cincinnati royals'; | 2-16619531-2 |
What is Position, when Team is Cincinnati Royals? | CREATE TABLE "players_in_the_nba" (
"name" text,
"wsu_year_s" text,
"position" text,
"team" text,
"pro_year_s" text
); | SELECT "position" FROM "players_in_the_nba" WHERE "team"='cincinnati royals'; | 2-16619531-2 |
What is Name, when Team is Detroit Pistons, and when WSU Year(s) is 1979-82? | CREATE TABLE "players_in_the_nba" (
"name" text,
"wsu_year_s" text,
"position" text,
"team" text,
"pro_year_s" text
); | SELECT "name" FROM "players_in_the_nba" WHERE "team"='detroit pistons' AND "wsu_year_s"='1979-82'; | 2-16619531-2 |
What is Position, when Overallis less than 314, and when Pick is less than 8? | CREATE TABLE "washington_redskins_draft_history" (
"round" real,
"pick" real,
"overall" real,
"name" text,
"position" text,
"college" text
); | SELECT "position" FROM "washington_redskins_draft_history" WHERE "overall"<314 AND "pick"<8; | 2-17100961-51 |
What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10? | CREATE TABLE "washington_redskins_draft_history" (
"round" real,
"pick" real,
"overall" real,
"name" text,
"position" text,
"college" text
); | SELECT AVG("overall") FROM "washington_redskins_draft_history" WHERE "round">11 AND "pick">10; | 2-17100961-51 |
What is Name, when Overall is greater than 132, and when Round is 12? | CREATE TABLE "washington_redskins_draft_history" (
"round" real,
"pick" real,
"overall" real,
"name" text,
"position" text,
"college" text
); | SELECT "name" FROM "washington_redskins_draft_history" WHERE "overall">132 AND "round"=12; | 2-17100961-51 |
What is College, when Pick is 20? | CREATE TABLE "washington_redskins_draft_history" (
"round" real,
"pick" real,
"overall" real,
"name" text,
"position" text,
"college" text
); | SELECT "college" FROM "washington_redskins_draft_history" WHERE "pick"=20; | 2-17100961-51 |
What is average Overall, when Pick is 19? | CREATE TABLE "washington_redskins_draft_history" (
"round" real,
"pick" real,
"overall" real,
"name" text,
"position" text,
"college" text
); | SELECT AVG("overall") FROM "washington_redskins_draft_history" WHERE "pick"=19; | 2-17100961-51 |
What is the average pick for Princeton after round 3? | CREATE TABLE "draft_picks" (
"round" real,
"pick" real,
"player" text,
"nationality" text,
"college" text
); | SELECT AVG("pick") FROM "draft_picks" WHERE "round">3 AND "college"='princeton'; | 2-17344651-1 |
What is the earliest round Clark was in? | CREATE TABLE "draft_picks" (
"round" real,
"pick" real,
"player" text,
"nationality" text,
"college" text
); | SELECT MIN("round") FROM "draft_picks" WHERE "college"='clark'; | 2-17344651-1 |
What is the tie number when the home team was gillingham? | CREATE TABLE "second_round" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "tie_no" FROM "second_round" WHERE "home_team"='gillingham'; | 2-17540875-3 |
What was the score when the home team was goole town? | CREATE TABLE "second_round" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "second_round" WHERE "home_team"='goole town'; | 2-17540875-3 |
What date had the home team as brentford? | CREATE TABLE "second_round" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "date" FROM "second_round" WHERE "home_team"='brentford'; | 2-17540875-3 |
What was the tie number when bradford park avenue was the away team? | CREATE TABLE "second_round" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "tie_no" FROM "second_round" WHERE "away_team"='bradford park avenue'; | 2-17540875-3 |
What shows for House 1950 when the Governors 1950 show governors 1995? | CREATE TABLE "1950_1999" (
"1950" real,
"general_1950" text,
"senate_1950" text,
"house_1950" text,
"governors_1950" text
); | SELECT "house_1950" FROM "1950_1999" WHERE "governors_1950"='governors 1995'; | 2-17561634-5 |
What shows for House 1950 when the General 1950 is general 1986? | CREATE TABLE "1950_1999" (
"1950" real,
"general_1950" text,
"senate_1950" text,
"house_1950" text,
"governors_1950" text
); | SELECT "house_1950" FROM "1950_1999" WHERE "general_1950"='general 1986'; | 2-17561634-5 |
What is the Governors 1950 when the General 1950 is general 1979? | CREATE TABLE "1950_1999" (
"1950" real,
"general_1950" text,
"senate_1950" text,
"house_1950" text,
"governors_1950" text
); | SELECT "governors_1950" FROM "1950_1999" WHERE "general_1950"='general 1979'; | 2-17561634-5 |
What shows for House 1950 with a 1950 less than 1980, and Governors 1950 of governors 1970? | CREATE TABLE "1950_1999" (
"1950" real,
"general_1950" text,
"senate_1950" text,
"house_1950" text,
"governors_1950" text
); | SELECT "house_1950" FROM "1950_1999" WHERE "1950"<1980 AND "governors_1950"='governors 1970'; | 2-17561634-5 |
What's the average year for the good things happening album's single "lady lady lay"? | CREATE TABLE "singles" (
"year" real,
"month" text,
"single" text,
"album" text,
"record_label" text
); | SELECT AVG("year") FROM "singles" WHERE "album"='good things happening' AND "single"='\"lady lady lay\"'; | 2-16865180-1 |
What album came out before 1975 with the dawn record label and the single "lady lady lay"? | CREATE TABLE "singles" (
"year" real,
"month" text,
"single" text,
"album" text,
"record_label" text
); | SELECT "album" FROM "singles" WHERE "year"<1975 AND "record_label"='dawn' AND "single"='\"lady lady lay\"'; | 2-16865180-1 |
What's the earliest year listed for "where are you going to my love" from the album united we stand? | CREATE TABLE "singles" (
"year" real,
"month" text,
"single" text,
"album" text,
"record_label" text
); | SELECT MIN("year") FROM "singles" WHERE "album"='united we stand' AND "single"='\"where are you going to my love\"'; | 2-16865180-1 |
What month before 1973 is listed for the album united we stand? | CREATE TABLE "singles" (
"year" real,
"month" text,
"single" text,
"album" text,
"record_label" text
); | SELECT "month" FROM "singles" WHERE "year"<1973 AND "album"='united we stand'; | 2-16865180-1 |
What is the name of the river found in Madhya Pradesh, India? | CREATE TABLE "panchayatana" (
"name_of_deity" text,
"bhuta_tatwa" text,
"name_of_the_stone_sila" text,
"name_of_the_river" text,
"name_of_the_state_where_found_in_india" text
); | SELECT "name_of_the_river" FROM "panchayatana" WHERE "name_of_the_state_where_found_in_india"='madhya pradesh'; | 2-16327510-1 |
What is the name of the deity that the state of Bihar was named after? | CREATE TABLE "panchayatana" (
"name_of_deity" text,
"bhuta_tatwa" text,
"name_of_the_stone_sila" text,
"name_of_the_river" text,
"name_of_the_state_where_found_in_india" text
); | SELECT "name_of_deity" FROM "panchayatana" WHERE "name_of_the_state_where_found_in_india"='bihar'; | 2-16327510-1 |
What is the name of the diety for the river of sone? | CREATE TABLE "panchayatana" (
"name_of_deity" text,
"bhuta_tatwa" text,
"name_of_the_stone_sila" text,
"name_of_the_river" text,
"name_of_the_state_where_found_in_india" text
); | SELECT "name_of_deity" FROM "panchayatana" WHERE "name_of_the_river"='sone'; | 2-16327510-1 |
What is the name of the stone found in Andhra Pradesh, India? | CREATE TABLE "panchayatana" (
"name_of_deity" text,
"bhuta_tatwa" text,
"name_of_the_stone_sila" text,
"name_of_the_river" text,
"name_of_the_state_where_found_in_india" text
); | SELECT "name_of_the_stone_sila" FROM "panchayatana" WHERE "name_of_the_state_where_found_in_india"='andhra pradesh'; | 2-16327510-1 |
What date was the game score 103-94? | CREATE TABLE "round_11" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "date" FROM "round_11" WHERE "score"='103-94'; | 2-16653153-18 |
Who is the away team that played home team of Perth Wildcats? | CREATE TABLE "round_11" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "away_team" FROM "round_11" WHERE "home_team"='perth wildcats'; | 2-16653153-18 |
What is the score of the game that was played on 29 November at State Sports Centre? | CREATE TABLE "round_11" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "score" FROM "round_11" WHERE "date"='29 november' AND "venue"='state sports centre'; | 2-16653153-18 |
What date did home team Gold Coast Blaze play? | CREATE TABLE "round_11" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "date" FROM "round_11" WHERE "home_team"='gold coast blaze'; | 2-16653153-18 |
What kind of report was for the game played on 29 November with Melbourne Tigers being the away team? | CREATE TABLE "round_11" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "report" FROM "round_11" WHERE "date"='29 november' AND "away_team"='melbourne tigers'; | 2-16653153-18 |
Who is the away team that played home team Perth Wildcats? | CREATE TABLE "round_11" (
"date" text,
"home_team" text,
"score" text,
"away_team" text,
"venue" text,
"box_score" text,
"report" text
); | SELECT "away_team" FROM "round_11" WHERE "home_team"='perth wildcats'; | 2-16653153-18 |
Who did they play in week 11? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "opponent" FROM "schedule" WHERE "week"=11; | 2-16710952-1 |
What day did they play in week 6? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "date" FROM "schedule" WHERE "week"=6; | 2-16710952-1 |
Name the Date which has a Score of 3-1 and Attendances of 32 590? | CREATE TABLE "allsvenskan_2004" (
"date" text,
"venue" text,
"opponents" text,
"score" text,
"comp" text,
"attendance" text
); | SELECT "date" FROM "allsvenskan_2004" WHERE "score"='3-1' AND "attendance"='32 590'; | 2-16620240-1 |
Which Venue is on 2004-07-24? | CREATE TABLE "allsvenskan_2004" (
"date" text,
"venue" text,
"opponents" text,
"score" text,
"comp" text,
"attendance" text
); | SELECT "venue" FROM "allsvenskan_2004" WHERE "date"='2004-07-24'; | 2-16620240-1 |
Which Score has a Venue of idrottsparken? | CREATE TABLE "allsvenskan_2004" (
"date" text,
"venue" text,
"opponents" text,
"score" text,
"comp" text,
"attendance" text
); | SELECT "score" FROM "allsvenskan_2004" WHERE "venue"='idrottsparken'; | 2-16620240-1 |
Which Comp is on 2004-10-17? | CREATE TABLE "allsvenskan_2004" (
"date" text,
"venue" text,
"opponents" text,
"score" text,
"comp" text,
"attendance" text
); | SELECT "comp" FROM "allsvenskan_2004" WHERE "date"='2004-10-17'; | 2-16620240-1 |
Which Venue has a Opponents of halmstad and a Score of 1-1? | CREATE TABLE "allsvenskan_2004" (
"date" text,
"venue" text,
"opponents" text,
"score" text,
"comp" text,
"attendance" text
); | SELECT "venue" FROM "allsvenskan_2004" WHERE "opponents"='halmstad' AND "score"='1-1'; | 2-16620240-1 |
Which Attendance that has a Venue of ryavallen? | CREATE TABLE "allsvenskan_2004" (
"date" text,
"venue" text,
"opponents" text,
"score" text,
"comp" text,
"attendance" text
); | SELECT "attendance" FROM "allsvenskan_2004" WHERE "venue"='ryavallen'; | 2-16620240-1 |
What is Tournament, when Outcome is Winner, and when Date is 13 July 2013? | CREATE TABLE "singles_16_9_7" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "tournament" FROM "singles_16_9_7" WHERE "outcome"='winner' AND "date"='13 july 2013'; | 2-16306899-6 |
What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach? | CREATE TABLE "singles_16_9_7" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "date" FROM "singles_16_9_7" WHERE "outcome"='winner' AND "opponent"='an-sophie mestach'; | 2-16306899-6 |
What is Score, when Date is 10 July 2011? | CREATE TABLE "singles_16_9_7" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "score" FROM "singles_16_9_7" WHERE "date"='10 july 2011'; | 2-16306899-6 |
What network has a Play-by-play by Jack Edwards in 2000? | CREATE TABLE "2000s" (
"year" real,
"network" text,
"play_by_play" text,
"color_commentator_s" text,
"pregame_host" text
); | SELECT "network" FROM "2000s" WHERE "play_by_play"='jack edwards' AND "year"=2000; | 2-17516922-2 |
What is the name of the pregame host when Bold was the network? | CREATE TABLE "2000s" (
"year" real,
"network" text,
"play_by_play" text,
"color_commentator_s" text,
"pregame_host" text
); | SELECT "pregame_host" FROM "2000s" WHERE "network"='bold'; | 2-17516922-2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.