instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | Who is shown for the 2nd (m) of 220.5? | SELECT Name FROM table WHERE 2nd (m) = 220.5 |
Translate the following into a SQL query | What is the 2nd (m) when the 1st (m) is 216.5? | SELECT 2nd (m) FROM table WHERE 1st (m) = 216.5 |
Translate the following into a SQL query | For the nationality of FIN and the points of 418.8 what is the overall wc points? | SELECT Overall WC points (Rank) FROM table WHERE Nationality = FIN AND Points = 418.8 |
Translate the following into a SQL query | What are the overall wc points for points of 397.2? | SELECT Overall WC points (Rank) FROM table WHERE Points = 397.2 |
Translate the following into a SQL query | What is shown for 2nd (m) if the is 1st (m) is 203.5? | SELECT 2nd (m) FROM table WHERE 1st (m) = 203.5 |
Translate the following into a SQL query | What are the overall wc points for 2nd (m) of 214.5? | SELECT Overall WC points (Rank) FROM table WHERE 2nd (m) = 214.5 |
Translate the following into a SQL query | The competitor for FIN had how many overall WC points? | SELECT Overall WC points (Rank) FROM table WHERE Nationality = FIN |
Translate the following into a SQL query | How many full names are provided for the jumper whose 2nd jump was 96.0m? | SELECT COUNT Name FROM table WHERE 2nd (m) = 96.0 |
Translate the following into a SQL query | What was the length of the jumper representing FIN, in meters? | SELECT 1st (m) FROM table WHERE Nationality = FIN |
Translate the following into a SQL query | What is the 1st(m) score for the Person who had a total points of 272.7 | SELECT 1st (m) FROM table WHERE Points = 272.7 |
Translate the following into a SQL query | How many total points did roman Koudelka have | SELECT Overall WC points (Rank) FROM table WHERE Name = Roman Koudelka |
Translate the following into a SQL query | Name the opponent for week 12 | SELECT Opponent FROM table WHERE Week = 12 |
Translate the following into a SQL query | Name the number of date for shea stadium | SELECT COUNT Date FROM table WHERE Game Site = Shea Stadium |
Translate the following into a SQL query | Name the opponent for astrodome | SELECT Opponent FROM table WHERE Game Site = Astrodome |
Translate the following into a SQL query | How many home team scores have a time of 4:40 PM? | SELECT COUNT Home team score FROM table WHERE Time = 4:40 PM |
Translate the following into a SQL query | What stadiums had an attendance of 8,256? | SELECT Ground FROM table WHERE Crowd = 8,256 |
Translate the following into a SQL query | What is the total number of attendees where the home team was Port Adelaide? | SELECT COUNT Crowd FROM table WHERE Home team = Port Adelaide |
Translate the following into a SQL query | Which team did they play at Rich Stadium? | SELECT Opponent FROM table WHERE Game Site = Rich Stadium |
Translate the following into a SQL query | What date did they play in Cleveland Municipal Stadium? | SELECT Date FROM table WHERE Game Site = Cleveland Municipal Stadium |
Translate the following into a SQL query | Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi | SELECT Year model FROM table WHERE Engine = 4-cyl Straight engine DOHC 16V AND Model = 1.5 CRDi |
Translate the following into a SQL query | Name the year model for 1.3 | SELECT Year model FROM table WHERE Model = 1.3 |
Translate the following into a SQL query | what is the minimum pos with clubs being 16 | SELECT MIN Pos FROM table WHERE Clubs = 16 |
Translate the following into a SQL query | what is the maximum value for afc cup | SELECT MAX AFC Cup FROM table |
Translate the following into a SQL query | how many pos with member association being china pr | SELECT COUNT Pos FROM table WHERE Member Association = China PR |
Translate the following into a SQL query | how many points (total 500) with pos being 11 | SELECT COUNT Points (total 500) FROM table WHERE Pos = 11 |
Translate the following into a SQL query | How many points in 89/90 for the team with 55 in 87/88? | SELECT 1989-90 FROM table WHERE 1987-88 = 55 |
Translate the following into a SQL query | How many points in 87/88 for racing de córdoba? | SELECT 1987-88 FROM table WHERE Team = Racing de Córdoba |
Translate the following into a SQL query | What is the lowest number of games played for deportivo español? | SELECT MIN Played FROM table WHERE Team = Deportivo Español |
Translate the following into a SQL query | What is the average for the team with 34 in 88/89? | SELECT Average FROM table WHERE 1988-89 = 34 |
Translate the following into a SQL query | How many points total for san lorenzo? | SELECT COUNT Points FROM table WHERE Team = San Lorenzo |
Translate the following into a SQL query | Name the telephone 052 for area km2 being 5.42 | SELECT Telephone (052) FROM table WHERE Area (km 2 ) = 5.42 |
Translate the following into a SQL query | Name the population of people for area being 24.35 | SELECT Population (people) FROM table WHERE Area (km 2 ) = 24.35 |
Translate the following into a SQL query | Name the total number of telephone 052 for 362.81 | SELECT COUNT Telephone (052) FROM table WHERE Area (km 2 ) = 362.81 |
Translate the following into a SQL query | Name the number of administrative unit for number 4 | SELECT Name of administrative unit FROM table WHERE Number = 4 |
Translate the following into a SQL query | Name the name of administrative unit for 3464 people | SELECT Name of administrative unit FROM table WHERE Population (people) = 3464 |
Translate the following into a SQL query | How many of the cmdlets are the 2008 version? | SELECT COUNT Cmdlets FROM table WHERE Version = 2008 |
Translate the following into a SQL query | Which providers use exchange server? | SELECT Provider FROM table WHERE Application = Exchange Server |
Translate the following into a SQL query | Which providers use version 2008? | SELECT Provider FROM table WHERE Version = 2008 |
Translate the following into a SQL query | Which providers don't use exchange server? | SELECT Provider FROM table WHERE Application = Exchange Server |
Translate the following into a SQL query | how many points did the team that scored 27 points in the 1987-88 season score? | SELECT COUNT Played FROM table WHERE 1987-88 = 27 |
Translate the following into a SQL query | how many points did the argentinos juniors team score during the 1986-87 season? | SELECT 1986-87 FROM table WHERE Team = Argentinos Juniors |
Translate the following into a SQL query | how many points did the team that scored 38 points in the 1986-87 season score during the 1988-89 season? | SELECT MIN 1988-89 FROM table WHERE 1986-87 = 38 |
Translate the following into a SQL query | what is the maximum number of matches played by a team? | SELECT MAX Played FROM table |
Translate the following into a SQL query | list the number of matches played by the teams that got an average of 1.079 | SELECT 1986-87 FROM table WHERE Average = 1.079 |
Translate the following into a SQL query | Name the womens singles for korea open super series | SELECT Womens singles FROM table WHERE Tour = Korea Open Super Series |
Translate the following into a SQL query | Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting | SELECT Tour FROM table WHERE Mens singles = Chen Jin AND Womens doubles = Zhang Yawen Zhao Tingting |
Translate the following into a SQL query | Name the womens doubles when tour is malaysia super series | SELECT Womens doubles FROM table WHERE Tour = Malaysia Super Series |
Translate the following into a SQL query | Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen | SELECT Mens singles FROM table WHERE Womens singles = Wang Lin AND Mixed doubles = Joachim Fischer Nielsen Christinna Pedersen |
Translate the following into a SQL query | Name the mixed doubles when tour is hong kong super series | SELECT Mixed doubles FROM table WHERE Tour = Hong Kong Super Series |
Translate the following into a SQL query | Name the mixed doubles for zhu lin | SELECT Mixed doubles FROM table WHERE Womens singles = Zhu Lin |
Translate the following into a SQL query | Name the week for kingdome | SELECT Week FROM table WHERE Location = Kingdome |
Translate the following into a SQL query | Name the date when result is l 13–10 ot | SELECT Date FROM table WHERE Result = L 13–10 OT |
Translate the following into a SQL query | Name the record for l 24–22 | SELECT Record FROM table WHERE Result = L 24–22 |
Translate the following into a SQL query | Which Country is the show aired on Fox? | SELECT Country FROM table WHERE Channel = Fox |
Translate the following into a SQL query | Where is the show aired in New Zealand? | SELECT Channel FROM table WHERE Country = New Zealand |
Translate the following into a SQL query | What channel had the prize of €100,000? | SELECT Channel FROM table WHERE Top Prize = €100,000 |
Translate the following into a SQL query | How many hosts were on Seven Network? | SELECT COUNT Host FROM table WHERE Channel = Seven Network |
Translate the following into a SQL query | What country is the show aired on TVNZ? | SELECT Country FROM table WHERE Channel = TVNZ |
Translate the following into a SQL query | What is the capital of Umbria? | SELECT Capital FROM table WHERE Region = Umbria |
Translate the following into a SQL query | What is the region where Milan is located? | SELECT Region FROM table WHERE Capital = Milan |
Translate the following into a SQL query | What is the area of Tuscany? | SELECT MAX Area (km²) FROM table WHERE Region = Tuscany |
Translate the following into a SQL query | Name the minimum for 2500-3000 ft for scotland | SELECT MIN 2500–3000ft FROM table WHERE Country = Scotland |
Translate the following into a SQL query | Name the most of 2500-3000ft | SELECT MAX 2500–3000ft FROM table |
Translate the following into a SQL query | Name the minimum total for ireland | SELECT MIN Total FROM table WHERE Country = Ireland |
Translate the following into a SQL query | Who directed all the episodes that were written by aaron ehasz & john o'bryan? | SELECT Directed by FROM table WHERE Written by = Aaron Ehasz & John O'Bryan |
Translate the following into a SQL query | What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan? | SELECT Production code FROM table WHERE Written by = Michael Dante DiMartino AND Directed by = Lauren MacMullan |
Translate the following into a SQL query | What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan? | SELECT Original air date FROM table WHERE Directed by = Giancarlo Volpe AND Written by = John O'Bryan |
Translate the following into a SQL query | Which situation has an original u.s. airdate of December 5, 2007? | SELECT Situation FROM table WHERE Original U.S. Airdate = December 5, 2007 |
Translate the following into a SQL query | What is the date of situation for the original u.s. airdate of December 5, 2007? | SELECT Date of Situation FROM table WHERE Original U.S. Airdate = December 5, 2007 |
Translate the following into a SQL query | How many entries are there for date of situation for #4? | SELECT COUNT Date of Situation FROM table WHERE # = 4 |
Translate the following into a SQL query | How many # entries are there for the date of situation of 23 January 2003? | SELECT COUNT # FROM table WHERE Date of Situation = 23 January 2003 |
Translate the following into a SQL query | For the 8 October 2005 – 12 October 2005 situation dates what was the nature of the situation? | SELECT Nature of Situation FROM table WHERE Date of Situation = 8 October 2005 – 12 October 2005 |
Translate the following into a SQL query | Name the circuit for gt3 alex mortimer bradley ellis | SELECT Circuit FROM table WHERE GT3 Winner = Alex Mortimer Bradley Ellis |
Translate the following into a SQL query | Name the episodes when region 1 is september 19, 2006 | SELECT Episodes FROM table WHERE Region 1 = September 19, 2006 |
Translate the following into a SQL query | Name the maximum discs | SELECT MAX Discs FROM table |
Translate the following into a SQL query | Name the most epiosdes when region 4 is march 13, 2008 | SELECT MAX Episodes FROM table WHERE Region 4 = March 13, 2008 |
Translate the following into a SQL query | what's the individual winners with nation being australia | SELECT Individual winners FROM table WHERE Nation = Australia |
Translate the following into a SQL query | what is the value for minimum total wins | SELECT MIN Total wins FROM table |
Translate the following into a SQL query | When 1994 no game is the 1894 wsu 10–0 moscow what is the 1896 no game? | SELECT 1896 No game FROM table WHERE 1894 WSU 10–0 Moscow = 1994 No game |
Translate the following into a SQL query | When 1963 wsu* 14–10 pullman is the 1893 no game what is the 1894 wsu 10–0 moscow? | SELECT 1894 WSU 10–0 Moscow FROM table WHERE 1893 No game = 1963 WSU* 14–10 Pullman |
Translate the following into a SQL query | When 1934 wsu* 19–0 pullman is the 1894 wsu 10–0 moscow how many 1899 wsu* 11–0 pullmans are there? | SELECT COUNT 1899 WSU* 11–0 Pullman FROM table WHERE 1894 WSU 10–0 Moscow = 1934 WSU* 19–0 Pullman |
Translate the following into a SQL query | When 1987 no game is the 1897 no game what is the 1890 no game? | SELECT 1890 No game FROM table WHERE 1897 No game = 1987 No game |
Translate the following into a SQL query | When 1971 no game is the 1891 no game what is the 1896 no game? | SELECT 1896 No game FROM table WHERE 1891 No game = 1971 No game |
Translate the following into a SQL query | When the 1907 ui* 5–4 moscow is the 1897 no game what is the 1895 wsu* 10–4 pullman? | SELECT 1895 WSU* 10–4 Pullman FROM table WHERE 1897 No game = 1907 UI* 5–4 Moscow |
Translate the following into a SQL query | What is the total amount o teams where winnings is $1,752,299? | SELECT COUNT Team(s) FROM table WHERE Winnings = $1,752,299 |
Translate the following into a SQL query | What is the avg start that starts at 30? | SELECT Avg. Start FROM table WHERE Starts = 30 |
Translate the following into a SQL query | What is the totl amount of years where avg start is 27.3? | SELECT COUNT Year FROM table WHERE Avg. Start = 27.3 |
Translate the following into a SQL query | What coach had 15 wins? | SELECT Name (Alma Mater) FROM table WHERE Wins = 15 |
Translate the following into a SQL query | How many losses for the coach that coached 19 games? | SELECT Losses FROM table WHERE Games = 19 |
Translate the following into a SQL query | Name the school year for class a for sterling city and little elm | SELECT School Year FROM table WHERE Class A = Sterling City AND Class AA = Little Elm |
Translate the following into a SQL query | Name the number of class aa for bridgeport and 1999-2000 | SELECT COUNT Class AA FROM table WHERE Class AAA = Bridgeport AND School Year = 1999-2000 |
Translate the following into a SQL query | Name the class aa for 1998-99 | SELECT Class AA FROM table WHERE School Year = 1998-99 |
Translate the following into a SQL query | Name the class a for pearland | SELECT Class A FROM table WHERE Class AAAAA = Pearland |
Translate the following into a SQL query | Name the class aaaaa for 2005-06 | SELECT Class AAAAA FROM table WHERE School Year = 2005-06 |
Translate the following into a SQL query | Name the number of class aaaaa for 1988-89 | SELECT COUNT Class AAAAA FROM table WHERE School Year = 1988-89 |
Translate the following into a SQL query | What is the percentage of females where in India and are maharashtra? | SELECT Females (%) FROM table WHERE India/State/UT = Maharashtra |
Translate the following into a SQL query | What is the percentage of all females that are literate people have a percentage of 68.74? | SELECT Females (%) FROM table WHERE Literate Persons (%) = 68.74 |
Translate the following into a SQL query | What is the percentage of females where the state code is a 4? | SELECT Females (%) FROM table WHERE State/UT Code = 4 |
Translate the following into a SQL query | What is the percentage of all the literate people where females are 73.17? | SELECT Literate Persons (%) FROM table WHERE Females (%) = 73.17 |
Translate the following into a SQL query | What is the percentage of literate people where india is andaman and Nicobar Islands? | SELECT Literate Persons (%) FROM table WHERE India/State/UT = Andaman and Nicobar Islands |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.