question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
Where is the city of Maharashtra's Pune team? | CREATE TABLE "clubs_stadiums_and_locations" (
"team" text,
"city" text,
"state" text,
"home_venue" text,
"capacity" real
); | SELECT "city" FROM "clubs_stadiums_and_locations" WHERE "state"='maharashtra' AND "team"='pune'; | 2-12375992-2 |
How much Money is requested by BassToneSlap? | CREATE TABLE "series_7" (
"episode" text,
"first_aired" text,
"entrepreneur_s" text,
"company_or_product_name" text,
"money_requested" text,
"investing_dragon_s" text
); | SELECT "money_requested" FROM "series_7" WHERE "company_or_product_name"='basstoneslap'; | 2-12617978-11 |
Which Investing Dragon has requested £100,000 and is supported by Entrepreneur Kay Russell? | CREATE TABLE "series_7" (
"episode" text,
"first_aired" text,
"entrepreneur_s" text,
"company_or_product_name" text,
"money_requested" text,
"investing_dragon_s" text
); | SELECT "investing_dragon_s" FROM "series_7" WHERE "money_requested"='100,000' AND "entrepreneur_s"='kay russell'; | 2-12617978-11 |
What is the name of the Company or Product that is Episode 3 and is suppoted by Investing Dragon Deborah Meaden? | CREATE TABLE "series_7" (
"episode" text,
"first_aired" text,
"entrepreneur_s" text,
"company_or_product_name" text,
"money_requested" text,
"investing_dragon_s" text
); | SELECT "company_or_product_name" FROM "series_7" WHERE "episode"='episode 3' AND "investing_dragon_s"='deborah meaden'; | 2-12617978-11 |
Which Episode has requested £150,000? | CREATE TABLE "series_7" (
"episode" text,
"first_aired" text,
"entrepreneur_s" text,
"company_or_product_name" text,
"money_requested" text,
"investing_dragon_s" text
); | SELECT "episode" FROM "series_7" WHERE "money_requested"='150,000'; | 2-12617978-11 |
What is the counting method for a network-centric basis? | CREATE TABLE "classification_of_motif_discovery_algori" (
"counting_method" text,
"basis" text,
"name" text,
"directed_undirected" text,
"induced_non_induced" text
); | SELECT "counting_method" FROM "classification_of_motif_discovery_algori" WHERE "basis"='network-centric'; | 2-12499410-9 |
What is the directed/undirected for mfinder, which has a network-centric basis? | CREATE TABLE "classification_of_motif_discovery_algori" (
"counting_method" text,
"basis" text,
"name" text,
"directed_undirected" text,
"induced_non_induced" text
); | SELECT "directed_undirected" FROM "classification_of_motif_discovery_algori" WHERE "name"='mfinder' AND "basis"='network-centric'; | 2-12499410-9 |
What is the directed/undirected of fpf (mavisto), which has an induced/non-induced of induced? | CREATE TABLE "classification_of_motif_discovery_algori" (
"counting_method" text,
"basis" text,
"name" text,
"directed_undirected" text,
"induced_non_induced" text
); | SELECT "directed_undirected" FROM "classification_of_motif_discovery_algori" WHERE "induced_non_induced"='induced' AND "name"='fpf (mavisto)'; | 2-12499410-9 |
What is the name of the algorithm with a directed/undirected of both and a subgraph-centric basis? | CREATE TABLE "classification_of_motif_discovery_algori" (
"counting_method" text,
"basis" text,
"name" text,
"directed_undirected" text,
"induced_non_induced" text
); | SELECT "name" FROM "classification_of_motif_discovery_algori" WHERE "directed_undirected"='both' AND "basis"='subgraph-centric'; | 2-12499410-9 |
What is the directed/undirected for mfinder, which has an induced/non-induced of induced and an exact counting method? | CREATE TABLE "classification_of_motif_discovery_algori" (
"counting_method" text,
"basis" text,
"name" text,
"directed_undirected" text,
"induced_non_induced" text
); | SELECT "directed_undirected" FROM "classification_of_motif_discovery_algori" WHERE "induced_non_induced"='induced' AND "counting_method"='exact' AND "name"='mfinder'; | 2-12499410-9 |
Who is the opponent for the winner outcome on a hard surface on August 27, 2011? | CREATE TABLE "singles_16_7_titles_9_runners_up" (
"outcome" text,
"date" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "opponent" FROM "singles_16_7_titles_9_runners_up" WHERE "outcome"='winner' AND "surface"='hard' AND "date"='august 27, 2011'; | 2-12509095-8 |
What was the outcome on August 5, 2007? | CREATE TABLE "singles_16_7_titles_9_runners_up" (
"outcome" text,
"date" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "outcome" FROM "singles_16_7_titles_9_runners_up" WHERE "date"='august 5, 2007'; | 2-12509095-8 |
What was the score on January 16, 2010? | CREATE TABLE "singles_16_7_titles_9_runners_up" (
"outcome" text,
"date" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "score" FROM "singles_16_7_titles_9_runners_up" WHERE "date"='january 16, 2010'; | 2-12509095-8 |
What country is Paul Runyan from? | CREATE TABLE "third_round" (
"place" text,
"name" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "third_round" WHERE "name"='paul runyan'; | 2-12572213-4 |
What is the To par of Willie MacFarlane from the country of Scotland? | CREATE TABLE "third_round" (
"place" text,
"name" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "third_round" WHERE "country"='scotland' AND "name"='willie macfarlane'; | 2-12572213-4 |
What country has a To par of +1 and the score of 71-76-70=217? | CREATE TABLE "third_round" (
"place" text,
"name" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "third_round" WHERE "to_par"='+1' AND "score"='71-76-70=217'; | 2-12572213-4 |
What player scored 143 goals? | CREATE TABLE "most_goals_in_a_season" (
"rank" text,
"goals" text,
"player" text,
"club" text,
"season" text
); | SELECT "player" FROM "most_goals_in_a_season" WHERE "goals"='143'; | 2-12161422-16 |
In what season was there a club of South Melbourne? | CREATE TABLE "most_goals_in_a_season" (
"rank" text,
"goals" text,
"player" text,
"club" text,
"season" text
); | SELECT "season" FROM "most_goals_in_a_season" WHERE "club"='south melbourne'; | 2-12161422-16 |
What club scored 143 goals? | CREATE TABLE "most_goals_in_a_season" (
"rank" text,
"goals" text,
"player" text,
"club" text,
"season" text
); | SELECT "club" FROM "most_goals_in_a_season" WHERE "goals"='143'; | 2-12161422-16 |
In what season did Bob Pratt play? | CREATE TABLE "most_goals_in_a_season" (
"rank" text,
"goals" text,
"player" text,
"club" text,
"season" text
); | SELECT "season" FROM "most_goals_in_a_season" WHERE "player"='bob pratt'; | 2-12161422-16 |
How many goals did the club from Hawthorn score in the 1971 season? | CREATE TABLE "most_goals_in_a_season" (
"rank" text,
"goals" text,
"player" text,
"club" text,
"season" text
); | SELECT "goals" FROM "most_goals_in_a_season" WHERE "club"='hawthorn' AND "season"='1971'; | 2-12161422-16 |
What source has july 1 as the date? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='july 1'; | 2-12453290-6 |
What is the record that has an attendance greater than 39,980 with july 26 as the date? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "record" FROM "game_log" WHERE "attendance">'39,980' AND "date"='july 26'; | 2-12453290-6 |
What is the Area of the town with a Population Density of 36 km and a population greater than 3,546? | CREATE TABLE "statistics" (
"municipality" text,
"population" real,
"area_km" real,
"density_population_per_km" real,
"area" text,
"county" text
); | SELECT SUM("area_km") FROM "statistics" WHERE "density_population_per_km"=36 AND "population">'3,546'; | 2-1246665-1 |
Which municipality's area is outer circle south and smaller than 368 km in Akershus County with more than 14,398 people? | CREATE TABLE "statistics" (
"municipality" text,
"population" real,
"area_km" real,
"density_population_per_km" real,
"area" text,
"county" text
); | SELECT "municipality" FROM "statistics" WHERE "area"='outer circle south' AND "area_km"<368 AND "county"='akershus' AND "population">'14,398'; | 2-1246665-1 |
What was the location of the game after game 6? | CREATE TABLE "summary" (
"game" real,
"date" text,
"location" text,
"time" text,
"attendance" real
); | SELECT "location" FROM "summary" WHERE "game">6; | 2-1290967-1 |
Who is in February where has September is kristine hanson? | CREATE TABLE "1970_1979" (
"january" text,
"february" text,
"march" text,
"april" text,
"june" text,
"july" text,
"august" text,
"september" text,
"october" text,
"november" text,
"december" text
); | SELECT "february" FROM "1970_1979" WHERE "september"='kristine hanson'; | 2-12868503-3 |
Who is in January where April is chris cranston? | CREATE TABLE "1970_1979" (
"january" text,
"february" text,
"march" text,
"april" text,
"june" text,
"july" text,
"august" text,
"september" text,
"october" text,
"november" text,
"december" text
); | SELECT "january" FROM "1970_1979" WHERE "april"='chris cranston'; | 2-12868503-3 |
Who is in July where October is jill de vries? | CREATE TABLE "1970_1979" (
"january" text,
"february" text,
"march" text,
"april" text,
"june" text,
"july" text,
"august" text,
"september" text,
"october" text,
"november" text,
"december" text
); | SELECT "july" FROM "1970_1979" WHERE "october"='jill de vries'; | 2-12868503-3 |
Who is in November where February is willy rey? | CREATE TABLE "1970_1979" (
"january" text,
"february" text,
"march" text,
"april" text,
"june" text,
"july" text,
"august" text,
"september" text,
"october" text,
"november" text,
"december" text
); | SELECT "november" FROM "1970_1979" WHERE "february"='willy rey'; | 2-12868503-3 |
Who is in November where October is jill de vries? | CREATE TABLE "1970_1979" (
"january" text,
"february" text,
"march" text,
"april" text,
"june" text,
"july" text,
"august" text,
"september" text,
"october" text,
"november" text,
"december" text
); | SELECT "november" FROM "1970_1979" WHERE "october"='jill de vries'; | 2-12868503-3 |
Who is in July where February is linda forsythe? | CREATE TABLE "1970_1979" (
"january" text,
"february" text,
"march" text,
"april" text,
"june" text,
"july" text,
"august" text,
"september" text,
"october" text,
"november" text,
"december" text
); | SELECT "july" FROM "1970_1979" WHERE "february"='linda forsythe'; | 2-12868503-3 |
What were the remarks for Dutch Antilles Express? | CREATE TABLE "current_destination_number" (
"rank" real,
"airline" text,
"country" text,
"destination_number" real,
"remarks" text
); | SELECT "remarks" FROM "current_destination_number" WHERE "airline"='dutch antilles express'; | 2-12430348-2 |
What were the remarks for a destination under 19 and rank less than 5? | CREATE TABLE "current_destination_number" (
"rank" real,
"airline" text,
"country" text,
"destination_number" real,
"remarks" text
); | SELECT "remarks" FROM "current_destination_number" WHERE "destination_number"<19 AND "rank"<5; | 2-12430348-2 |
Name the date when the attendance is more than 45,817 | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "date" FROM "game_log" WHERE "attendance">'45,817'; | 2-12206689-7 |
Name the score for september 25 | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='september 25'; | 2-12206689-7 |
What is the lowest year that has athens, greece as the venue? | CREATE TABLE "achievements" (
"year" real,
"tournament" text,
"venue" text,
"result" text,
"extra" text
); | SELECT MIN("year") FROM "achievements" WHERE "venue"='athens, greece'; | 2-13260484-1 |
Which venue has 1st as the result? | CREATE TABLE "achievements" (
"year" real,
"tournament" text,
"venue" text,
"result" text,
"extra" text
); | SELECT "venue" FROM "achievements" WHERE "result"='1st'; | 2-13260484-1 |
What extra has world championships as the tournament, and 1st as the result? | CREATE TABLE "achievements" (
"year" real,
"tournament" text,
"venue" text,
"result" text,
"extra" text
); | SELECT "extra" FROM "achievements" WHERE "tournament"='world championships' AND "result"='1st'; | 2-13260484-1 |
For all countries with 7 bronze medals and a total number of medals less than 13, what's the sum of silver medals? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT SUM("silver") FROM "medal_table" WHERE "bronze"=7 AND "total"<13; | 2-13023411-1 |
For countries with total number of medals less than 5 and more than 2 bronze medals, what's the lowest number of gold medals? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MIN("gold") FROM "medal_table" WHERE "total"<5 AND "bronze">2; | 2-13023411-1 |
Which Class has Laps of 31? | CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
"laps" real,
"pos" text,
"class_pos" text
); | SELECT "class" FROM "24_hours_of_le_mans_results" WHERE "laps"=31; | 2-1234917-2 |
What is the gender for the person that recieved over 11,542 votes in pasadena? | CREATE TABLE "newfoundland_and_labrador_7_seats" (
"riding" text,
"candidate_s_name" text,
"gender" text,
"residence" text,
"occupation" text,
"votes" real,
"rank" text
); | SELECT "gender" FROM "newfoundland_and_labrador_7_seats" WHERE "votes">'11,542' AND "residence"='pasadena'; | 2-12890271-1 |
What country team had Thurles Sarsfields? | CREATE TABLE "see_also" (
"position" text,
"player" text,
"county_team" text,
"club_team_s" text,
"team_number" real
); | SELECT "county_team" FROM "see_also" WHERE "club_team_s"='thurles sarsfields'; | 2-12464369-1 |
How many club teams had more than 14 people? | CREATE TABLE "see_also" (
"position" text,
"player" text,
"county_team" text,
"club_team_s" text,
"team_number" real
); | SELECT "club_team_s" FROM "see_also" WHERE "team_number">14; | 2-12464369-1 |
Who is from Spain with a to par of e? | CREATE TABLE "first_round" (
"place" text,
"player" text,
"country" text,
"score" real,
"to_par" text
); | SELECT "player" FROM "first_round" WHERE "to_par"='e' AND "country"='spain'; | 2-12523044-4 |
Where was Steve Stricker from? | CREATE TABLE "first_round" (
"place" text,
"player" text,
"country" text,
"score" real,
"to_par" text
); | SELECT "place" FROM "first_round" WHERE "player"='steve stricker'; | 2-12523044-4 |
Which country has 69 score? | CREATE TABLE "first_round" (
"place" text,
"player" text,
"country" text,
"score" real,
"to_par" text
); | SELECT "country" FROM "first_round" WHERE "score"=69; | 2-12523044-4 |
How many laps were there when the start was 12? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT COUNT("laps") FROM "indy_500_results" WHERE "start"='12'; | 2-1252142-1 |
What was the qual when the rank was 2? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT "qual" FROM "indy_500_results" WHERE "rank"='2'; | 2-1252142-1 |
Tell me the call sign which has a frequency Mhz more than 90.1 and ERP W of 1 | CREATE TABLE "broadcast_translators_of_wise_fm" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"fcc_info" text
); | SELECT "call_sign" FROM "broadcast_translators_of_wise_fm" WHERE "frequency_m_hz">90.1 AND "erp_w"=1; | 2-12155786-3 |
Name the total number of ERP W when the call sign is w217bf | CREATE TABLE "broadcast_translators_of_wise_fm" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"fcc_info" text
); | SELECT COUNT("erp_w") FROM "broadcast_translators_of_wise_fm" WHERE "call_sign"='w217bf'; | 2-12155786-3 |
Name the total number of frequency Mhz for when it has ERP W of 1 and call sign of w215bj | CREATE TABLE "broadcast_translators_of_wise_fm" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"fcc_info" text
); | SELECT COUNT("frequency_m_hz") FROM "broadcast_translators_of_wise_fm" WHERE "erp_w"=1 AND "call_sign"='w215bj'; | 2-12155786-3 |
Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3 | CREATE TABLE "broadcast_translators_of_wise_fm" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"fcc_info" text
); | SELECT AVG("erp_w") FROM "broadcast_translators_of_wise_fm" WHERE "city_of_license"='pound, virginia' AND "frequency_m_hz">91.3; | 2-12155786-3 |
What is the Score that has a Result of 2–2 on 04 Dec 2005? | CREATE TABLE "goals_for_senior_national_team" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "score" FROM "goals_for_senior_national_team" WHERE "result"='2–2' AND "date"='04 dec 2005'; | 2-12881471-3 |
What is the Result on 26 jan 2005? | CREATE TABLE "goals_for_senior_national_team" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "result" FROM "goals_for_senior_national_team" WHERE "date"='26 jan 2005'; | 2-12881471-3 |
What is the Venue on 26 jan 2005 | CREATE TABLE "goals_for_senior_national_team" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "venue" FROM "goals_for_senior_national_team" WHERE "date"='26 jan 2005'; | 2-12881471-3 |
What is the Competition On 26 jan 2005 | CREATE TABLE "goals_for_senior_national_team" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "competition" FROM "goals_for_senior_national_team" WHERE "date"='26 jan 2005'; | 2-12881471-3 |
What is the Score of West Asian Games 2005 on 10 dec 2005? | CREATE TABLE "goals_for_senior_national_team" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "score" FROM "goals_for_senior_national_team" WHERE "competition"='west asian games 2005' AND "date"='10 dec 2005'; | 2-12881471-3 |
How many matches were drawn by a team with 447 points? | CREATE TABLE "2008_2009_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_2009_table" WHERE "points_for"='447'; | 2-12828723-4 |
For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against? | CREATE TABLE "2008_2009_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_2009_table" WHERE "played"='22' AND "losing_bonus"='3' AND "tries_against"='45'; | 2-12828723-4 |
For a team with 332 points for, what was the try bonus? | CREATE TABLE "2008_2009_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_2009_table" WHERE "points_for"='332'; | 2-12828723-4 |
Which club has a try bonus of 9 and 43 tries against? | CREATE TABLE "2008_2009_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 "club" FROM "2008_2009_table" WHERE "tries_against"='43' AND "try_bonus"='9'; | 2-12828723-4 |
How many matches were played by the team that has 473 points for? | CREATE TABLE "2008_2009_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 "played" FROM "2008_2009_table" WHERE "points_for"='473'; | 2-12828723-4 |
What is the qual when there are 125 laps? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT "qual" FROM "indy_500_results" WHERE "laps"=125; | 2-1252098-1 |
What is the rank when there are more than 107 laps and the qual is 137.825? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT "rank" FROM "indy_500_results" WHERE "laps">107 AND "qual"='137.825'; | 2-1252098-1 |
What is the rank with more than 40 laps and a 23 finish? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT "rank" FROM "indy_500_results" WHERE "laps">40 AND "finish"='23'; | 2-1252098-1 |
What is the finish in 1953? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT "finish" FROM "indy_500_results" WHERE "year"='1953'; | 2-1252098-1 |
In what year was the rank 24? | CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
); | SELECT "year" FROM "indy_500_results" WHERE "rank"='24'; | 2-1252098-1 |
Which To par has $100 in money played by Vic Ghezzi? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT "to_par" FROM "final_leaderboard" WHERE "money"=100 AND "player"='vic ghezzi'; | 2-12586815-1 |
What is the monetary sum with a score of 75-71-75-72=293? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT SUM("money") FROM "final_leaderboard" WHERE "score"='75-71-75-72=293'; | 2-12586815-1 |
Which Wednesday has a Saturday of གཟའ་སྤེན་པ།? | CREATE TABLE "east_asian_seven_luminaries" (
"sunday" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text
); | SELECT "wednesday" FROM "east_asian_seven_luminaries" WHERE "saturday"='གཟའ་སྤེན་པ།'; | 2-1277350-4 |
Which Wednesday has a Sunday of གཟའ་ཉི་མ།? | CREATE TABLE "east_asian_seven_luminaries" (
"sunday" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text
); | SELECT "wednesday" FROM "east_asian_seven_luminaries" WHERE "sunday"='གཟའ་ཉི་མ།'; | 2-1277350-4 |
Which Tuesday has a Saturday of 土曜日 doyōbi? | CREATE TABLE "east_asian_seven_luminaries" (
"sunday" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text
); | SELECT "tuesday" FROM "east_asian_seven_luminaries" WHERE "saturday"='土曜日 doyōbi'; | 2-1277350-4 |
Which Thursday has a Wednesday of 星期三 xingqisen? | CREATE TABLE "east_asian_seven_luminaries" (
"sunday" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text
); | SELECT "thursday" FROM "east_asian_seven_luminaries" WHERE "wednesday"='星期三 xingqisen'; | 2-1277350-4 |
Which Wednesday has a Monday of 月曜日 getsuyōbi? | CREATE TABLE "east_asian_seven_luminaries" (
"sunday" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text
); | SELECT "wednesday" FROM "east_asian_seven_luminaries" WHERE "monday"='月曜日 getsuyōbi'; | 2-1277350-4 |
Which Saturday has a Thursday of 木曜日 mokuyōbi | CREATE TABLE "east_asian_seven_luminaries" (
"sunday" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text
); | SELECT "saturday" FROM "east_asian_seven_luminaries" WHERE "thursday"='木曜日 mokuyōbi'; | 2-1277350-4 |
What loss was against the angels with a 50-31 record? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "loss" FROM "game_log" WHERE "opponent"='angels' AND "record"='50-31'; | 2-12206491-5 |
Who is the pilot on September 27, 1972? | CREATE TABLE "m2_f3_flights" (
"vehicle_flight_num" text,
"date" text,
"pilot" text,
"mach" real,
"velocity_km_h" real,
"altitude_ft" real,
"duration" text
); | SELECT "pilot" FROM "m2_f3_flights" WHERE "date"='september 27, 1972'; | 2-1284217-1 |
What is the lowest altitude of the flight with a mach bigger than 0.905 and a duration of 00:06:17? | CREATE TABLE "m2_f3_flights" (
"vehicle_flight_num" text,
"date" text,
"pilot" text,
"mach" real,
"velocity_km_h" real,
"altitude_ft" real,
"duration" text
); | SELECT MIN("altitude_ft") FROM "m2_f3_flights" WHERE "mach">0.905 AND "duration"='00:06:17'; | 2-1284217-1 |
Which wicket had a 100 (45) Runs (balls) amount? | CREATE TABLE "highest_partnerships_of_the_tournament" (
"runs_balls" text,
"wicket" text,
"partnerships" text,
"venue" text,
"date" text
); | SELECT "wicket" FROM "highest_partnerships_of_the_tournament" WHERE "runs_balls"='100 (45)'; | 2-13219504-9 |
Which Wicket was it that had a 104 (69) Runs (balls) amount? | CREATE TABLE "highest_partnerships_of_the_tournament" (
"runs_balls" text,
"wicket" text,
"partnerships" text,
"venue" text,
"date" text
); | SELECT "wicket" FROM "highest_partnerships_of_the_tournament" WHERE "runs_balls"='104 (69)'; | 2-13219504-9 |
What is the item for Leagues entering, when the value for Clubs is 8 → 4? | CREATE TABLE "calendar" (
"round" text,
"fixtures" real,
"clubs" text,
"new_entries" text,
"leagues_entering" text
); | SELECT "leagues_entering" FROM "calendar" WHERE "clubs"='8 → 4'; | 2-13049964-1 |
What is the Round when the value for Fixtures is 2? | CREATE TABLE "calendar" (
"round" text,
"fixtures" real,
"clubs" text,
"new_entries" text,
"leagues_entering" text
); | SELECT "round" FROM "calendar" WHERE "fixtures"=2; | 2-13049964-1 |
What is the value for New entries, when the value for Fixtures is less than 16, and when the value for Clubs is 4 → 2? | CREATE TABLE "calendar" (
"round" text,
"fixtures" real,
"clubs" text,
"new_entries" text,
"leagues_entering" text
); | SELECT "new_entries" FROM "calendar" WHERE "fixtures"<16 AND "clubs"='4 → 2'; | 2-13049964-1 |
What is the value for New entries, when the value for Fixtures is 2? | CREATE TABLE "calendar" (
"round" text,
"fixtures" real,
"clubs" text,
"new_entries" text,
"leagues_entering" text
); | SELECT "new_entries" FROM "calendar" WHERE "fixtures"=2; | 2-13049964-1 |
Which date has a format's album? | CREATE TABLE "recording_industry_association_of_americ" (
"year" real,
"date" text,
"title" text,
"format_s" text,
"award_description_s" text,
"result_s" text
); | SELECT "date" FROM "recording_industry_association_of_americ" WHERE "format_s"='album'; | 2-1220507-16 |
What is the title for year 1991 and a date of March 21? | CREATE TABLE "recording_industry_association_of_americ" (
"year" real,
"date" text,
"title" text,
"format_s" text,
"award_description_s" text,
"result_s" text
); | SELECT "title" FROM "recording_industry_association_of_americ" WHERE "year"=1991 AND "date"='march 21'; | 2-1220507-16 |
What is the average year with an award of platinum? | CREATE TABLE "recording_industry_association_of_americ" (
"year" real,
"date" text,
"title" text,
"format_s" text,
"award_description_s" text,
"result_s" text
); | SELECT AVG("year") FROM "recording_industry_association_of_americ" WHERE "award_description_s"='platinum'; | 2-1220507-16 |
What are the results of Format single on March 21? | CREATE TABLE "recording_industry_association_of_americ" (
"year" real,
"date" text,
"title" text,
"format_s" text,
"award_description_s" text,
"result_s" text
); | SELECT "result_s" FROM "recording_industry_association_of_americ" WHERE "format_s"='single' AND "date"='march 21'; | 2-1220507-16 |
What are the award description with Format album? | CREATE TABLE "recording_industry_association_of_americ" (
"year" real,
"date" text,
"title" text,
"format_s" text,
"award_description_s" text,
"result_s" text
); | SELECT "award_description_s" FROM "recording_industry_association_of_americ" WHERE "format_s"='album'; | 2-1220507-16 |
What is the largest number of goals with less than 101 assists and 172 points? | CREATE TABLE "career_points_leaders" (
"player" text,
"years" text,
"goals" real,
"assists" real,
"points" real
); | SELECT MAX("goals") FROM "career_points_leaders" WHERE "assists"<101 AND "points"<172; | 2-12453414-5 |
How many total points does Mike Hyndman have with more than 119 assists? | CREATE TABLE "career_points_leaders" (
"player" text,
"years" text,
"goals" real,
"assists" real,
"points" real
); | SELECT SUM("points") FROM "career_points_leaders" WHERE "player"='mike hyndman' AND "assists">119; | 2-12453414-5 |
How many assists does David Tomlinson have? | CREATE TABLE "career_points_leaders" (
"player" text,
"years" text,
"goals" real,
"assists" real,
"points" real
); | SELECT SUM("assists") FROM "career_points_leaders" WHERE "player"='david tomlinson'; | 2-12453414-5 |
How many points does Shawn Mceachern with less than 79 goals? | CREATE TABLE "career_points_leaders" (
"player" text,
"years" text,
"goals" real,
"assists" real,
"points" real
); | SELECT SUM("points") FROM "career_points_leaders" WHERE "player"='shawn mceachern' AND "goals"<79; | 2-12453414-5 |
How many goals does Mike Eruzione have in total? | CREATE TABLE "career_points_leaders" (
"player" text,
"years" text,
"goals" real,
"assists" real,
"points" real
); | SELECT "goals" FROM "career_points_leaders" WHERE "player"='mike eruzione'; | 2-12453414-5 |
Which rider had fewer than 10 laps for the Aprilia manufacturer, finishing in retirement? | CREATE TABLE "250cc_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT "rider" FROM "250cc_classification" WHERE "laps"<10 AND "manufacturer"='aprilia' AND "time_retired"='retirement'; | 2-12779644-2 |
What is the time for a grid greater than 20, fewer than 26 laps, and the Aprilia manufacturer? | CREATE TABLE "250cc_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT "time_retired" FROM "250cc_classification" WHERE "grid">20 AND "laps"<26 AND "manufacturer"='aprilia'; | 2-12779644-2 |
Which rider had more than 23 laps, a manufacturer of Aprilia, and a grid of 14 | CREATE TABLE "250cc_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT "rider" FROM "250cc_classification" WHERE "laps">23 AND "manufacturer"='aprilia' AND "grid"=14; | 2-12779644-2 |
When was Walter Evans a representative? | CREATE TABLE "external_links" (
"representative" text,
"years" text,
"state" text,
"party" text,
"lifespan" text
); | SELECT "years" FROM "external_links" WHERE "representative"='walter evans'; | 2-12600781-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.