text
stringlengths
281
1.19k
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who is the director and what number is the episode for episode #1 of Are You Afraid of the Dark season 3? ### Inputs: table_name: table, columns: ['No.', '#', 'Title', 'Director', 'Writer', 'US air date', 'Storyteller', 'Villains'] ### Response: SELECT COUNT Director FROM table WHERE # = 1
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who is the director of the episode whom Scott Peters is the writer? ### Inputs: table_name: table, columns: ['No.', '#', 'Title', 'Director', 'Writer', 'US air date', 'Storyteller', 'Villains'] ### Response: SELECT Director FROM table WHERE Writer = Scott Peters
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who is the villain in episode #7? ### Inputs: table_name: table, columns: ['No.', '#', 'Title', 'Director', 'Writer', 'US air date', 'Storyteller', 'Villains'] ### Response: SELECT Villains FROM table WHERE # = 7
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who wrote episode #1 in season 7? ### Inputs: table_name: table, columns: ['No.', '#', 'Title', 'Director', 'Writer', 'US air date', 'Storyteller', 'Villains'] ### Response: SELECT COUNT Writer FROM table WHERE # = 1
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: When did the episode written by Jim Morris air? ### Inputs: table_name: table, columns: ['No.', '#', 'Title', 'Director', 'Writer', 'US air date', 'Storyteller', 'Villains'] ### Response: SELECT US air date FROM table WHERE Writer = Jim Morris
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What was Datsun Twin 200's fastest lap? ### Inputs: table_name: table, columns: ['Rd', 'Name', 'Pole Position', 'Fastest Lap', 'Winning driver', 'Winning team', 'Report'] ### Response: SELECT Fastest Lap FROM table WHERE Name = Datsun Twin 200
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: In the Datsun Twin 200 race, what was the fastest lap? ### Inputs: table_name: table, columns: ['Rd', 'Name', 'Pole Position', 'Fastest Lap', 'Winning driver', 'Winning team', 'Report'] ### Response: SELECT Fastest Lap FROM table WHERE Name = Datsun Twin 200
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What's the report for the True Value 500? ### Inputs: table_name: table, columns: ['Rd', 'Name', 'Pole Position', 'Fastest Lap', 'Winning driver', 'Winning team', 'Report'] ### Response: SELECT Report FROM table WHERE Name = True Value 500
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What was Johnny Rutherford's fastest lap while Al Unser was the pole position? ### Inputs: table_name: table, columns: ['Rd', 'Name', 'Pole Position', 'Fastest Lap', 'Winning driver', 'Winning team', 'Report'] ### Response: SELECT Fastest Lap FROM table WHERE Winning driver = Johnny Rutherford AND Pole Position = Al Unser
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What's the report on Penske Racing winning while the pole position was Al Unser? ### Inputs: table_name: table, columns: ['Rd', 'Name', 'Pole Position', 'Fastest Lap', 'Winning driver', 'Winning team', 'Report'] ### Response: SELECT COUNT Report FROM table WHERE Pole Position = Al Unser AND Winning team = Penske Racing
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930? ### Inputs: table_name: table, columns: ['Country', 'Membership (from 2010)', 'Name of member organization', 'Year current Scouting organization joined WOSM', 'Year member organization was founded', 'Admits boys/girls'] ### Response: SELECT Country FROM table WHERE Year current Scouting organization joined WOSM = 1930 AND Year member organization was founded = 1926
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Does Venezuela admit only boys, only girls, or both? ### Inputs: table_name: table, columns: ['Country', 'Membership (from 2010)', 'Name of member organization', 'Year current Scouting organization joined WOSM', 'Year member organization was founded', 'Admits boys/girls'] ### Response: SELECT Admits boys/girls FROM table WHERE Country = Venezuela
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which organizations were founded in 1972, but became WOSM members until 1977? ### Inputs: table_name: table, columns: ['Country', 'Membership (from 2010)', 'Name of member organization', 'Year current Scouting organization joined WOSM', 'Year member organization was founded', 'Admits boys/girls'] ### Response: SELECT Name of member organization FROM table WHERE Year member organization was founded = 1972 AND Year current Scouting organization joined WOSM = 1977
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Does the Scout Association of Hong Kong admit boys, girls, or both? ### Inputs: table_name: table, columns: ['Country', 'Membership (from 2010)', 'Name of member organization', 'Year current Scouting organization joined WOSM', 'Year member organization was founded', 'Admits boys/girls'] ### Response: SELECT Admits boys/girls FROM table WHERE Name of member organization = The Scout Association of Hong Kong
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Does the Ghana Scout Association (founded in 1912) admit boys, girls, or both? ### Inputs: table_name: table, columns: ['Country', 'Membership (from 2010)', 'Name of member organization', 'Year current Scouting organization joined WOSM', 'Year member organization was founded', 'Admits boys/girls'] ### Response: SELECT Admits boys/girls FROM table WHERE Year member organization was founded = 1912 AND Name of member organization = The Ghana Scout Association
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the model number introduced May 1999? ### Inputs: table_name: table, columns: ['Model', 'Introduction', 'Discontinued', 'CPU Speed', 'Print resolution (DPI) Resolution is given in dots per inch (DPI)', 'Print speed (PPM)', 'Standard memory', 'Maximum memory'] ### Response: SELECT MAX Model FROM table WHERE Introduction = May 1999
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the print resolution (FPI) for December 2002? ### Inputs: table_name: table, columns: ['Model', 'Introduction', 'Discontinued', 'CPU Speed', 'Print resolution (DPI) Resolution is given in dots per inch (DPI)', 'Print speed (PPM)', 'Standard memory', 'Maximum memory'] ### Response: SELECT Print resolution (DPI) Resolution is given in dots per inch (DPI) FROM table WHERE Introduction = December 2002
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the maximum memory for the model discontinued in November 2001? ### Inputs: table_name: table, columns: ['Model', 'Introduction', 'Discontinued', 'CPU Speed', 'Print resolution (DPI) Resolution is given in dots per inch (DPI)', 'Print speed (PPM)', 'Standard memory', 'Maximum memory'] ### Response: SELECT Maximum memory FROM table WHERE Discontinued = November 2001
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is main presenters of La Granja? ### Inputs: table_name: table, columns: ['Region/country', 'Local title', 'Network', 'Winners', 'Main presenters'] ### Response: SELECT Main presenters FROM table WHERE Local title = La Granja
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the main presenter of bulgaria? ### Inputs: table_name: table, columns: ['Region/country', 'Local title', 'Network', 'Winners', 'Main presenters'] ### Response: SELECT Main presenters FROM table WHERE Region/country = Bulgaria
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many winners are there of farma? ### Inputs: table_name: table, columns: ['Region/country', 'Local title', 'Network', 'Winners', 'Main presenters'] ### Response: SELECT COUNT Winners FROM table WHERE Local title = Farma
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the most cup goals for seasson 1911-12? ### Inputs: table_name: table, columns: ['Season', 'Team', 'League Apps', 'League Goals', 'Cup Apps', 'Cup Goals'] ### Response: SELECT MAX Cup Goals FROM table WHERE Season = 1911-12
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the league apps for season 1923-24? ### Inputs: table_name: table, columns: ['Season', 'Team', 'League Apps', 'League Goals', 'Cup Apps', 'Cup Goals'] ### Response: SELECT League Apps FROM table WHERE Season = 1923-24
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the team for season 1911-12? ### Inputs: table_name: table, columns: ['Season', 'Team', 'League Apps', 'League Goals', 'Cup Apps', 'Cup Goals'] ### Response: SELECT Team FROM table WHERE Season = 1911-12
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what's the minimum attendance with score  10.16 (76) – 9.22 (76) ### Inputs: table_name: table, columns: ['Season', 'Premier', 'Runner-up', 'Score', 'Margin', 'Venue', 'Attendance'] ### Response: SELECT MIN Attendance FROM table WHERE Score = 10.16 (76) – 9.22 (76)
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: who's the premier with in 1970 ### Inputs: table_name: table, columns: ['Season', 'Premier', 'Runner-up', 'Score', 'Margin', 'Venue', 'Attendance'] ### Response: SELECT Premier FROM table WHERE Season = 1970
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: who are all the runner-up for premier in richmond ### Inputs: table_name: table, columns: ['Season', 'Premier', 'Runner-up', 'Score', 'Margin', 'Venue', 'Attendance'] ### Response: SELECT Runner-up FROM table WHERE Premier = Richmond
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what is the minimum attendance with score 8.16 (64) – 8.12 (60) ### Inputs: table_name: table, columns: ['Season', 'Premier', 'Runner-up', 'Score', 'Margin', 'Venue', 'Attendance'] ### Response: SELECT MIN Attendance FROM table WHERE Score = 8.16 (64) – 8.12 (60)
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many mileposts are there on Anne Street? ### Inputs: table_name: table, columns: ['County', 'Location', 'Street Names', 'Milepost', 'Roads Intersected', 'Notes'] ### Response: SELECT COUNT Milepost FROM table WHERE Street Names = Anne Street
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which street is 12.2 miles long? ### Inputs: table_name: table, columns: ['County', 'Location', 'Street Names', 'Milepost', 'Roads Intersected', 'Notes'] ### Response: SELECT Street Names FROM table WHERE Milepost = 12.2
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Where does Route 24 intersect? ### Inputs: table_name: table, columns: ['County', 'Location', 'Street Names', 'Milepost', 'Roads Intersected', 'Notes'] ### Response: SELECT Location FROM table WHERE Roads Intersected = Route 24
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Where is milepost 12.8? ### Inputs: table_name: table, columns: ['County', 'Location', 'Street Names', 'Milepost', 'Roads Intersected', 'Notes'] ### Response: SELECT Location FROM table WHERE Milepost = 12.8
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the minimum amount for wool for 2001-02? ### Inputs: table_name: table, columns: ['Commodity', '2001-02', '2002-03', '2003-04', '2004-05', '2005-06', '2006-07'] ### Response: SELECT MIN 2001-02 FROM table WHERE Commodity = Wool
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who were the operational owners during the construction date of April 1892? ### Inputs: table_name: table, columns: ['Serial number', 'Wheel arrangement ( Whyte notation )', 'Build date', 'Operational owner(s)', 'Disposition'] ### Response: SELECT Operational owner(s) FROM table WHERE Build date = April 1892
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Where can you find Colorado and Southern Railway #9? ### Inputs: table_name: table, columns: ['Serial number', 'Wheel arrangement ( Whyte notation )', 'Build date', 'Operational owner(s)', 'Disposition'] ### Response: SELECT Disposition FROM table WHERE Operational owner(s) = Colorado and Southern Railway #9
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the wheel arrangement for the train in Riverdale, Georgia? ### Inputs: table_name: table, columns: ['Serial number', 'Wheel arrangement ( Whyte notation )', 'Build date', 'Operational owner(s)', 'Disposition'] ### Response: SELECT Wheel arrangement ( Whyte notation ) FROM table WHERE Disposition = Riverdale, Georgia
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: When was the train 2053 built? ### Inputs: table_name: table, columns: ['Serial number', 'Wheel arrangement ( Whyte notation )', 'Build date', 'Operational owner(s)', 'Disposition'] ### Response: SELECT Build date FROM table WHERE Serial number = 2053
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many wheels does the train owned by Texas and New Orleans Railroad #319 have? ### Inputs: table_name: table, columns: ['Serial number', 'Wheel arrangement ( Whyte notation )', 'Build date', 'Operational owner(s)', 'Disposition'] ### Response: SELECT COUNT Wheel arrangement ( Whyte notation ) FROM table WHERE Operational owner(s) = Texas and New Orleans Railroad #319
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which college has the men's nickname of the blazers? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Men’s Nickname', 'Women’s Nickname', 'Founded', 'Type', 'Enrollment', 'Joined', 'Left', 'Current Conference', 'Classification'] ### Response: SELECT Institution FROM table WHERE Men’s Nickname = Blazers
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Name the joined for the wolfpack women's nickname ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Men’s Nickname', 'Women’s Nickname', 'Founded', 'Type', 'Enrollment', 'Joined', 'Left', 'Current Conference', 'Classification'] ### Response: SELECT Joined FROM table WHERE Women’s Nickname = Wolfpack
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Name the left of the Lady Pilots. ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Men’s Nickname', 'Women’s Nickname', 'Founded', 'Type', 'Enrollment', 'Joined', 'Left', 'Current Conference', 'Classification'] ### Response: SELECT Left FROM table WHERE Women’s Nickname = Lady Pilots
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Name the women's nickname when the enrollment is 1500 in mobile, Alabama. ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Men’s Nickname', 'Women’s Nickname', 'Founded', 'Type', 'Enrollment', 'Joined', 'Left', 'Current Conference', 'Classification'] ### Response: SELECT Women’s Nickname FROM table WHERE Enrollment = 1500 AND Location = Mobile, Alabama
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which conference is in Jackson, Mississippi? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Men’s Nickname', 'Women’s Nickname', 'Founded', 'Type', 'Enrollment', 'Joined', 'Left', 'Current Conference', 'Classification'] ### Response: SELECT Current Conference FROM table WHERE Location = Jackson, Mississippi
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the men's nickname at the school that has the lady wildcats women's nickname? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Men’s Nickname', 'Women’s Nickname', 'Founded', 'Type', 'Enrollment', 'Joined', 'Left', 'Current Conference', 'Classification'] ### Response: SELECT Men’s Nickname FROM table WHERE Women’s Nickname = Lady Wildcats
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the Mens Nickname for the member location of Jacksonville, florida? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Mens Nickname', 'Womens Nickname', 'Founded', 'Type', 'Enrollment', 'Joined'] ### Response: SELECT Mens Nickname FROM table WHERE Location = Jacksonville, Florida
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the enrollment for the institution that was founded in 1866 and is a private/(african methodist) type? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Mens Nickname', 'Womens Nickname', 'Founded', 'Type', 'Enrollment', 'Joined'] ### Response: SELECT MAX Enrollment FROM table WHERE Founded = 1866 AND Type = Private/(African Methodist)
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: That is the year founded for the institution location of Nashville, Tennessee? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Mens Nickname', 'Womens Nickname', 'Founded', 'Type', 'Enrollment', 'Joined'] ### Response: SELECT MIN Founded FROM table WHERE Location = Nashville, Tennessee
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the year the institution Tougaloo College joined? ### Inputs: table_name: table, columns: ['Institution', 'Location', 'Mens Nickname', 'Womens Nickname', 'Founded', 'Type', 'Enrollment', 'Joined'] ### Response: SELECT Joined FROM table WHERE Institution = Tougaloo College
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish? ### Inputs: table_name: table, columns: ['Team', 'Outgoing manager', 'Manner of departure', 'Date of vacancy', 'Replaced by', 'Date of appointment', 'Position in table'] ### Response: SELECT Date of vacancy FROM table WHERE Date of appointment = 28 November 2007 AND Replaced by = Alex McLeish
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the date of appointment when the date of vacancy is 21 december 2007? ### Inputs: table_name: table, columns: ['Team', 'Outgoing manager', 'Manner of departure', 'Date of vacancy', 'Replaced by', 'Date of appointment', 'Position in table'] ### Response: SELECT Date of appointment FROM table WHERE Date of vacancy = 21 December 2007
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who replaced when team is wigan athletic? ### Inputs: table_name: table, columns: ['Team', 'Outgoing manager', 'Manner of departure', 'Date of vacancy', 'Replaced by', 'Date of appointment', 'Position in table'] ### Response: SELECT Replaced by FROM table WHERE Team = Wigan Athletic
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the date of vacancy when the team is manchester city and replaced by is mark hughes? ### Inputs: table_name: table, columns: ['Team', 'Outgoing manager', 'Manner of departure', 'Date of vacancy', 'Replaced by', 'Date of appointment', 'Position in table'] ### Response: SELECT Date of vacancy FROM table WHERE Team = Manchester City AND Replaced by = Mark Hughes
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the date of appointment when replaced by is roy hodgson? ### Inputs: table_name: table, columns: ['Team', 'Outgoing manager', 'Manner of departure', 'Date of vacancy', 'Replaced by', 'Date of appointment', 'Position in table'] ### Response: SELECT Date of appointment FROM table WHERE Replaced by = Roy Hodgson
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who replaced when position in table is pre-season? ### Inputs: table_name: table, columns: ['Team', 'Outgoing manager', 'Manner of departure', 'Date of vacancy', 'Replaced by', 'Date of appointment', 'Position in table'] ### Response: SELECT Replaced by FROM table WHERE Position in table = Pre-season
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many games had a score value of 813.5 in post-season play? ### Inputs: table_name: table, columns: ['Rank', 'Member Association', 'Points', 'Group stage', 'Play-off', 'AFC Cup'] ### Response: SELECT COUNT Play-off FROM table WHERE Points = 813.5
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Did any team score games that totaled up to 860.5? ### Inputs: table_name: table, columns: ['Rank', 'Member Association', 'Points', 'Group stage', 'Play-off', 'AFC Cup'] ### Response: SELECT Play-off FROM table WHERE Points = 860.5
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What was the score of the game when the team reached a record of 6-9? ### Inputs: table_name: table, columns: ['Date', 'Opponent', 'Home / Away', 'Score', 'High points', 'High rebounds', 'High assists', 'Location/Attendance', 'Record'] ### Response: SELECT Score FROM table WHERE Record = 6-9
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What type institution is point park university ### Inputs: table_name: table, columns: ['Institution', 'Nickname', 'Location', 'Founded', 'Type', 'Enrollment'] ### Response: SELECT Type FROM table WHERE Institution = Point Park University
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many institutions are located in wilmore, kentucky and private ### Inputs: table_name: table, columns: ['Institution', 'Nickname', 'Location', 'Founded', 'Type', 'Enrollment'] ### Response: SELECT MAX Founded FROM table WHERE Type = Private AND Location = Wilmore, Kentucky
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: point park university is what type of institution ### Inputs: table_name: table, columns: ['Institution', 'Nickname', 'Location', 'Founded', 'Type', 'Enrollment'] ### Response: SELECT Type FROM table WHERE Institution = Point Park University
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: how many founded dates are listed for carlow university 1 ### Inputs: table_name: table, columns: ['Institution', 'Nickname', 'Location', 'Founded', 'Type', 'Enrollment'] ### Response: SELECT COUNT Founded FROM table WHERE Institution = Carlow University 1
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who wrote the episode titled "black"? ### Inputs: table_name: table, columns: ['No. in series', 'No. in season', 'Title', 'Directed by', 'Written by', 'Original air date'] ### Response: SELECT Written by FROM table WHERE Title = "Black"
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Who are the writers for the episode "solo"? ### Inputs: table_name: table, columns: ['No. in series', 'No. in season', 'Title', 'Directed by', 'Written by', 'Original air date'] ### Response: SELECT Written by FROM table WHERE Title = "Solo"
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what is the original air date of the episode no in season 9? ### Inputs: table_name: table, columns: ['No. in series', 'No. in season', 'Title', 'Directed by', 'Written by', 'Original air date'] ### Response: SELECT Original air date FROM table WHERE No. in season = 9
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the title of the episode written by denis leary, peter tolan and evan reilly? ### Inputs: table_name: table, columns: ['No. in series', 'No. in season', 'Title', 'Directed by', 'Written by', 'Original air date'] ### Response: SELECT Title FROM table WHERE Written by = Denis Leary, Peter Tolan and Evan Reilly
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many episodes were titles "voicemail"? ### Inputs: table_name: table, columns: ['No. in series', 'No. in season', 'Title', 'Directed by', 'Written by', 'Original air date'] ### Response: SELECT COUNT Directed by FROM table WHERE Title = "Voicemail"
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: When was Kamba active? ### Inputs: table_name: table, columns: ['Name', 'Dates active', 'Peak classification', 'Windspeeds', 'Pressure', 'Areas affected', 'Damage (USD)', 'Deaths', 'Refs'] ### Response: SELECT Dates active FROM table WHERE Name = Kamba
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)? ### Inputs: table_name: table, columns: ['Name', 'Dates active', 'Peak classification', 'Windspeeds', 'Pressure', 'Areas affected', 'Damage (USD)', 'Deaths', 'Refs'] ### Response: SELECT Pressure FROM table WHERE Deaths = 95km/h (60mph)
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What were the active dates for the storm that had 185km/h (115mph) deaths? ### Inputs: table_name: table, columns: ['Name', 'Dates active', 'Peak classification', 'Windspeeds', 'Pressure', 'Areas affected', 'Damage (USD)', 'Deaths', 'Refs'] ### Response: SELECT Dates active FROM table WHERE Deaths = 185km/h (115mph)
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What was the damage (usd) from the cyclones that measured 1003hPa (29.62inHg) pressure? ### Inputs: table_name: table, columns: ['Name', 'Dates active', 'Peak classification', 'Windspeeds', 'Pressure', 'Areas affected', 'Damage (USD)', 'Deaths', 'Refs'] ### Response: SELECT Damage (USD) FROM table WHERE Pressure = 1003hPa (29.62inHg)
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what's the average where high score is 120 ### Inputs: table_name: table, columns: ['Player', 'Matches', 'Inns', 'N/O', 'Runs', 'High Score', 'Average', '100', '50', 'Catches', 'Stump'] ### Response: SELECT Average FROM table WHERE High Score = 120
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what's the player where 50 is 2 and n/o is 0 ### Inputs: table_name: table, columns: ['Player', 'Matches', 'Inns', 'N/O', 'Runs', 'High Score', 'Average', '100', '50', 'Catches', 'Stump'] ### Response: SELECT Player FROM table WHERE 50 = 2 AND N/O = 0
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what's the player where inns is 21 ### Inputs: table_name: table, columns: ['Player', 'Matches', 'Inns', 'N/O', 'Runs', 'High Score', 'Average', '100', '50', 'Catches', 'Stump'] ### Response: SELECT Player FROM table WHERE Inns = 21
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which general election had a pq majority and a 44.75% of the popular vote? ### Inputs: table_name: table, columns: ['General election', '# of candidates', '# of seats won', '% of popular vote', 'Result'] ### Response: SELECT General election FROM table WHERE Result = PQ majority AND % of popular vote = 44.75%
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the least number of candidates running were there when 80 seats were won? ### Inputs: table_name: table, columns: ['General election', '# of candidates', '# of seats won', '% of popular vote', 'Result'] ### Response: SELECT MIN # of candidates FROM table WHERE # of seats won = 80
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many seats were won in the election with 125 candidates? ### Inputs: table_name: table, columns: ['General election', '# of candidates', '# of seats won', '% of popular vote', 'Result'] ### Response: SELECT COUNT # of seats won FROM table WHERE # of candidates = 125
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many weeks are there? ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Game site', 'Record', 'Attendance'] ### Response: SELECT MAX Week FROM table
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many people attended the game against the indianapolis colts? ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Game site', 'Record', 'Attendance'] ### Response: SELECT COUNT Attendance FROM table WHERE Opponent = Indianapolis Colts
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: On december 16, 1985, all the records were what? ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Game site', 'Record', 'Attendance'] ### Response: SELECT Record FROM table WHERE Date = December 16, 1985
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many results are there for the 0-4 record? ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT COUNT Result FROM table WHERE Record = 0-4
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many weeks are there that include the date October 11, 1969. ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT COUNT Week FROM table WHERE Date = October 11, 1969
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many weeks are there that include the date November 9, 1969. ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT COUNT Week FROM table WHERE Date = November 9, 1969
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How many records are there at the War Memorial Stadium? ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT COUNT Record FROM table WHERE Stadium = War Memorial Stadium
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What was the minimum attendance on December 7, 1969? ### Inputs: table_name: table, columns: ['Week', 'Date', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT MIN Attendance FROM table WHERE Date = December 7, 1969
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What week corresponds to the last one to be played at the memorial stadium? ### Inputs: table_name: table, columns: ['Week', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT MAX Week FROM table WHERE Stadium = Memorial Stadium
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: In which stadium is the week 5 game played? ### Inputs: table_name: table, columns: ['Week', 'Opponent', 'Result', 'Stadium', 'Record', 'Attendance'] ### Response: SELECT Stadium FROM table WHERE Week = 5
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: In Penney's game what is the probability where the 1st player wins if the probability of a draw is 8.28% and the 2nd player chooses B BR? ### Inputs: table_name: table, columns: ['1st players choice', '2nd players choice', 'Probability 1st player wins', 'Probability 2nd player wins', 'Probability of a draw'] ### Response: SELECT Probability 1st player wins FROM table WHERE Probability of a draw = 8.28% AND 2nd players choice = B BR
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: If the first player chooses RB B, what is the second player's choices? ### Inputs: table_name: table, columns: ['1st players choice', '2nd players choice', 'Probability 1st player wins', 'Probability 2nd player wins', 'Probability of a draw'] ### Response: SELECT 2nd players choice FROM table WHERE 1st players choice = RB B
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the probability where the second player wins where their choice is R RB and the first player has a 5.18% chance of winning? ### Inputs: table_name: table, columns: ['1st players choice', '2nd players choice', 'Probability 1st player wins', 'Probability 2nd player wins', 'Probability of a draw'] ### Response: SELECT Probability 2nd player wins FROM table WHERE 2nd players choice = R RB AND Probability 1st player wins = 5.18%
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What are the chances the first player will win if the 2nd player has an 80.11% chance of winning with the choice of R RB? ### Inputs: table_name: table, columns: ['1st players choice', '2nd players choice', 'Probability 1st player wins', 'Probability 2nd player wins', 'Probability of a draw'] ### Response: SELECT Probability 1st player wins FROM table WHERE Probability 2nd player wins = 80.11% AND 2nd players choice = R RB
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What are the chances that player 2 wins if player 1's choice is BB R? ### Inputs: table_name: table, columns: ['1st players choice', '2nd players choice', 'Probability 1st player wins', 'Probability 2nd player wins', 'Probability of a draw'] ### Response: SELECT Probability 2nd player wins FROM table WHERE 1st players choice = BB R
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: How high is the chance that player 1 wins if player 2 has an 88.29% chance of winning with the choice of R RB? ### Inputs: table_name: table, columns: ['1st players choice', '2nd players choice', 'Probability 1st player wins', 'Probability 2nd player wins', 'Probability of a draw'] ### Response: SELECT Probability 1st player wins FROM table WHERE Probability 2nd player wins = 88.29% AND 2nd players choice = R RB
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what is the nfl team where player is thane gash ### Inputs: table_name: table, columns: ['Pick #', 'NFL Team', 'Player', 'Position', 'College'] ### Response: SELECT NFL Team FROM table WHERE Player = Thane Gash
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what is the maximum pick # where player is anthony blaylock ### Inputs: table_name: table, columns: ['Pick #', 'NFL Team', 'Player', 'Position', 'College'] ### Response: SELECT MAX Pick # FROM table WHERE Player = Anthony Blaylock
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what's the nfl team where player is clifford charlton ### Inputs: table_name: table, columns: ['Pick #', 'NFL Team', 'Player', 'Position', 'College'] ### Response: SELECT NFL Team FROM table WHERE Player = Clifford Charlton
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what's the position where player is anthony blaylock ### Inputs: table_name: table, columns: ['Pick #', 'NFL Team', 'Player', 'Position', 'College'] ### Response: SELECT Position FROM table WHERE Player = Anthony Blaylock
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: what is the minimum pick # where position is defensive tackle ### Inputs: table_name: table, columns: ['Pick #', 'NFL Team', 'Player', 'Position', 'College'] ### Response: SELECT MIN Pick # FROM table WHERE Position = Defensive Tackle
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Which province has a density of 971.4? ### Inputs: table_name: table, columns: ['Province', 'Population (2004 estimate)', 'Area (km²)', 'Density', 'GDP (2003, PPS in mil. € )', 'GDP per cap. (2003, in €)'] ### Response: SELECT Province FROM table WHERE Density = 971.4
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is Friesland's gdp per capita? ### Inputs: table_name: table, columns: ['Province', 'Population (2004 estimate)', 'Area (km²)', 'Density', 'GDP (2003, PPS in mil. € )', 'GDP per cap. (2003, in €)'] ### Response: SELECT MIN GDP per cap. (2003, in €) FROM table WHERE Province = Friesland
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: What is the area of the place that has a population density of 331.4? ### Inputs: table_name: table, columns: ['Province', 'Population (2004 estimate)', 'Area (km²)', 'Density', 'GDP (2003, PPS in mil. € )', 'GDP per cap. (2003, in €)'] ### Response: SELECT MAX Area (km²) FROM table WHERE Density = 331.4