question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What is the value of vinculum for parentheses of 0.(6)? | CREATE TABLE "notation" (
"fraction" text,
"ellipsis" text,
"vinculum" text,
"dots" text,
"parentheses" text
); | SELECT "vinculum" FROM "notation" WHERE "parentheses"='0.(6)'; | 2-13612447-1 |
When was the score 7-1? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "date" FROM "game_log" WHERE "score"='7-1'; | 2-14290390-5 |
What was the loss when the score was 7-1? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "loss" FROM "game_log" WHERE "score"='7-1'; | 2-14290390-5 |
What was the loss when the record was 46-59? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "loss" FROM "game_log" WHERE "record"='46-59'; | 2-14290390-5 |
Opponent of @ giants, and a Record of 8–12 had what score? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "opponent"='@ giants' AND "record"='8–12'; | 2-13991766-2 |
Score of 4–0 had what attendance number? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT COUNT("attendance") FROM "game_log" WHERE "score"='4–0'; | 2-13991766-2 |
What was the losing bonus for the team with a try bonus of 3 and 47 tries for? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "losing_bonus" FROM "2009_2010_table" WHERE "try_bonus"='3' AND "tries_for"='47'; | 2-13741576-3 |
How many tries for does the team with 263 points against have? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "tries_for" FROM "2009_2010_table" WHERE "points_against"='263'; | 2-13741576-3 |
How many draws does the team with 385 points for have? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "drawn" FROM "2009_2010_table" WHERE "points_for"='385'; | 2-13741576-3 |
What is the number of losses for the team with 1 draw and 34 tries against? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "lost" FROM "2009_2010_table" WHERE "drawn"='1' AND "tries_against"='34'; | 2-13741576-3 |
How many tries for does the team with a try bonus of 1 and 35 points earned? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "tries_for" FROM "2009_2010_table" WHERE "points"='35' AND "try_bonus"='1'; | 2-13741576-3 |
How many points does the team with 3 losses have? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "points" FROM "2009_2010_table" WHERE "lost"='3'; | 2-13741576-3 |
Which Rank is the lowest one that has a 1st (m) larger than 133.5, and an Overall WC points (Rank) of 459 (7)? | CREATE TABLE "zakopane" (
"rank" real,
"name" text,
"nationality" text,
"1st_m" real,
"points" real,
"overall_wc_points_rank" text
); | SELECT MIN("rank") FROM "zakopane" WHERE "1st_m">133.5 AND "overall_wc_points_rank"='459 (7)'; | 2-14407512-16 |
What was the score in the game where the record was 10-9-7? | CREATE TABLE "schedule_and_results" (
"game" real,
"december" real,
"opponent" text,
"score" text,
"record" text
); | SELECT "score" FROM "schedule_and_results" WHERE "record"='10-9-7'; | 2-13912864-4 |
What was the first time in December they played the Colorado Avalanche? | CREATE TABLE "schedule_and_results" (
"game" real,
"december" real,
"opponent" text,
"score" text,
"record" text
); | SELECT MIN("december") FROM "schedule_and_results" WHERE "opponent"='colorado avalanche'; | 2-13912864-4 |
What date was the winner the new york jets and a Result of 30–28? | CREATE TABLE "1970s_jets_12_8" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "date" FROM "1970s_jets_12_8" WHERE "winner"='new york jets' AND "result"='30–28'; | 2-14732368-4 |
What is the name of the location of the game with a Result of 21–16? | CREATE TABLE "1970s_jets_12_8" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "location" FROM "1970s_jets_12_8" WHERE "result"='21–16'; | 2-14732368-4 |
What is the earliest year the new york jets won at harvard stadium? | CREATE TABLE "1970s_jets_12_8" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT MIN("year") FROM "1970s_jets_12_8" WHERE "winner"='new york jets' AND "location"='harvard stadium'; | 2-14732368-4 |
Who lost at schaefer stadium when the Winner was new england patriots, and a Date of october 18? | CREATE TABLE "1970s_jets_12_8" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "loser" FROM "1970s_jets_12_8" WHERE "location"='schaefer stadium' AND "winner"='new england patriots' AND "date"='october 18'; | 2-14732368-4 |
How many points did the club with a losing bonus of 2 and 300 points against have? | CREATE TABLE "2008_09_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "points_for" FROM "2008_09_table" WHERE "losing_bonus"='2' AND "points_against"='300'; | 2-13940275-4 |
How many tries for did the club with a 3 losing bonus and 45 points have? | CREATE TABLE "2008_09_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "tries_for" FROM "2008_09_table" WHERE "losing_bonus"='3' AND "points"='45'; | 2-13940275-4 |
What is the try bonus of the club with played? | CREATE TABLE "2008_09_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "try_bonus" FROM "2008_09_table" WHERE "played"='played'; | 2-13940275-4 |
How many points against did the club with points have? | CREATE TABLE "2008_09_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "points_against" FROM "2008_09_table" WHERE "points"='points'; | 2-13940275-4 |
What is the drawn by the club with 542 points against? | CREATE TABLE "2008_09_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "drawn" FROM "2008_09_table" WHERE "points_against"='542'; | 2-13940275-4 |
How many losses did the club with 22 played and 334 points against have? | CREATE TABLE "2008_09_table" (
"club" text,
"played" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "lost" FROM "2008_09_table" WHERE "played"='22' AND "points_against"='334'; | 2-13940275-4 |
What attendance does 1-6 record have? | CREATE TABLE "schedule" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"record" text,
"venue" text,
"attendance" real
); | SELECT SUM("attendance") FROM "schedule" WHERE "record"='1-6'; | 2-14655615-2 |
What is the record of Tampa Bay Buccaneers? | CREATE TABLE "schedule" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"record" text,
"venue" text,
"attendance" real
); | SELECT "record" FROM "schedule" WHERE "opponent"='tampa bay buccaneers'; | 2-14655615-2 |
What Nationality has a Position of right wing, with a #20 pick? | CREATE TABLE "round_two" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nationality" FROM "round_two" WHERE "position"='right wing' AND "pick_num"='20'; | 2-1473672-2 |
What College/junior/club team has a Position of centre, and pick is #22? | CREATE TABLE "round_two" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "college_junior_club_team" FROM "round_two" WHERE "position"='centre' AND "pick_num"='22'; | 2-1473672-2 |
What is the NHL team that had pick number 32? | CREATE TABLE "round_two" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nhl_team" FROM "round_two" WHERE "pick_num"='32'; | 2-1473672-2 |
What is the Pick # for the College/junior/club team of edmonton oil kings (wchl), and the position if defence? | CREATE TABLE "round_two" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "pick_num" FROM "round_two" WHERE "college_junior_club_team"='edmonton oil kings (wchl)' AND "position"='defence'; | 2-1473672-2 |
What is the name of the Player that shows the NHL team of new york rangers, and a Pick # of 31? | CREATE TABLE "round_two" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "player" FROM "round_two" WHERE "nhl_team"='new york rangers' AND "pick_num"='31'; | 2-1473672-2 |
Which sum of Seasons in league has a Best Position of 5th (2007)? | CREATE TABLE "participating_teams" (
"pos_in_2007" text,
"club" text,
"city" text,
"best_position" text,
"seasons_in_league" real
); | SELECT SUM("seasons_in_league") FROM "participating_teams" WHERE "best_position"='5th (2007)'; | 2-14181770-1 |
Which City has Seasons in league of 17, and a Club of shakhter? | CREATE TABLE "participating_teams" (
"pos_in_2007" text,
"club" text,
"city" text,
"best_position" text,
"seasons_in_league" real
); | SELECT "city" FROM "participating_teams" WHERE "seasons_in_league"=17 AND "club"='shakhter'; | 2-14181770-1 |
What team won after 2008? | CREATE TABLE "champions" (
"season" real,
"driver" text,
"team" text,
"tyre" text,
"points" real
); | SELECT "team" FROM "champions" WHERE "season">2008; | 2-15216339-1 |
What team has fewer than 203 points? | CREATE TABLE "champions" (
"season" real,
"driver" text,
"team" text,
"tyre" text,
"points" real
); | SELECT "team" FROM "champions" WHERE "points"<203; | 2-15216339-1 |
What is total amount of points for the 2007 season? | CREATE TABLE "champions" (
"season" real,
"driver" text,
"team" text,
"tyre" text,
"points" real
); | SELECT SUM("points") FROM "champions" WHERE "season"=2007; | 2-15216339-1 |
Who is the driver for team Collé Racing with more than 206 points? | CREATE TABLE "champions" (
"season" real,
"driver" text,
"team" text,
"tyre" text,
"points" real
); | SELECT "driver" FROM "champions" WHERE "team"='collé racing' AND "points">206; | 2-15216339-1 |
What was the result when the couple was steve & anna? | CREATE TABLE "week_3" (
"couple" text,
"score" text,
"style" text,
"music" text,
"result" text
); | SELECT "result" FROM "week_3" WHERE "couple"='steve & anna'; | 2-15116785-9 |
What was the score when the couple was shannon & derek? | CREATE TABLE "week_3" (
"couple" text,
"score" text,
"style" text,
"music" text,
"result" text
); | SELECT "score" FROM "week_3" WHERE "couple"='shannon & derek'; | 2-15116785-9 |
What music did Mario & Karina perform? | CREATE TABLE "week_3" (
"couple" text,
"score" text,
"style" text,
"music" text,
"result" text
); | SELECT "music" FROM "week_3" WHERE "couple"='mario & karina'; | 2-15116785-9 |
What was the result for Steve & Anna when the score was 21 (7, 7, 7)? | CREATE TABLE "week_3" (
"couple" text,
"score" text,
"style" text,
"music" text,
"result" text
); | SELECT "result" FROM "week_3" WHERE "score"='21 (7, 7, 7)' AND "couple"='steve & anna'; | 2-15116785-9 |
What was the result when the score was 21 (7, 6, 8)? | CREATE TABLE "week_3" (
"couple" text,
"score" text,
"style" text,
"music" text,
"result" text
); | SELECT "result" FROM "week_3" WHERE "score"='21 (7, 6, 8)'; | 2-15116785-9 |
Which Home has an Attendance larger than 17,250, and Points of 14? | CREATE TABLE "game_log" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"attendance" real,
"record" text,
"points" real
); | SELECT "home" FROM "game_log" WHERE "attendance">'17,250' AND "points"=14; | 2-14335342-3 |
Which Points have a Score of 3–3, and a Date of november 11? | CREATE TABLE "game_log" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"attendance" real,
"record" text,
"points" real
); | SELECT "points" FROM "game_log" WHERE "score"='3–3' AND "date"='november 11'; | 2-14335342-3 |
Which Date has a Home of pittsburgh, and a Record of 3–6–5? | CREATE TABLE "game_log" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"attendance" real,
"record" text,
"points" real
); | SELECT "date" FROM "game_log" WHERE "home"='pittsburgh' AND "record"='3–6–5'; | 2-14335342-3 |
Which Record has a Score of 4–4, and Points of 17? | CREATE TABLE "game_log" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"attendance" real,
"record" text,
"points" real
); | SELECT "record" FROM "game_log" WHERE "score"='4–4' AND "points"=17; | 2-14335342-3 |
What's the highest Loses, with Wins that's larger than 3 and a Pos. Larger than 3? | CREATE TABLE "group_b" (
"pos" real,
"matches" real,
"wins" real,
"loses" real,
"results" text,
"points" real,
"diff" text
); | SELECT MAX("loses") FROM "group_b" WHERE "wins">3 AND "pos">3; | 2-13841018-3 |
Which Rank has a Bronze larger than 1, and a Silver larger than 0, and a Nation of norway (host nation), and a Total larger than 16? | CREATE TABLE "medal_count" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT COUNT("rank") FROM "medal_count" WHERE "bronze">1 AND "silver">0 AND "nation"='norway (host nation)' AND "total">16; | 2-143562-4 |
Which Bronze has a Total of 11, and a Silver smaller than 6? | CREATE TABLE "medal_count" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MAX("bronze") FROM "medal_count" WHERE "total"=11 AND "silver"<6; | 2-143562-4 |
Which Bronze has a Nation of canada, and a Rank smaller than 6? | CREATE TABLE "medal_count" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT AVG("bronze") FROM "medal_count" WHERE "nation"='canada' AND "rank"<6; | 2-143562-4 |
Which Gold has a Bronze larger than 6? | CREATE TABLE "medal_count" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MIN("gold") FROM "medal_count" WHERE "bronze">6; | 2-143562-4 |
Which Gold has a Rank larger than 6, and a Nation of netherlands, and a Bronze smaller than 0? | CREATE TABLE "medal_count" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT SUM("gold") FROM "medal_count" WHERE "rank">6 AND "nation"='netherlands' AND "bronze"<0; | 2-143562-4 |
What is the torque of the 1.6 petrol with daewoo power? | CREATE TABLE "spartana" (
"name" text,
"capacity" text,
"power" text,
"type" text,
"torque" text
); | SELECT "torque" FROM "spartana" WHERE "name"='1.6 petrol' AND "power"='daewoo'; | 2-1371853-2 |
What is the torque of 1.2 petrol? | CREATE TABLE "spartana" (
"name" text,
"capacity" text,
"power" text,
"type" text,
"torque" text
); | SELECT "torque" FROM "spartana" WHERE "name"='1.2 petrol'; | 2-1371853-2 |
What is the power of 1.9 diesel? | CREATE TABLE "spartana" (
"name" text,
"capacity" text,
"power" text,
"type" text,
"torque" text
); | SELECT "power" FROM "spartana" WHERE "name"='1.9 diesel'; | 2-1371853-2 |
What is the current map designation of the feature for which derain crater was the namesake? | CREATE TABLE "schema_of_the_quadrangles" (
"name" text,
"number" text,
"namesake" text,
"albedo_feature_name" text,
"area" text,
"current_map" text
); | SELECT "current_map" FROM "schema_of_the_quadrangles" WHERE "namesake"='derain crater'; | 2-14225237-1 |
What is the Albedo name for Neruda? | CREATE TABLE "schema_of_the_quadrangles" (
"name" text,
"number" text,
"namesake" text,
"albedo_feature_name" text,
"area" text,
"current_map" text
); | SELECT "albedo_feature_name" FROM "schema_of_the_quadrangles" WHERE "name"='neruda'; | 2-14225237-1 |
What number is Kuiper? | CREATE TABLE "schema_of_the_quadrangles" (
"name" text,
"number" text,
"namesake" text,
"albedo_feature_name" text,
"area" text,
"current_map" text
); | SELECT "number" FROM "schema_of_the_quadrangles" WHERE "name"='kuiper'; | 2-14225237-1 |
What is the current map designation of the feature which was named for discovery rupes? | CREATE TABLE "schema_of_the_quadrangles" (
"name" text,
"number" text,
"namesake" text,
"albedo_feature_name" text,
"area" text,
"current_map" text
); | SELECT "current_map" FROM "schema_of_the_quadrangles" WHERE "namesake"='discovery rupes'; | 2-14225237-1 |
What is the current map designation for Debussy? | CREATE TABLE "schema_of_the_quadrangles" (
"name" text,
"number" text,
"namesake" text,
"albedo_feature_name" text,
"area" text,
"current_map" text
); | SELECT "current_map" FROM "schema_of_the_quadrangles" WHERE "name"='debussy'; | 2-14225237-1 |
What is the current map designation for Beethoven? | CREATE TABLE "schema_of_the_quadrangles" (
"name" text,
"number" text,
"namesake" text,
"albedo_feature_name" text,
"area" text,
"current_map" text
); | SELECT "current_map" FROM "schema_of_the_quadrangles" WHERE "name"='beethoven'; | 2-14225237-1 |
What is the overall FHT points for Denis Kornilov? | CREATE TABLE "bischofshofen" (
"rank" real,
"name" text,
"nationality" text,
"1st_m" real,
"2nd_m" real,
"points" real,
"overall_fht_points" text,
"overall_wc_points_rank" text
); | SELECT "overall_fht_points" FROM "bischofshofen" WHERE "name"='denis kornilov'; | 2-14948647-5 |
What is the lowest 2nd (m) when the points were larger than 251.6? | CREATE TABLE "bischofshofen" (
"rank" real,
"name" text,
"nationality" text,
"1st_m" real,
"2nd_m" real,
"points" real,
"overall_fht_points" text,
"overall_wc_points_rank" text
); | SELECT MIN("2nd_m") FROM "bischofshofen" WHERE "points">251.6; | 2-14948647-5 |
What city ranked 7? | CREATE TABLE "approved" (
"rank" real,
"name" text,
"height_m_ft" text,
"floors" real,
"year_est" text,
"city" text
); | SELECT "city" FROM "approved" WHERE "rank"=7; | 2-13538796-4 |
How many floors were there with a building rank of less than 3 and a height of 300 / 985 m (ft)? | CREATE TABLE "approved" (
"rank" real,
"name" text,
"height_m_ft" text,
"floors" real,
"year_est" text,
"city" text
); | SELECT COUNT("floors") FROM "approved" WHERE "height_m_ft"='300 / 985' AND "rank"<3; | 2-13538796-4 |
What is the rank of Etihad Tower 5, with less than 62 floors? | CREATE TABLE "approved" (
"rank" real,
"name" text,
"height_m_ft" text,
"floors" real,
"year_est" text,
"city" text
); | SELECT MIN("rank") FROM "approved" WHERE "floors"<62 AND "name"='etihad tower 5'; | 2-13538796-4 |
What city has a building ranked greater than 15 with floors greater than 43? | CREATE TABLE "approved" (
"rank" real,
"name" text,
"height_m_ft" text,
"floors" real,
"year_est" text,
"city" text
); | SELECT "city" FROM "approved" WHERE "rank">15 AND "floors">43; | 2-13538796-4 |
Which league is for baseball with Laredo Apaches? | CREATE TABLE "defunct_teams" (
"club" text,
"sport" text,
"league" text,
"venue" text,
"championships" real,
"years_active" text
); | SELECT "league" FROM "defunct_teams" WHERE "sport"='baseball' AND "club"='laredo apaches'; | 2-136773-5 |
Which league has arena football in the club Laredo Lobos? | CREATE TABLE "defunct_teams" (
"club" text,
"sport" text,
"league" text,
"venue" text,
"championships" real,
"years_active" text
); | SELECT "league" FROM "defunct_teams" WHERE "sport"='arena football' AND "club"='laredo lobos'; | 2-136773-5 |
Which was the home team for game 3? | CREATE TABLE "series_summary" (
"game" text,
"date" text,
"home_team" text,
"result" text,
"road_team" text,
"tv_time" text
); | SELECT "home_team" FROM "series_summary" WHERE "game"='game 3'; | 2-13618767-5 |
What was the TV time for Chicago's road game against Phoenix on June 18? | CREATE TABLE "series_summary" (
"game" text,
"date" text,
"home_team" text,
"result" text,
"road_team" text,
"tv_time" text
); | SELECT "tv_time" FROM "series_summary" WHERE "road_team"='phoenix' AND "date"='june 18'; | 2-13618767-5 |
What was the TV time for the road game against Phoenix where the score was 98-99? | CREATE TABLE "series_summary" (
"game" text,
"date" text,
"home_team" text,
"result" text,
"road_team" text,
"tv_time" text
); | SELECT "tv_time" FROM "series_summary" WHERE "home_team"='phoenix' AND "result"='98-99'; | 2-13618767-5 |
Who was the home team on June 9? | CREATE TABLE "series_summary" (
"game" text,
"date" text,
"home_team" text,
"result" text,
"road_team" text,
"tv_time" text
); | SELECT "home_team" FROM "series_summary" WHERE "date"='june 9'; | 2-13618767-5 |
What was the TV time for the game on June 9? | CREATE TABLE "series_summary" (
"game" text,
"date" text,
"home_team" text,
"result" text,
"road_team" text,
"tv_time" text
); | SELECT "tv_time" FROM "series_summary" WHERE "date"='june 9'; | 2-13618767-5 |
At which Conference was the Division in the East, and the Home Stadium named fedexfield? | CREATE TABLE "list_of_professional_sports_teams_in_the" (
"conference" text,
"division" text,
"team" text,
"city" text,
"home_stadium" text
); | SELECT "conference" FROM "list_of_professional_sports_teams_in_the" WHERE "division"='east' AND "home_stadium"='fedexfield'; | 2-14519555-11 |
What is the name of the Home Stadium in which the Division is in the south, and Conference is national, as well as being in the city named charlotte, North Carolina? | CREATE TABLE "list_of_professional_sports_teams_in_the" (
"conference" text,
"division" text,
"team" text,
"city" text,
"home_stadium" text
); | SELECT "home_stadium" FROM "list_of_professional_sports_teams_in_the" WHERE "division"='south' AND "conference"='national' AND "city"='charlotte, north carolina'; | 2-14519555-11 |
Which Home Stadium has American as its Conference as well as nashville, tennessee as the city? | CREATE TABLE "list_of_professional_sports_teams_in_the" (
"conference" text,
"division" text,
"team" text,
"city" text,
"home_stadium" text
); | SELECT "home_stadium" FROM "list_of_professional_sports_teams_in_the" WHERE "conference"='american' AND "city"='nashville, tennessee'; | 2-14519555-11 |
What is the name of the Conference which Division is south, and the Home Stadium is georgia dome? | CREATE TABLE "list_of_professional_sports_teams_in_the" (
"conference" text,
"division" text,
"team" text,
"city" text,
"home_stadium" text
); | SELECT "conference" FROM "list_of_professional_sports_teams_in_the" WHERE "division"='south' AND "home_stadium"='georgia dome'; | 2-14519555-11 |
Which Division does the City being jacksonville, florida belong to? | CREATE TABLE "list_of_professional_sports_teams_in_the" (
"conference" text,
"division" text,
"team" text,
"city" text,
"home_stadium" text
); | SELECT "division" FROM "list_of_professional_sports_teams_in_the" WHERE "city"='jacksonville, florida'; | 2-14519555-11 |
Who won Women's doubles when Raina Tzvetkova won women's singles before 2000? | CREATE TABLE "past_winners" (
"year" real,
"men_s_singles" text,
"women_s_singles" text,
"men_s_doubles" text,
"women_s_doubles" text,
"mixed_doubles" text
); | SELECT "women_s_doubles" FROM "past_winners" WHERE "year"<2000 AND "women_s_singles"='raina tzvetkova'; | 2-14903491-1 |
Who won men's singles when petya nedelcheva diana dimova won women's doubles and vladimir metodiev krasimir yankov won men's doubles? | CREATE TABLE "past_winners" (
"year" real,
"men_s_singles" text,
"women_s_singles" text,
"men_s_doubles" text,
"women_s_doubles" text,
"mixed_doubles" text
); | SELECT "men_s_singles" FROM "past_winners" WHERE "women_s_doubles"='petya nedelcheva diana dimova' AND "men_s_doubles"='vladimir metodiev krasimir yankov'; | 2-14903491-1 |
Who won men's singles when petya nedelcheva won women's singles, petya nedelcheva diana dimova won women's doubles, stilian makarski diana dimova won mixed doubles, and stilian makarski peyo boichinov won men's doubles? | CREATE TABLE "past_winners" (
"year" real,
"men_s_singles" text,
"women_s_singles" text,
"men_s_doubles" text,
"women_s_doubles" text,
"mixed_doubles" text
); | SELECT "men_s_singles" FROM "past_winners" WHERE "women_s_singles"='petya nedelcheva' AND "women_s_doubles"='petya nedelcheva diana dimova' AND "mixed_doubles"='stilian makarski diana dimova' AND "men_s_doubles"='stilian makarski peyo boichinov'; | 2-14903491-1 |
Who won women's singles in 1986? | CREATE TABLE "past_winners" (
"year" real,
"men_s_singles" text,
"women_s_singles" text,
"men_s_doubles" text,
"women_s_doubles" text,
"mixed_doubles" text
); | SELECT "women_s_singles" FROM "past_winners" WHERE "year"=1986; | 2-14903491-1 |
What score has 1/22 as the date? | CREATE TABLE "schedule" (
"date" text,
"opponent" text,
"score" text,
"record" text,
"television" text
); | SELECT "score" FROM "schedule" WHERE "date"='1/22'; | 2-14461902-2 |
What score has 12/1 as the date? | CREATE TABLE "schedule" (
"date" text,
"opponent" text,
"score" text,
"record" text,
"television" text
); | SELECT "score" FROM "schedule" WHERE "date"='12/1'; | 2-14461902-2 |
Which source has a Cost free, and an Activity of some, and an Editor of markitup? | CREATE TABLE "list_of_source_code_editors" (
"editor" text,
"site" text,
"style_clone_of" text,
"cost_us" text,
"open_source" text,
"activity" text
); | SELECT "open_source" FROM "list_of_source_code_editors" WHERE "cost_us"='free' AND "activity"='some' AND "editor"='markitup'; | 2-13707375-1 |
Which site has a Cost free and a Editor of jsvi? | CREATE TABLE "list_of_source_code_editors" (
"editor" text,
"site" text,
"style_clone_of" text,
"cost_us" text,
"open_source" text,
"activity" text
); | SELECT "site" FROM "list_of_source_code_editors" WHERE "cost_us"='free' AND "editor"='jsvi'; | 2-13707375-1 |
What is the cost of an Open Source that is no? | CREATE TABLE "list_of_source_code_editors" (
"editor" text,
"site" text,
"style_clone_of" text,
"cost_us" text,
"open_source" text,
"activity" text
); | SELECT "cost_us" FROM "list_of_source_code_editors" WHERE "open_source"='no'; | 2-13707375-1 |
What venue has a weight (kg) greater than 55, and won as the result? | CREATE TABLE "2006_07_season_as_a_five_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" real,
"jockey" text,
"winner_2nd" text
); | SELECT "venue" FROM "2006_07_season_as_a_five_year_old" WHERE "weight_kg">55 AND "result"='won'; | 2-14981555-3 |
Which group has a weight (kg) less than 55? | CREATE TABLE "2006_07_season_as_a_five_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" real,
"jockey" text,
"winner_2nd" text
); | SELECT "group" FROM "2006_07_season_as_a_five_year_old" WHERE "weight_kg"<55; | 2-14981555-3 |
Which position has 45 picks? | CREATE TABLE "round_four" (
"pick_num" real,
"mls_team" text,
"player" text,
"position" text,
"affiliation" text
); | SELECT "position" FROM "round_four" WHERE "pick_num"=45; | 2-15214004-4 |
What is the record of the game before week 5 and a bye game site? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"record" text,
"game_site" text,
"attendance" text
); | SELECT "record" FROM "schedule" WHERE "week"<5 AND "game_site"='bye'; | 2-14877379-2 |
Which Seasons have Entries larger than 52, and Poles of 33? | CREATE TABLE "percentage_pole_positions" (
"driver" text,
"seasons" text,
"entries" real,
"poles" real,
"percentage" text
); | SELECT "seasons" FROM "percentage_pole_positions" WHERE "entries">52 AND "poles"=33; | 2-13599687-25 |
Which Seasons have a Poles larger than 29, and Entries larger than 191? | CREATE TABLE "percentage_pole_positions" (
"driver" text,
"seasons" text,
"entries" real,
"poles" real,
"percentage" text
); | SELECT "seasons" FROM "percentage_pole_positions" WHERE "poles">29 AND "entries">191; | 2-13599687-25 |
What ist the Away Leg with an Opposition that is aarhus gymnastik forening? | CREATE TABLE "matches_in_europe" (
"competition" text,
"round" text,
"opposition" text,
"home_leg" text,
"away_leg" text
); | SELECT "away_leg" FROM "matches_in_europe" WHERE "opposition"='aarhus gymnastik forening'; | 2-14667157-2 |
What 2007 has 236 for 2006? | CREATE TABLE "doubles_statistics" (
"tournament" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
); | SELECT "2007" FROM "doubles_statistics" WHERE "2006"='236'; | 2-14348408-10 |
What 2011 has 2r as 2010, and a 2008 of A? | CREATE TABLE "doubles_statistics" (
"tournament" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
); | SELECT "2011" FROM "doubles_statistics" WHERE "2010"='2r' AND "2008"='a'; | 2-14348408-10 |
What is the 2012 that has tournament played as the tournament? | CREATE TABLE "doubles_statistics" (
"tournament" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
); | SELECT "2012" FROM "doubles_statistics" WHERE "tournament"='tournament played'; | 2-14348408-10 |
Which artist had a place larger than 1 with 229 points? | CREATE TABLE "semifinal_1" (
"draw" real,
"artist" text,
"song" text,
"points" real,
"place" real
); | SELECT "artist" FROM "semifinal_1" WHERE "place">1 AND "points"=229; | 2-15016411-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.