question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What is week 4 if week 3 is 35.40? | CREATE TABLE "scores" (
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text,
"week_6" text,
"week_7" text
); | SELECT "week_4" FROM "scores" WHERE "week_3"='35.40'; | 2-17911592-1 |
What is week 7 when week 3 is 35.90? | CREATE TABLE "scores" (
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text,
"week_6" text,
"week_7" text
); | SELECT "week_7" FROM "scores" WHERE "week_3"='35.90'; | 2-17911592-1 |
What is week 6 when week 7, week 4, and week 3 are evicted and week 2 29.35? | CREATE TABLE "scores" (
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text,
"week_6" text,
"week_7" text
); | SELECT "week_6" FROM "scores" WHERE "week_7"='evicted' AND "week_4"='evicted' AND "week_3"='evicted' AND "week_2"='29.35'; | 2-17911592-1 |
What is week 5 when week 6 is evicted, and week 2 is 34.55? | CREATE TABLE "scores" (
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text,
"week_6" text,
"week_7" text
); | SELECT "week_5" FROM "scores" WHERE "week_6"='evicted' AND "week_2"='34.55'; | 2-17911592-1 |
What is the lowest Winner's share (¥) in 2011? | CREATE TABLE "winners" (
"year" real,
"dates" text,
"champion" text,
"country" text,
"score" text,
"purse" real,
"winner_s_share" real
); | SELECT MIN("winner_s_share") FROM "winners" WHERE "year"=2011; | 2-17821655-1 |
How much is the purse worth (¥) after 2012? | CREATE TABLE "winners" (
"year" real,
"dates" text,
"champion" text,
"country" text,
"score" text,
"purse" real,
"winner_s_share" real
); | SELECT SUM("purse") FROM "winners" WHERE "year">2012; | 2-17821655-1 |
What place had a score of 67-67=134? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "second_round" WHERE "score"='67-67=134'; | 2-18097219-5 |
What country placed t3 with a score of 70-65=135? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "place"='t3' AND "score"='70-65=135'; | 2-18097219-5 |
What player placed t6 for the United States with a score of 67-69=136? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "player" FROM "second_round" WHERE "country"='united states' AND "place"='t6' AND "score"='67-69=136'; | 2-18097219-5 |
What is Competition, when Round is "Group A - Match 1"? | CREATE TABLE "matches" (
"competition" text,
"round" text,
"date_and_time" text,
"opponent_team" text,
"result" text
); | SELECT "competition" FROM "matches" WHERE "round"='group a - match 1'; | 2-18225042-2 |
What is Date and Time, when Competition is "Serie A", and when Result is "0-3"? | CREATE TABLE "matches" (
"competition" text,
"round" text,
"date_and_time" text,
"opponent_team" text,
"result" text
); | SELECT "date_and_time" FROM "matches" WHERE "competition"='serie a' AND "result"='0-3'; | 2-18225042-2 |
What is Competition, when Round is "8 A"? | CREATE TABLE "matches" (
"competition" text,
"round" text,
"date_and_time" text,
"opponent_team" text,
"result" text
); | SELECT "competition" FROM "matches" WHERE "round"='8 a'; | 2-18225042-2 |
What is City of License, when Frequency is greater than 1380? | CREATE TABLE "am" (
"frequency" real,
"callsign" text,
"brand" text,
"city_of_license" text,
"type" text
); | SELECT "city_of_license" FROM "am" WHERE "frequency">1380; | 2-17982829-17 |
What is Brand, when Frequency is "640"? | CREATE TABLE "am" (
"frequency" real,
"callsign" text,
"brand" text,
"city_of_license" text,
"type" text
); | SELECT "brand" FROM "am" WHERE "frequency"=640; | 2-17982829-17 |
What is the average Frequency, when Type is "Norteño", and when Brand is "La Cotorra"? | CREATE TABLE "am" (
"frequency" real,
"callsign" text,
"brand" text,
"city_of_license" text,
"type" text
); | SELECT AVG("frequency") FROM "am" WHERE "type"='norteño' AND "brand"='la cotorra'; | 2-17982829-17 |
What is Type, when Frequency is "1480"? | CREATE TABLE "am" (
"frequency" real,
"callsign" text,
"brand" text,
"city_of_license" text,
"type" text
); | SELECT "type" FROM "am" WHERE "frequency"=1480; | 2-17982829-17 |
What is the sum of Frequency, when Type is "Christian Pop"? | CREATE TABLE "am" (
"frequency" real,
"callsign" text,
"brand" text,
"city_of_license" text,
"type" text
); | SELECT SUM("frequency") FROM "am" WHERE "type"='christian pop'; | 2-17982829-17 |
What is the Type, when Callsign is "Xetam"? | CREATE TABLE "am" (
"frequency" real,
"callsign" text,
"brand" text,
"city_of_license" text,
"type" text
); | SELECT "type" FROM "am" WHERE "callsign"='xetam'; | 2-17982829-17 |
Which Chief Judge has Appointed by of reagan category:articles with hcards? | CREATE TABLE "former_judges" (
"state" text,
"born_died" text,
"active_service" text,
"chief_judge" text,
"senior_status" text,
"appointed_by" text,
"reason_for_termination" text
); | SELECT "chief_judge" FROM "former_judges" WHERE "appointed_by"='reagan category:articles with hcards'; | 2-1826748-2 |
Which Senior status has a Chief Judge of —, a Reason for termination of death, and Active service of 1967–1983? | CREATE TABLE "former_judges" (
"state" text,
"born_died" text,
"active_service" text,
"chief_judge" text,
"senior_status" text,
"appointed_by" text,
"reason_for_termination" text
); | SELECT "senior_status" FROM "former_judges" WHERE "chief_judge"='—' AND "reason_for_termination"='death' AND "active_service"='1967–1983'; | 2-1826748-2 |
Which Senior status has Appointed by of l. johnson category:articles with hcards, and Born/Died of 1918–2009? | CREATE TABLE "former_judges" (
"state" text,
"born_died" text,
"active_service" text,
"chief_judge" text,
"senior_status" text,
"appointed_by" text,
"reason_for_termination" text
); | SELECT "senior_status" FROM "former_judges" WHERE "appointed_by"='l. johnson category:articles with hcards' AND "born_died"='1918–2009'; | 2-1826748-2 |
Which Chief Judge has Active service of 1873–1875? | CREATE TABLE "former_judges" (
"state" text,
"born_died" text,
"active_service" text,
"chief_judge" text,
"senior_status" text,
"appointed_by" text,
"reason_for_termination" text
); | SELECT "chief_judge" FROM "former_judges" WHERE "active_service"='1873–1875'; | 2-1826748-2 |
Which Reason for termination has Appointed by of eisenhower category:articles with hcards? | CREATE TABLE "former_judges" (
"state" text,
"born_died" text,
"active_service" text,
"chief_judge" text,
"senior_status" text,
"appointed_by" text,
"reason_for_termination" text
); | SELECT "reason_for_termination" FROM "former_judges" WHERE "appointed_by"='eisenhower category:articles with hcards'; | 2-1826748-2 |
Which Senior status has a Chief Judge of 1991–1995? | CREATE TABLE "former_judges" (
"state" text,
"born_died" text,
"active_service" text,
"chief_judge" text,
"senior_status" text,
"appointed_by" text,
"reason_for_termination" text
); | SELECT "senior_status" FROM "former_judges" WHERE "chief_judge"='1991–1995'; | 2-1826748-2 |
When did the Wolverhampton Wanderers play at home? | CREATE TABLE "third_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "date" FROM "third_round_proper" WHERE "home_team"='wolverhampton wanderers'; | 2-17751859-3 |
What are 2004's notes? | CREATE TABLE "men" (
"year" real,
"gold" text,
"silver" text,
"bronze" text,
"notes" text
); | SELECT "notes" FROM "men" WHERE "year"=2004; | 2-17760670-6 |
What year did Yuri Omeltchenko win Silver? | CREATE TABLE "men" (
"year" real,
"gold" text,
"silver" text,
"bronze" text,
"notes" text
); | SELECT "year" FROM "men" WHERE "silver"='yuri omeltchenko'; | 2-17760670-6 |
Who won Silver in 2000? | CREATE TABLE "men" (
"year" real,
"gold" text,
"silver" text,
"bronze" text,
"notes" text
); | SELECT "silver" FROM "men" WHERE "year"=2000; | 2-17760670-6 |
What is the score on April 12? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"decision" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='april 12'; | 2-17798269-9 |
What is the score on April 5? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"decision" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='april 5'; | 2-17798269-9 |
What was the result when there were 6 matches? | CREATE TABLE "olympic_record" (
"year" text,
"result" text,
"matches" text,
"wins" text,
"draws" text,
"losses" text
); | SELECT "result" FROM "olympic_record" WHERE "matches"='6'; | 2-1818918-2 |
What year was the result did not qualify? | CREATE TABLE "olympic_record" (
"year" text,
"result" text,
"matches" text,
"wins" text,
"draws" text,
"losses" text
); | SELECT "year" FROM "olympic_record" WHERE "result"='did not qualify'; | 2-1818918-2 |
What was the result in 2008? | CREATE TABLE "olympic_record" (
"year" text,
"result" text,
"matches" text,
"wins" text,
"draws" text,
"losses" text
); | SELECT "result" FROM "olympic_record" WHERE "year"='2008'; | 2-1818918-2 |
What was the to par score for Tim Herron, who had a score of 69-72=141? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "score"='69-72=141' AND "player"='tim herron'; | 2-17991356-5 |
Which golfer finished with a score of 70-71=141? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "player" FROM "second_round" WHERE "score"='70-71=141'; | 2-17991356-5 |
In what place did Adam Scott, who had a to par score of +1, finish? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "second_round" WHERE "to_par"='+1' AND "player"='adam scott'; | 2-17991356-5 |
In what place did the golfer that scored 66-74=140 finish? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "second_round" WHERE "score"='66-74=140'; | 2-17991356-5 |
Which player has a place of t2? | CREATE TABLE "first_round" (
"place" text,
"player" text,
"country" text,
"score" real,
"to_par" text
); | SELECT "player" FROM "first_round" WHERE "place"='t2'; | 2-18148933-3 |
What is the score for Nick Faldo? | CREATE TABLE "first_round" (
"place" text,
"player" text,
"country" text,
"score" real,
"to_par" text
); | SELECT "score" FROM "first_round" WHERE "player"='nick faldo'; | 2-18148933-3 |
What's the average against of Leopold with more than 11 wins? | CREATE TABLE "2010_ladder" (
"geelong_fl" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT AVG("against") FROM "2010_ladder" WHERE "geelong_fl"='leopold' AND "wins">11; | 2-17982112-6 |
How many total wins for Leopold that had fewer than 1706 against? | CREATE TABLE "2010_ladder" (
"geelong_fl" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT SUM("wins") FROM "2010_ladder" WHERE "against"<1706 AND "geelong_fl"='leopold'; | 2-17982112-6 |
What is the largest number of draws of St Josephs with losses greater than 6 and less than 1250 against? | CREATE TABLE "2010_ladder" (
"geelong_fl" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT MAX("draws") FROM "2010_ladder" WHERE "losses">6 AND "geelong_fl"='st josephs' AND "against"<1250; | 2-17982112-6 |
What is the total number of against when they had 14 losses and more than 0 byes? | CREATE TABLE "2010_ladder" (
"geelong_fl" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT SUM("against") FROM "2010_ladder" WHERE "losses"=14 AND "byes">0; | 2-17982112-6 |
What is Classification, when Dennis Kucinich is "3%", and when % of All is "53%"? | CREATE TABLE "exit_polling" (
"classification" text,
"pct_of_all" text,
"john_kerry" text,
"john_edwards" text,
"dennis_kucinich" text
); | SELECT "classification" FROM "exit_polling" WHERE "dennis_kucinich"='3%' AND "pct_of_all"='53%'; | 2-17709981-2 |
What is Dennis Kucinich, when % of All is "53%"? | CREATE TABLE "exit_polling" (
"classification" text,
"pct_of_all" text,
"john_kerry" text,
"john_edwards" text,
"dennis_kucinich" text
); | SELECT "dennis_kucinich" FROM "exit_polling" WHERE "pct_of_all"='53%'; | 2-17709981-2 |
What is John Edwards, when John Kerry is "70%"? | CREATE TABLE "exit_polling" (
"classification" text,
"pct_of_all" text,
"john_kerry" text,
"john_edwards" text,
"dennis_kucinich" text
); | SELECT "john_edwards" FROM "exit_polling" WHERE "john_kerry"='70%'; | 2-17709981-2 |
What is Dennis Kucinich, when Classification is "Democrat"? | CREATE TABLE "exit_polling" (
"classification" text,
"pct_of_all" text,
"john_kerry" text,
"john_edwards" text,
"dennis_kucinich" text
); | SELECT "dennis_kucinich" FROM "exit_polling" WHERE "classification"='democrat'; | 2-17709981-2 |
What is John Kerry, when John Edwards is "20%"? | CREATE TABLE "exit_polling" (
"classification" text,
"pct_of_all" text,
"john_kerry" text,
"john_edwards" text,
"dennis_kucinich" text
); | SELECT "john_kerry" FROM "exit_polling" WHERE "john_edwards"='20%'; | 2-17709981-2 |
What is % of All, when Dennis Kucinich is "5%"? | CREATE TABLE "exit_polling" (
"classification" text,
"pct_of_all" text,
"john_kerry" text,
"john_edwards" text,
"dennis_kucinich" text
); | SELECT "pct_of_all" FROM "exit_polling" WHERE "dennis_kucinich"='5%'; | 2-17709981-2 |
What is Robert Emmiyan's Wind number? | CREATE TABLE "men" (
"mark" text,
"wind" text,
"athlete" text,
"nationality" text,
"venue" text,
"date" text
); | SELECT "wind" FROM "men" WHERE "athlete"='robert emmiyan'; | 2-18084-3 |
What athlete has a wind number of 1.4? | CREATE TABLE "men" (
"mark" text,
"wind" text,
"athlete" text,
"nationality" text,
"venue" text,
"date" text
); | SELECT "athlete" FROM "men" WHERE "wind"='1.4'; | 2-18084-3 |
What is the mark from April 2, 1994 with a wind number of 2.0? | CREATE TABLE "men" (
"mark" text,
"wind" text,
"athlete" text,
"nationality" text,
"venue" text,
"date" text
); | SELECT "mark" FROM "men" WHERE "wind"='2.0' AND "date"='april 2, 1994'; | 2-18084-3 |
What is the date of the second round? | CREATE TABLE "dfb_cup_appearances" (
"season" text,
"round" text,
"date" text,
"home" text,
"away" text,
"result" text
); | SELECT "date" FROM "dfb_cup_appearances" WHERE "round"='second round'; | 2-17909463-3 |
What is the round on 26 August 1995? | CREATE TABLE "dfb_cup_appearances" (
"season" text,
"round" text,
"date" text,
"home" text,
"away" text,
"result" text
); | SELECT "round" FROM "dfb_cup_appearances" WHERE "date"='26 august 1995'; | 2-17909463-3 |
What is the round played on 13 October 1984? | CREATE TABLE "dfb_cup_appearances" (
"season" text,
"round" text,
"date" text,
"home" text,
"away" text,
"result" text
); | SELECT "round" FROM "dfb_cup_appearances" WHERE "date"='13 october 1984'; | 2-17909463-3 |
What is the result for SSV ULM 1846? | CREATE TABLE "dfb_cup_appearances" (
"season" text,
"round" text,
"date" text,
"home" text,
"away" text,
"result" text
); | SELECT "result" FROM "dfb_cup_appearances" WHERE "home"='ssv ulm 1846'; | 2-17909463-3 |
What is the transfer window when moving to alianza atlético by the name of v. zapata? | CREATE TABLE "out" (
"nat" text,
"name" text,
"moving_to" text,
"type" text,
"transfer_window" text
); | SELECT "transfer_window" FROM "out" WHERE "moving_to"='alianza atlético' AND "name"='v. zapata'; | 2-17932930-3 |
Where is moving to the type loaned out under the name tragodara? | CREATE TABLE "out" (
"nat" text,
"name" text,
"moving_to" text,
"type" text,
"transfer_window" text
); | SELECT "moving_to" FROM "out" WHERE "type"='loaned out' AND "name"='tragodara'; | 2-17932930-3 |
What is the name when moving to atlético minero? | CREATE TABLE "out" (
"nat" text,
"name" text,
"moving_to" text,
"type" text,
"transfer_window" text
); | SELECT "name" FROM "out" WHERE "moving_to"='atlético minero'; | 2-17932930-3 |
what is the type movinig to alianza atlético? | CREATE TABLE "out" (
"nat" text,
"name" text,
"moving_to" text,
"type" text,
"transfer_window" text
); | SELECT "type" FROM "out" WHERE "moving_to"='alianza atlético'; | 2-17932930-3 |
what is the name moving to atlético minero? | CREATE TABLE "out" (
"nat" text,
"name" text,
"moving_to" text,
"type" text,
"transfer_window" text
); | SELECT "name" FROM "out" WHERE "moving_to"='atlético minero'; | 2-17932930-3 |
What is the surface on 15 August 2009? | CREATE TABLE "doubles_25_10_15" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
); | SELECT "surface" FROM "doubles_25_10_15" WHERE "date"='15 august 2009'; | 2-18042031-12 |
How many seats does the party of others have with a change of -1 and more than 0% votes? | CREATE TABLE "government" (
"party" text,
"pct_votes" real,
"pct_change" real,
"seats" real,
"change" real
); | SELECT SUM("seats") FROM "government" WHERE "change"=-1 AND "party"='others' AND "pct_votes">0; | 2-177962-1 |
What are the fewest seats with a -3.7% change and more than 4.7% votes? | CREATE TABLE "government" (
"party" text,
"pct_votes" real,
"pct_change" real,
"seats" real,
"change" real
); | SELECT MIN("seats") FROM "government" WHERE "pct_change"=-3.7 AND "pct_votes">4.7; | 2-177962-1 |
What is the change number with fewer than 4.7% votes and more than 0 seats? | CREATE TABLE "government" (
"party" text,
"pct_votes" real,
"pct_change" real,
"seats" real,
"change" real
); | SELECT SUM("change") FROM "government" WHERE "pct_votes"<4.7 AND "seats">0; | 2-177962-1 |
What are the fewest seats with fewer than 5.4% seats and more than -1 change? | CREATE TABLE "government" (
"party" text,
"pct_votes" real,
"pct_change" real,
"seats" real,
"change" real
); | SELECT MIN("seats") FROM "government" WHERE "pct_votes"<5.4 AND "change">-1; | 2-177962-1 |
What was the score where Olga Lugina played in the Tournament of poitiers , france itf $25,000? | CREATE TABLE "doubles_13_8_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents_in_the_final" text,
"score_in_the_final" text
); | SELECT "score_in_the_final" FROM "doubles_13_8_5" WHERE "partner"='olga lugina' AND "tournament"='poitiers , france itf $25,000'; | 2-18330817-8 |
What surface did Ruxandra Dragomir play on? | CREATE TABLE "doubles_13_8_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents_in_the_final" text,
"score_in_the_final" text
); | SELECT "surface" FROM "doubles_13_8_5" WHERE "partner"='ruxandra dragomir'; | 2-18330817-8 |
Who had the opponent of Lenka Cenková kateřina šišková in the final? | CREATE TABLE "doubles_13_8_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents_in_the_final" text,
"score_in_the_final" text
); | SELECT "partner" FROM "doubles_13_8_5" WHERE "opponents_in_the_final"='lenka cenková kateřina šišková'; | 2-18330817-8 |
What tournament had an opponent of Els Callens Nancy Feber? | CREATE TABLE "doubles_13_8_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents_in_the_final" text,
"score_in_the_final" text
); | SELECT "tournament" FROM "doubles_13_8_5" WHERE "opponents_in_the_final"='els callens nancy feber'; | 2-18330817-8 |
What kind of Winning driver has a Winning constructor of mercer? | CREATE TABLE "other_grands_prix" (
"name" text,
"circuit" text,
"date" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "winning_driver" FROM "other_grands_prix" WHERE "winning_constructor"='mercer'; | 2-18256407-2 |
Which Winning driver has a Winning constructor of mercedes, and a Name of elgin trophy? | CREATE TABLE "other_grands_prix" (
"name" text,
"circuit" text,
"date" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "winning_driver" FROM "other_grands_prix" WHERE "winning_constructor"='mercedes' AND "name"='elgin trophy'; | 2-18256407-2 |
Name the Report of tourist trophy? | CREATE TABLE "other_grands_prix" (
"name" text,
"circuit" text,
"date" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "report" FROM "other_grands_prix" WHERE "name"='tourist trophy'; | 2-18256407-2 |
Name the Winning constructor on 31 may and a Circuit of madonie? | CREATE TABLE "other_grands_prix" (
"name" text,
"circuit" text,
"date" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "winning_constructor" FROM "other_grands_prix" WHERE "date"='31 may' AND "circuit"='madonie'; | 2-18256407-2 |
Name the Date of mercedes, and a Circuit of elgin? | CREATE TABLE "other_grands_prix" (
"name" text,
"circuit" text,
"date" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "date" FROM "other_grands_prix" WHERE "winning_constructor"='mercedes' AND "circuit"='elgin'; | 2-18256407-2 |
Name the Winning driver of mercedes on 22 august? | CREATE TABLE "other_grands_prix" (
"name" text,
"circuit" text,
"date" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "winning_driver" FROM "other_grands_prix" WHERE "winning_constructor"='mercedes' AND "date"='22 august'; | 2-18256407-2 |
Which coach had a 2007-2008 season of 6th? | CREATE TABLE "members_clubs" (
"club" text,
"coach" text,
"city" text,
"stadium" text,
"2007_2008_season" text
); | SELECT "coach" FROM "members_clubs" WHERE "2007_2008_season"='6th'; | 2-18111138-1 |
Which stadium did Rashid Budaj coach? | CREATE TABLE "members_clubs" (
"club" text,
"coach" text,
"city" text,
"stadium" text,
"2007_2008_season" text
); | SELECT "stadium" FROM "members_clubs" WHERE "coach"='rashid budaj'; | 2-18111138-1 |
Who coached for al farwaniyah? | CREATE TABLE "members_clubs" (
"club" text,
"coach" text,
"city" text,
"stadium" text,
"2007_2008_season" text
); | SELECT "coach" FROM "members_clubs" WHERE "city"='al farwaniyah'; | 2-18111138-1 |
Who was the coach for qadsia? | CREATE TABLE "members_clubs" (
"club" text,
"coach" text,
"city" text,
"stadium" text,
"2007_2008_season" text
); | SELECT "coach" FROM "members_clubs" WHERE "club"='qadsia'; | 2-18111138-1 |
Which stadium had the club Kuwait? | CREATE TABLE "members_clubs" (
"club" text,
"coach" text,
"city" text,
"stadium" text,
"2007_2008_season" text
); | SELECT "stadium" FROM "members_clubs" WHERE "club"='kuwait'; | 2-18111138-1 |
What's the score in 1990? | CREATE TABLE "singles" (
"year" text,
"champion" text,
"runner_up" text,
"score" text,
"name" text
); | SELECT "score" FROM "singles" WHERE "year"='1990'; | 2-17689648-1 |
Who was the champion of the Philips Open with a runner-up of Javier Sánchez? | CREATE TABLE "singles" (
"year" text,
"champion" text,
"runner_up" text,
"score" text,
"name" text
); | SELECT "champion" FROM "singles" WHERE "name"='philips open' AND "runner_up"='javier sánchez'; | 2-17689648-1 |
What's the score of the Nice International Championships where Björn Borg was the champion? | CREATE TABLE "singles" (
"year" text,
"champion" text,
"runner_up" text,
"score" text,
"name" text
); | SELECT "score" FROM "singles" WHERE "name"='nice international championships' AND "champion"='björn borg'; | 2-17689648-1 |
What year had a score of 6–2, 2–6, 5–7, 7–6, 8–6? | CREATE TABLE "singles" (
"year" text,
"champion" text,
"runner_up" text,
"score" text,
"name" text
); | SELECT "year" FROM "singles" WHERE "score"='6–2, 2–6, 5–7, 7–6, 8–6'; | 2-17689648-1 |
What's the name when Henrik Sundström was champion? | CREATE TABLE "singles" (
"year" text,
"champion" text,
"runner_up" text,
"score" text,
"name" text
); | SELECT "name" FROM "singles" WHERE "champion"='henrik sundström'; | 2-17689648-1 |
When the away team was Bolton Wanderers, what was the score? | CREATE TABLE "fourth_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "fourth_round_proper" WHERE "away_team"='bolton wanderers'; | 2-17751797-4 |
On the date of 30/01/1991, when the away team was Liverpool, what was the score? | CREATE TABLE "fourth_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "fourth_round_proper" WHERE "date"='30/01/1991' AND "away_team"='liverpool'; | 2-17751797-4 |
When the tie no was 1, what was the score? | CREATE TABLE "fourth_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "fourth_round_proper" WHERE "tie_no"='1'; | 2-17751797-4 |
When the home team was Shrewsbury town, what was the score? | CREATE TABLE "fourth_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "fourth_round_proper" WHERE "home_team"='shrewsbury town'; | 2-17751797-4 |
When the home team was Woking, what was the tie no? | CREATE TABLE "fourth_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "tie_no" FROM "fourth_round_proper" WHERE "home_team"='woking'; | 2-17751797-4 |
How many people attended the game against away team Cambridge City? | CREATE TABLE "replays" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "attendance" FROM "replays" WHERE "away_team"='cambridge city'; | 2-18054397-13 |
Who was the home team that played against Aylesbury Vale? | CREATE TABLE "replays" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "home_team" FROM "replays" WHERE "away_team"='aylesbury vale'; | 2-18054397-13 |
Which home team has 44 ties? | CREATE TABLE "replays" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "home_team" FROM "replays" WHERE "tie_no"='44'; | 2-18054397-13 |
How many people attended the game with home team Witton Albion? | CREATE TABLE "replays" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "attendance" FROM "replays" WHERE "home_team"='witton albion'; | 2-18054397-13 |
What was the attendance at the Billericay Town home game? | CREATE TABLE "quarterfinals" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "attendance" FROM "quarterfinals" WHERE "home_team"='billericay town'; | 2-18032720-9 |
What was the tie number of the away game for Ashford Town (Middx)? | CREATE TABLE "quarterfinals" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "tie_no" FROM "quarterfinals" WHERE "away_team"='ashford town (middx)'; | 2-18032720-9 |
What was the attendance at the Billericay Town home game? | CREATE TABLE "quarterfinals" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "attendance" FROM "quarterfinals" WHERE "home_team"='billericay town'; | 2-18032720-9 |
Who was the away team at the game attended by 81? | CREATE TABLE "quarterfinals" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "away_team" FROM "quarterfinals" WHERE "attendance"='81'; | 2-18032720-9 |
What score has a tie of 5? | CREATE TABLE "fifth_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "fifth_round_proper" WHERE "tie_no"='5'; | 2-17751797-5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.