Dataset Viewer
Auto-converted to Parquet
instruction
stringlengths
0
990
input
stringlengths
33
7.14k
response
stringlengths
2
3.43k
source
stringclasses
25 values
text
stringlengths
309
7.74k
What district is the court located in Tolland?
CREATE TABLE table_29003 ( "District" real, "Municipalities served" text, "Judge of probate" text, "Judges residence" text, "Location of court" text )
SELECT MAX("District") FROM table_29003 WHERE "Location of court" = 'Tolland'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What district is the court located in Tolland? ### Input: CREATE TABLE table_29003 ( "District" real, "Municipalities served" text, "Judge of probate" text, "Judges residence" text, "Location of court" text ) ### Response: SELECT MAX("District") FROM table_29003 WHERE "Location of court" = 'Tolland'
What is Teleplay, when Director is 'George McCowan', when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981?
CREATE TABLE table_48778 ( "Title" text, "Season" real, "Director" text, "Teleplay" text, "First Broadcast" text )
SELECT "Teleplay" FROM table_48778 WHERE "Director" = 'george mccowan' AND "Season" < '1.1400000000000001' AND "First Broadcast" = 'april 3, 1981'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is Teleplay, when Director is 'George McCowan', when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981? ### Input: CREATE TABLE table_48778 ( "Title" text, "Season" real, "Director" text, "Teleplay" text, "First Broadcast" text ) ### Response: SELECT "Teleplay" FROM table_48778 WHERE "Director" = 'george mccowan' AND "Season" < '1.1400000000000001' AND "First Broadcast" = 'april 3, 1981'
Name the surface when the partner is carlos berlocq
CREATE TABLE table_51313 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Partner" text, "Opponents" text, "Score" text )
SELECT "Surface" FROM table_51313 WHERE "Partner" = 'carlos berlocq'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the surface when the partner is carlos berlocq ### Input: CREATE TABLE table_51313 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Partner" text, "Opponents" text, "Score" text ) ### Response: SELECT "Surface" FROM table_51313 WHERE "Partner" = 'carlos berlocq'
Which teams used Wally Rogers as their crew chief?
CREATE TABLE table_541 ( "Team" text, "Car(s)" text, "#" real, "Driver(s)" text, "Primary Sponsor(s)" text, "Owner(s)" text, "Crew Chief" text, "Rounds" real )
SELECT "Team" FROM table_541 WHERE "Crew Chief" = 'Wally Rogers'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which teams used Wally Rogers as their crew chief? ### Input: CREATE TABLE table_541 ( "Team" text, "Car(s)" text, "#" real, "Driver(s)" text, "Primary Sponsor(s)" text, "Owner(s)" text, "Crew Chief" text, "Rounds" real ) ### Response: SELECT "Team" FROM table_541 WHERE "Crew Chief" = 'Wally Rogers'
What is the period for Ben Eager?
CREATE TABLE table_65205 ( "Period" text, "Team" text, "Player" text, "Penalty" text, "Time" text )
SELECT "Period" FROM table_65205 WHERE "Player" = 'ben eager'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the period for Ben Eager? ### Input: CREATE TABLE table_65205 ( "Period" text, "Team" text, "Player" text, "Penalty" text, "Time" text ) ### Response: SELECT "Period" FROM table_65205 WHERE "Player" = 'ben eager'
What is the record with a 3:56 time?
CREATE TABLE table_44578 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text )
SELECT "Record" FROM table_44578 WHERE "Time" = '3:56'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the record with a 3:56 time? ### Input: CREATE TABLE table_44578 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text ) ### Response: SELECT "Record" FROM table_44578 WHERE "Time" = '3:56'
Tell me the title for pages of 96
CREATE TABLE table_32055 ( "Title" text, "Year" real, "ISBN" text, "Volume" text, "Strips" text, "Pages" real, "Colors" text )
SELECT "Title" FROM table_32055 WHERE "Pages" = '96'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Tell me the title for pages of 96 ### Input: CREATE TABLE table_32055 ( "Title" text, "Year" real, "ISBN" text, "Volume" text, "Strips" text, "Pages" real, "Colors" text ) ### Response: SELECT "Title" FROM table_32055 WHERE "Pages" = '96'
When 24:31 is the run time how many measurements of viewers (in millions) are there?
CREATE TABLE table_2409 ( "Episode" text, "Broadcast date" text, "Run time" text, "Viewers (in millions)" text, "Archive" text )
SELECT COUNT("Viewers (in millions)") FROM table_2409 WHERE "Run time" = '24:31'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When 24:31 is the run time how many measurements of viewers (in millions) are there? ### Input: CREATE TABLE table_2409 ( "Episode" text, "Broadcast date" text, "Run time" text, "Viewers (in millions)" text, "Archive" text ) ### Response: SELECT COUNT("Viewers (in millions)") FROM table_2409 WHERE "Run time" = '24:31'
Name the location attendance for 4 game
CREATE TABLE table_25855 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Series" text )
SELECT "Location Attendance" FROM table_25855 WHERE "Game" = '4'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the location attendance for 4 game ### Input: CREATE TABLE table_25855 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Series" text ) ### Response: SELECT "Location Attendance" FROM table_25855 WHERE "Game" = '4'
Which score has a Date of august 17?
CREATE TABLE table_67547 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Record" text )
SELECT "Score" FROM table_67547 WHERE "Date" = 'august 17'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which score has a Date of august 17? ### Input: CREATE TABLE table_67547 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Record" text ) ### Response: SELECT "Score" FROM table_67547 WHERE "Date" = 'august 17'
What is the location when the new york jets lost earlier than 1997 and a Result of 31 28?
CREATE TABLE table_74997 ( "Year" real, "Date" text, "Winner" text, "Result" text, "Loser" text, "Location" text )
SELECT "Location" FROM table_74997 WHERE "Loser" = 'new york jets' AND "Year" < '1997' AND "Result" = '31–28'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the location when the new york jets lost earlier than 1997 and a Result of 31 28? ### Input: CREATE TABLE table_74997 ( "Year" real, "Date" text, "Winner" text, "Result" text, "Loser" text, "Location" text ) ### Response: SELECT "Location" FROM table_74997 WHERE "Loser" = 'new york jets' AND "Year" < '1997' AND "Result" = '31–28'
Which was the home team that had an opponent have a score of 11.6 (72)?
CREATE TABLE table_54509 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team score" FROM table_54509 WHERE "Away team score" = '11.6 (72)'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which was the home team that had an opponent have a score of 11.6 (72)? ### Input: CREATE TABLE table_54509 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text ) ### Response: SELECT "Home team score" FROM table_54509 WHERE "Away team score" = '11.6 (72)'
what season had a score of 1:0
CREATE TABLE table_34037 ( "Season" text, "Home" text, "Score" text, "Away" text, "Date" text )
SELECT "Season" FROM table_34037 WHERE "Score" = '1:0'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what season had a score of 1:0 ### Input: CREATE TABLE table_34037 ( "Season" text, "Home" text, "Score" text, "Away" text, "Date" text ) ### Response: SELECT "Season" FROM table_34037 WHERE "Score" = '1:0'
How many wins did the player have in the Formula BMW World Final?
CREATE TABLE table_21430 ( "Season" real, "Series" text, "Team" text, "Races" real, "Wins" real, "Poles" real, "FLaps" real, "Podiums" real, "Points" real, "Position" text )
SELECT "Wins" FROM table_21430 WHERE "Series" = 'Formula BMW World Final'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many wins did the player have in the Formula BMW World Final? ### Input: CREATE TABLE table_21430 ( "Season" real, "Series" text, "Team" text, "Races" real, "Wins" real, "Poles" real, "FLaps" real, "Podiums" real, "Points" real, "Position" text ) ### Response: SELECT "Wins" FROM table_21430 WHERE "Series" = 'Formula BMW World Final'
Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152?
CREATE TABLE table_59092 ( "Player" text, "Country" text, "Year(s) Won" text, "Total" real, "To par" real )
SELECT "Year(s) Won" FROM table_59092 WHERE "Country" = 'united states' AND "Total" > '152'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152? ### Input: CREATE TABLE table_59092 ( "Player" text, "Country" text, "Year(s) Won" text, "Total" real, "To par" real ) ### Response: SELECT "Year(s) Won" FROM table_59092 WHERE "Country" = 'united states' AND "Total" > '152'
What draft pick number was Andy Brereton?
CREATE TABLE table_30259 ( "Pick #" real, "CFL Team" text, "Player" text, "Position" text, "College" text )
SELECT MIN("Pick #") FROM table_30259 WHERE "Player" = 'Andy Brereton'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What draft pick number was Andy Brereton? ### Input: CREATE TABLE table_30259 ( "Pick #" real, "CFL Team" text, "Player" text, "Position" text, "College" text ) ### Response: SELECT MIN("Pick #") FROM table_30259 WHERE "Player" = 'Andy Brereton'
Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?
CREATE TABLE table_32158 ( "Year" real, "Competition" text, "Venue" text, "Position" text, "Notes" text )
SELECT "Venue" FROM table_32158 WHERE "Year" > '2006' AND "Notes" = '3000 m s''chase' AND "Position" = '2nd' AND "Competition" = 'african championships'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes? ### Input: CREATE TABLE table_32158 ( "Year" real, "Competition" text, "Venue" text, "Position" text, "Notes" text ) ### Response: SELECT "Venue" FROM table_32158 WHERE "Year" > '2006' AND "Notes" = '3000 m s''chase' AND "Position" = '2nd' AND "Competition" = 'african championships'
In the circuit of Madonie, what was the date that had the winning constructor Bugatti?
CREATE TABLE table_15138 ( "Name" text, "Circuit" text, "Date" text, "Winning driver" text, "Winning constructor" text, "Report" text )
SELECT "Date" FROM table_15138 WHERE "Circuit" = 'madonie' AND "Winning constructor" = 'bugatti'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In the circuit of Madonie, what was the date that had the winning constructor Bugatti? ### Input: CREATE TABLE table_15138 ( "Name" text, "Circuit" text, "Date" text, "Winning driver" text, "Winning constructor" text, "Report" text ) ### Response: SELECT "Date" FROM table_15138 WHERE "Circuit" = 'madonie' AND "Winning constructor" = 'bugatti'
When was the score 5-31?
CREATE TABLE table_39306 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Date" FROM table_39306 WHERE "Record" = '5-31'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When was the score 5-31? ### Input: CREATE TABLE table_39306 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text ) ### Response: SELECT "Date" FROM table_39306 WHERE "Record" = '5-31'
What Circuit has a Date of 25 july?
CREATE TABLE table_79039 ( "Name" text, "Circuit" text, "Date" text, "Winning driver" text, "Winning constructor" text, "Report" text )
SELECT "Circuit" FROM table_79039 WHERE "Date" = '25 july'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What Circuit has a Date of 25 july? ### Input: CREATE TABLE table_79039 ( "Name" text, "Circuit" text, "Date" text, "Winning driver" text, "Winning constructor" text, "Report" text ) ### Response: SELECT "Circuit" FROM table_79039 WHERE "Date" = '25 july'
Which school has a decile of 8 and a roll of 705?
CREATE TABLE table_15244 ( "Name" text, "Years" text, "Area" text, "Authority" text, "Decile" real, "Roll" real )
SELECT "Name" FROM table_15244 WHERE "Decile" = '8' AND "Roll" = '705'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which school has a decile of 8 and a roll of 705? ### Input: CREATE TABLE table_15244 ( "Name" text, "Years" text, "Area" text, "Authority" text, "Decile" real, "Roll" real ) ### Response: SELECT "Name" FROM table_15244 WHERE "Decile" = '8' AND "Roll" = '705'
where was the total attendance-regular season record made
CREATE TABLE table_24352 ( "Type of Record" text, "Attendance" real, "Date/Year" text, "Stadium" text, "Result/Games" text )
SELECT "Stadium" FROM table_24352 WHERE "Type of Record" = 'Total Attendance-Regular season'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: where was the total attendance-regular season record made ### Input: CREATE TABLE table_24352 ( "Type of Record" text, "Attendance" real, "Date/Year" text, "Stadium" text, "Result/Games" text ) ### Response: SELECT "Stadium" FROM table_24352 WHERE "Type of Record" = 'Total Attendance-Regular season'
What club received a DF player for free?
CREATE TABLE table_49988 ( "Exit Date" text, "Pos." text, "Player" text, "To club" text, "Transfer fee" text )
SELECT "To club" FROM table_49988 WHERE "Transfer fee" = 'free' AND "Pos." = 'df'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What club received a DF player for free? ### Input: CREATE TABLE table_49988 ( "Exit Date" text, "Pos." text, "Player" text, "To club" text, "Transfer fee" text ) ### Response: SELECT "To club" FROM table_49988 WHERE "Transfer fee" = 'free' AND "Pos." = 'df'
What's the result for the category of best actor in a supporting role?
CREATE TABLE table_50066 ( "Year" real, "Award giving body" text, "Category" text, "Nominated for" text, "Result" text )
SELECT "Result" FROM table_50066 WHERE "Category" = 'best actor in a supporting role'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the result for the category of best actor in a supporting role? ### Input: CREATE TABLE table_50066 ( "Year" real, "Award giving body" text, "Category" text, "Nominated for" text, "Result" text ) ### Response: SELECT "Result" FROM table_50066 WHERE "Category" = 'best actor in a supporting role'
Which Opposing Team has a Venue of rectory ground, devonport?
CREATE TABLE table_65120 ( "Opposing Team" text, "Against" real, "Date" text, "Venue" text, "Status" text )
SELECT "Opposing Team" FROM table_65120 WHERE "Venue" = 'rectory ground, devonport'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Opposing Team has a Venue of rectory ground, devonport? ### Input: CREATE TABLE table_65120 ( "Opposing Team" text, "Against" real, "Date" text, "Venue" text, "Status" text ) ### Response: SELECT "Opposing Team" FROM table_65120 WHERE "Venue" = 'rectory ground, devonport'
What is Date, when Outcome is 'Winner', and when Surface is 'Grass'?
CREATE TABLE table_50596 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Opponent in the final" text, "Score in the final" text )
SELECT "Date" FROM table_50596 WHERE "Outcome" = 'winner' AND "Surface" = 'grass'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is Date, when Outcome is 'Winner', and when Surface is 'Grass'? ### Input: CREATE TABLE table_50596 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Opponent in the final" text, "Score in the final" text ) ### Response: SELECT "Date" FROM table_50596 WHERE "Outcome" = 'winner' AND "Surface" = 'grass'
How many seats does the BTC-5 model have?
CREATE TABLE table_79959 ( "Year built" text, "Builder" text, "Model" text, "Fleet ID" text, "Seats" real )
SELECT SUM("Seats") FROM table_79959 WHERE "Model" = 'btc-5'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many seats does the BTC-5 model have? ### Input: CREATE TABLE table_79959 ( "Year built" text, "Builder" text, "Model" text, "Fleet ID" text, "Seats" real ) ### Response: SELECT SUM("Seats") FROM table_79959 WHERE "Model" = 'btc-5'
What rocket has a Block of block i and a COSPAR ID of 1995-060a?
CREATE TABLE table_57477 ( "Name" text, "Block" text, "Launch date/time (UTC)" text, "COSPAR ID" text, "Rocket" text )
SELECT "Rocket" FROM table_57477 WHERE "Block" = 'block i' AND "COSPAR ID" = '1995-060a'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What rocket has a Block of block i and a COSPAR ID of 1995-060a? ### Input: CREATE TABLE table_57477 ( "Name" text, "Block" text, "Launch date/time (UTC)" text, "COSPAR ID" text, "Rocket" text ) ### Response: SELECT "Rocket" FROM table_57477 WHERE "Block" = 'block i' AND "COSPAR ID" = '1995-060a'
What was the date for the G1 group race at Flemington?
CREATE TABLE table_6401 ( "Result" text, "Date" text, "Race" text, "Venue" text, "Group" text, "Distance" text, "Weight (kg)" real, "Time" text, "Jockey" text, "Winner/2nd" text )
SELECT "Date" FROM table_6401 WHERE "Group" = 'g1' AND "Venue" = 'flemington'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the date for the G1 group race at Flemington? ### Input: CREATE TABLE table_6401 ( "Result" text, "Date" text, "Race" text, "Venue" text, "Group" text, "Distance" text, "Weight (kg)" real, "Time" text, "Jockey" text, "Winner/2nd" text ) ### Response: SELECT "Date" FROM table_6401 WHERE "Group" = 'g1' AND "Venue" = 'flemington'
what is the minimum average with highest being 2363
CREATE TABLE table_902 ( "Team" text, "Stadium" text, "Capacity" real, "Highest" real, "Lowest" real, "Average" real )
SELECT MIN("Average") FROM table_902 WHERE "Highest" = '2363'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the minimum average with highest being 2363 ### Input: CREATE TABLE table_902 ( "Team" text, "Stadium" text, "Capacity" real, "Highest" real, "Lowest" real, "Average" real ) ### Response: SELECT MIN("Average") FROM table_902 WHERE "Highest" = '2363'
What is the figure for December 25 for the film that totalled p15.3 million for December 25-28 total?
CREATE TABLE table_31003 ( "Movies" text, "December 25" text, "December 26" text, "December 27" text, "December 28" text, "December 25-28 total" text, "Total 2-week Gross" text )
SELECT "December 25" FROM table_31003 WHERE "December 25-28 total" = 'P15.3 million'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the figure for December 25 for the film that totalled p15.3 million for December 25-28 total? ### Input: CREATE TABLE table_31003 ( "Movies" text, "December 25" text, "December 26" text, "December 27" text, "December 28" text, "December 25-28 total" text, "Total 2-week Gross" text ) ### Response: SELECT "December 25" FROM table_31003 WHERE "December 25-28 total" = 'P15.3 million'
Which Shooting Score (pts) has a Total larger than 5464 and a Athlete of heather fell ( gbr )?
CREATE TABLE table_65456 ( "Athlete" text, "Shooting Score (pts)" text, "Fencing Victories (pts)" text, "Swimming Time (pts)" text, "Equestrian Time (pts)" text, "Running Time (pts)" text, "Total" real )
SELECT "Shooting Score (pts)" FROM table_65456 WHERE "Total" > '5464' AND "Athlete" = 'heather fell ( gbr )'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Shooting Score (pts) has a Total larger than 5464 and a Athlete of heather fell ( gbr )? ### Input: CREATE TABLE table_65456 ( "Athlete" text, "Shooting Score (pts)" text, "Fencing Victories (pts)" text, "Swimming Time (pts)" text, "Equestrian Time (pts)" text, "Running Time (pts)" text, "Total" real ) ### Response: SELECT "Shooting Score (pts)" FROM table_65456 WHERE "Total" > '5464' AND "Athlete" = 'heather fell ( gbr )'
Which player has 2 tries and 0 drops?
CREATE TABLE table_52573 ( "Player" text, "Tries" text, "Conv" text, "Pens" text, "Drop" text, "Venue" text, "Date" text )
SELECT "Player" FROM table_52573 WHERE "Drop" = '0' AND "Tries" = '2'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which player has 2 tries and 0 drops? ### Input: CREATE TABLE table_52573 ( "Player" text, "Tries" text, "Conv" text, "Pens" text, "Drop" text, "Venue" text, "Date" text ) ### Response: SELECT "Player" FROM table_52573 WHERE "Drop" = '0' AND "Tries" = '2'
What is the result when the time is 1:13?
CREATE TABLE table_32296 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text )
SELECT "Res." FROM table_32296 WHERE "Time" = '1:13'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the result when the time is 1:13? ### Input: CREATE TABLE table_32296 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text ) ### Response: SELECT "Res." FROM table_32296 WHERE "Time" = '1:13'
Which Years in Orlando has a Nationality of united states, and a Player of doug overton?
CREATE TABLE table_39895 ( "Player" text, "Nationality" text, "Position" text, "Years in Orlando" text, "School/Club Team" text )
SELECT "Years in Orlando" FROM table_39895 WHERE "Nationality" = 'united states' AND "Player" = 'doug overton'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Years in Orlando has a Nationality of united states, and a Player of doug overton? ### Input: CREATE TABLE table_39895 ( "Player" text, "Nationality" text, "Position" text, "Years in Orlando" text, "School/Club Team" text ) ### Response: SELECT "Years in Orlando" FROM table_39895 WHERE "Nationality" = 'united states' AND "Player" = 'doug overton'
What does American have if Australia has ?
CREATE TABLE table_61411 ( "Letter" text, "American" text, "British" text, "Australian" text, "Examples" text )
SELECT "American" FROM table_61411 WHERE "Australian" = 'əʉ'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What does American have if Australia has ? ### Input: CREATE TABLE table_61411 ( "Letter" text, "American" text, "British" text, "Australian" text, "Examples" text ) ### Response: SELECT "American" FROM table_61411 WHERE "Australian" = 'əʉ'
How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113?
CREATE TABLE table_31526 ( "Economy" text, "1980" real, "Gap from Thailand as of 1980 (times)" text, "1985" real, "1990" real, "1995" real, "2000" real, "2005" real, "2010" real, "2012" real, "Gap from Thailand as of 2012 (times)" text, "GDP as of 2012 after purchasing power parity (PPP) calculations (USD billions)" text, "GDP per capita as of 2012 (PPP)" real )
SELECT COUNT("GDP as of 2012 after purchasing power parity (PPP) calculations (USD billions)") FROM table_31526 WHERE "2012" = '23113'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113? ### Input: CREATE TABLE table_31526 ( "Economy" text, "1980" real, "Gap from Thailand as of 1980 (times)" text, "1985" real, "1990" real, "1995" real, "2000" real, "2005" real, "2010" real, "2012" real, "Gap from Thailand as of 2012 (times)" text, "GDP as of 2012 after purchasing power parity (PPP) calculations (USD billions)" text, "GDP per capita as of 2012 (PPP)" real ) ### Response: SELECT COUNT("GDP as of 2012 after purchasing power parity (PPP) calculations (USD billions)") FROM table_31526 WHERE "2012" = '23113'
What is the time of the match with 3 rounds and a 9-3 record?
CREATE TABLE table_46477 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text )
SELECT "Time" FROM table_46477 WHERE "Round" = '3' AND "Record" = '9-3'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the time of the match with 3 rounds and a 9-3 record? ### Input: CREATE TABLE table_46477 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text ) ### Response: SELECT "Time" FROM table_46477 WHERE "Round" = '3' AND "Record" = '9-3'
What is the name of the competition that was held on August 20, 2004?
CREATE TABLE table_14486 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text )
SELECT "Competition" FROM table_14486 WHERE "Date" = 'august 20, 2004'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the name of the competition that was held on August 20, 2004? ### Input: CREATE TABLE table_14486 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text ) ### Response: SELECT "Competition" FROM table_14486 WHERE "Date" = 'august 20, 2004'
What is the date for the game where Platense was the home side?
CREATE TABLE table_8194 ( "Date" text, "Home" text, "Score" text, "Away" text, "Attendance" real )
SELECT "Date" FROM table_8194 WHERE "Home" = 'platense'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the date for the game where Platense was the home side? ### Input: CREATE TABLE table_8194 ( "Date" text, "Home" text, "Score" text, "Away" text, "Attendance" real ) ### Response: SELECT "Date" FROM table_8194 WHERE "Home" = 'platense'
What years does Our Lady Sacred Heart School, which is state integrated, have?
CREATE TABLE table_10899 ( "Name" text, "Years" text, "Gender" text, "Area" text, "Authority" text, "Decile" real, "Roll" real )
SELECT "Years" FROM table_10899 WHERE "Authority" = 'state integrated' AND "Name" = 'our lady sacred heart school'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What years does Our Lady Sacred Heart School, which is state integrated, have? ### Input: CREATE TABLE table_10899 ( "Name" text, "Years" text, "Gender" text, "Area" text, "Authority" text, "Decile" real, "Roll" real ) ### Response: SELECT "Years" FROM table_10899 WHERE "Authority" = 'state integrated' AND "Name" = 'our lady sacred heart school'
How much money was there when the to par was 15?
CREATE TABLE table_62090 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" real, "Money ( $ )" real )
SELECT SUM("Money ( $ )") FROM table_62090 WHERE "To par" = '15'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How much money was there when the to par was 15? ### Input: CREATE TABLE table_62090 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" real, "Money ( $ )" real ) ### Response: SELECT SUM("Money ( $ )") FROM table_62090 WHERE "To par" = '15'
Name the Away team which have a Ground of colonial stadium on friday, 2 march?
CREATE TABLE table_45240 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Ground" text, "Date" text, "Crowd" real )
SELECT "Away team" FROM table_45240 WHERE "Ground" = 'colonial stadium' AND "Date" = 'friday, 2 march'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the Away team which have a Ground of colonial stadium on friday, 2 march? ### Input: CREATE TABLE table_45240 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Ground" text, "Date" text, "Crowd" real ) ### Response: SELECT "Away team" FROM table_45240 WHERE "Ground" = 'colonial stadium' AND "Date" = 'friday, 2 march'
What was the original air date of 'kiss the girls and make them die'?
CREATE TABLE table_28366 ( "No. in series" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real )
SELECT "Original air date" FROM table_28366 WHERE "Title" = 'Kiss the Girls and Make Them Die'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the original air date of 'kiss the girls and make them die'? ### Input: CREATE TABLE table_28366 ( "No. in series" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real ) ### Response: SELECT "Original air date" FROM table_28366 WHERE "Title" = 'Kiss the Girls and Make Them Die'
What time was achieved on Saturday 29th August by the rider who recorded 23' 18.82 97.102mph on Tuesday 25th August?
CREATE TABLE table_26084 ( "Rank" real, "Rider" text, "Mon 24 Aug" text, "Tues 25 Aug" text, "Wed 26 Aug" text, "Thurs 27 Aug" text, "Fri 28 Aug" text, "Sat 29 Aug" text )
SELECT "Sat 29 Aug" FROM table_26084 WHERE "Tues 25 Aug" = '23'' 18.82 97.102mph'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What time was achieved on Saturday 29th August by the rider who recorded 23' 18.82 97.102mph on Tuesday 25th August? ### Input: CREATE TABLE table_26084 ( "Rank" real, "Rider" text, "Mon 24 Aug" text, "Tues 25 Aug" text, "Wed 26 Aug" text, "Thurs 27 Aug" text, "Fri 28 Aug" text, "Sat 29 Aug" text ) ### Response: SELECT "Sat 29 Aug" FROM table_26084 WHERE "Tues 25 Aug" = '23'' 18.82 97.102mph'
What is the total number of ends won when the locale is Northwest Territories Yukon?
CREATE TABLE table_72478 ( "Locale" text, "Skip" text, "W" real, "L" real, "PF" real, "PA" real, "Ends Won" real, "Ends Lost" real, "Blank Ends" real, "Stolen Ends" real, "Shot Pct." real )
SELECT COUNT("Ends Won") FROM table_72478 WHERE "Locale" = 'Northwest Territories Yukon'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the total number of ends won when the locale is Northwest Territories Yukon? ### Input: CREATE TABLE table_72478 ( "Locale" text, "Skip" text, "W" real, "L" real, "PF" real, "PA" real, "Ends Won" real, "Ends Lost" real, "Blank Ends" real, "Stolen Ends" real, "Shot Pct." real ) ### Response: SELECT COUNT("Ends Won") FROM table_72478 WHERE "Locale" = 'Northwest Territories Yukon'
What is Division One's total number of FL Cup Goals, with an Other Apps greater than 3, and a FA Cup Goals greater than 0?
CREATE TABLE table_52681 ( "Division" text, "League Apps (Sub)" real, "League Goals" real, "FA Cup Apps (Sub)" text, "FA Cup Goals" real, "FL Cup Apps (Sub)" real, "FL Cup Goals" real, "Other Apps" real, "Other Goals" real, "Total Apps (Sub)" text, "Total Goals" real )
SELECT COUNT("FL Cup Goals") FROM table_52681 WHERE "Division" = 'one' AND "Other Apps" > '3' AND "FA Cup Goals" > '0'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is Division One's total number of FL Cup Goals, with an Other Apps greater than 3, and a FA Cup Goals greater than 0? ### Input: CREATE TABLE table_52681 ( "Division" text, "League Apps (Sub)" real, "League Goals" real, "FA Cup Apps (Sub)" text, "FA Cup Goals" real, "FL Cup Apps (Sub)" real, "FL Cup Goals" real, "Other Apps" real, "Other Goals" real, "Total Apps (Sub)" text, "Total Goals" real ) ### Response: SELECT COUNT("FL Cup Goals") FROM table_52681 WHERE "Division" = 'one' AND "Other Apps" > '3' AND "FA Cup Goals" > '0'
What was the date that Elvir Krehmic made a high jump record?
CREATE TABLE table_38309 ( "Nation" text, "Height" text, "Athlete" text, "Venue" text, "Date" text )
SELECT "Date" FROM table_38309 WHERE "Athlete" = 'elvir krehmic'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the date that Elvir Krehmic made a high jump record? ### Input: CREATE TABLE table_38309 ( "Nation" text, "Height" text, "Athlete" text, "Venue" text, "Date" text ) ### Response: SELECT "Date" FROM table_38309 WHERE "Athlete" = 'elvir krehmic'
How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns?
CREATE TABLE table_5013 ( "Player" text, "Touchdowns" real, "Extra points" real, "Field goals" real, "Points" real )
SELECT AVG("Field goals") FROM table_5013 WHERE "Touchdowns" < '15' AND "Points" < '45'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns? ### Input: CREATE TABLE table_5013 ( "Player" text, "Touchdowns" real, "Extra points" real, "Field goals" real, "Points" real ) ### Response: SELECT AVG("Field goals") FROM table_5013 WHERE "Touchdowns" < '15' AND "Points" < '45'
What percent of respondents had no opinion on George H.W. Bush?
CREATE TABLE table_65127 ( "Result" text, "Barack Obama" text, "George H. W. Bush" text, "Ronald Reagan" text, "Jimmy Carter" text, "Gerald Ford" text, "Richard Nixon" text )
SELECT "George H. W. Bush" FROM table_65127 WHERE "Result" = 'no opinion'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What percent of respondents had no opinion on George H.W. Bush? ### Input: CREATE TABLE table_65127 ( "Result" text, "Barack Obama" text, "George H. W. Bush" text, "Ronald Reagan" text, "Jimmy Carter" text, "Gerald Ford" text, "Richard Nixon" text ) ### Response: SELECT "George H. W. Bush" FROM table_65127 WHERE "Result" = 'no opinion'
Which Institutional authority has a Rocket launch of rehnuma-10?
CREATE TABLE table_57777 ( "Rocket launch" text, "Launch Date" text, "Mission" text, "Institutional authority" text, "Launch Site" text, "Outcomes" text, "Derivatives" text )
SELECT "Institutional authority" FROM table_57777 WHERE "Rocket launch" = 'rehnuma-10'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Institutional authority has a Rocket launch of rehnuma-10? ### Input: CREATE TABLE table_57777 ( "Rocket launch" text, "Launch Date" text, "Mission" text, "Institutional authority" text, "Launch Site" text, "Outcomes" text, "Derivatives" text ) ### Response: SELECT "Institutional authority" FROM table_57777 WHERE "Rocket launch" = 'rehnuma-10'
What is the Opponent of the game with a Score of 74-66?
CREATE TABLE table_76531 ( "Date" text, "Opponent" text, "Score" text, "Result" text, "Record" text )
SELECT "Opponent" FROM table_76531 WHERE "Score" = '74-66'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the Opponent of the game with a Score of 74-66? ### Input: CREATE TABLE table_76531 ( "Date" text, "Opponent" text, "Score" text, "Result" text, "Record" text ) ### Response: SELECT "Opponent" FROM table_76531 WHERE "Score" = '74-66'
Name the incelandic of the glossary for 218
CREATE TABLE table_608 ( "Word number" text, "The Basque of the glossary" text, "Modern Basque" text, "The Icelandic of the glossary" text, "English translation" text )
SELECT "The Icelandic of the glossary" FROM table_608 WHERE "Word number" = '218'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the incelandic of the glossary for 218 ### Input: CREATE TABLE table_608 ( "Word number" text, "The Basque of the glossary" text, "Modern Basque" text, "The Icelandic of the glossary" text, "English translation" text ) ### Response: SELECT "The Icelandic of the glossary" FROM table_608 WHERE "Word number" = '218'
Name the traditional for
CREATE TABLE table_23566 ( "English Name" text, "Simplified" text, "Traditional" text, "Pinyin" text, "Foochow" text, "Area" real, "Population" real, "Density" real )
SELECT "Traditional" FROM table_23566 WHERE "Simplified" = '屏南县'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the traditional for ### Input: CREATE TABLE table_23566 ( "English Name" text, "Simplified" text, "Traditional" text, "Pinyin" text, "Foochow" text, "Area" real, "Population" real, "Density" real ) ### Response: SELECT "Traditional" FROM table_23566 WHERE "Simplified" = '屏南县'
What is every value for 78 Fury if the value of 78 Monaco is 93.6?
CREATE TABLE table_2659 ( "Performance comparison" text, "78 Fury" text, "78 Monaco" text, "79 St. Regis" text, "80 St. Regis" text, "81 St. Regis" text )
SELECT "78 Fury" FROM table_2659 WHERE "78 Monaco" = '93.6'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is every value for 78 Fury if the value of 78 Monaco is 93.6? ### Input: CREATE TABLE table_2659 ( "Performance comparison" text, "78 Fury" text, "78 Monaco" text, "79 St. Regis" text, "80 St. Regis" text, "81 St. Regis" text ) ### Response: SELECT "78 Fury" FROM table_2659 WHERE "78 Monaco" = '93.6'
Name the number of regular judge when host is bernie chan
CREATE TABLE table_20451 ( "Country" text, "Name" text, "Host" text, "Channel" text, "First Premiere" text, "Regular Judge" text, "Seasons" real )
SELECT COUNT("Regular Judge") FROM table_20451 WHERE "Host" = 'Bernie Chan'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the number of regular judge when host is bernie chan ### Input: CREATE TABLE table_20451 ( "Country" text, "Name" text, "Host" text, "Channel" text, "First Premiere" text, "Regular Judge" text, "Seasons" real ) ### Response: SELECT COUNT("Regular Judge") FROM table_20451 WHERE "Host" = 'Bernie Chan'
when was otar iosseliani's film selected
CREATE TABLE table_22142 ( "Year [e ] (Ceremony)" text, "Film title used in nomination" text, "Original title" text, "Director" text, "Main Language(s)" text, "Result" text )
SELECT "Year [e ] (Ceremony)" FROM table_22142 WHERE "Director" = 'Otar Iosseliani'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: when was otar iosseliani's film selected ### Input: CREATE TABLE table_22142 ( "Year [e ] (Ceremony)" text, "Film title used in nomination" text, "Original title" text, "Director" text, "Main Language(s)" text, "Result" text ) ### Response: SELECT "Year [e ] (Ceremony)" FROM table_22142 WHERE "Director" = 'Otar Iosseliani'
Tell me the total number of gold for bronze more than 0 and total more than 100
CREATE TABLE table_31618 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT COUNT("Gold") FROM table_31618 WHERE "Bronze" > '0' AND "Rank" = 'total' AND "Total" > '100'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Tell me the total number of gold for bronze more than 0 and total more than 100 ### Input: CREATE TABLE table_31618 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real ) ### Response: SELECT COUNT("Gold") FROM table_31618 WHERE "Bronze" > '0' AND "Rank" = 'total' AND "Total" > '100'
What's the total grid of Bruce Mclaren?
CREATE TABLE table_10650 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT COUNT("Grid") FROM table_10650 WHERE "Driver" = 'bruce mclaren'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the total grid of Bruce Mclaren? ### Input: CREATE TABLE table_10650 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real ) ### Response: SELECT COUNT("Grid") FROM table_10650 WHERE "Driver" = 'bruce mclaren'
What is the q1+q2 time in which q1 is 1:18.574?
CREATE TABLE table_2015 ( "Pos" real, "No" real, "Driver" text, "Constructor" text, "Q1 order" real, "Q1 time" text, "Q1 pos" real, "Q1+Q2 time" text )
SELECT "Q1+Q2 time" FROM table_2015 WHERE "Q1 time" = '1:18.574'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the q1+q2 time in which q1 is 1:18.574? ### Input: CREATE TABLE table_2015 ( "Pos" real, "No" real, "Driver" text, "Constructor" text, "Q1 order" real, "Q1 time" text, "Q1 pos" real, "Q1+Q2 time" text ) ### Response: SELECT "Q1+Q2 time" FROM table_2015 WHERE "Q1 time" = '1:18.574'
What is the highest win for the team Nacional?
CREATE TABLE table_19628 ( "Position" real, "Team" text, "Played" real, "Wins" real, "Draws" real, "Losses" real, "Scored" real, "Conceded" real, "Points" real )
SELECT MAX("Wins") FROM table_19628 WHERE "Team" = 'Nacional'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the highest win for the team Nacional? ### Input: CREATE TABLE table_19628 ( "Position" real, "Team" text, "Played" real, "Wins" real, "Draws" real, "Losses" real, "Scored" real, "Conceded" real, "Points" real ) ### Response: SELECT MAX("Wins") FROM table_19628 WHERE "Team" = 'Nacional'
Name the writers for 46 in series
CREATE TABLE table_28959 ( "No. in series" real, "No. in season" real, "Title" text, "Director" text, "Writer(s)" text, "Original air date" text, "Production code" text, "U.S. viewers (million)" text )
SELECT "Writer(s)" FROM table_28959 WHERE "No. in series" = '46'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the writers for 46 in series ### Input: CREATE TABLE table_28959 ( "No. in series" real, "No. in season" real, "Title" text, "Director" text, "Writer(s)" text, "Original air date" text, "Production code" text, "U.S. viewers (million)" text ) ### Response: SELECT "Writer(s)" FROM table_28959 WHERE "No. in series" = '46'
In what Week is the Opponent the New Orleans Saints?
CREATE TABLE table_47698 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT AVG("Week") FROM table_47698 WHERE "Opponent" = 'new orleans saints'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In what Week is the Opponent the New Orleans Saints? ### Input: CREATE TABLE table_47698 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real ) ### Response: SELECT AVG("Week") FROM table_47698 WHERE "Opponent" = 'new orleans saints'
In how many episodes was Dave's team made up of David Walliams and Louis Walsh?
CREATE TABLE table_25912 ( "Episode" text, "First broadcast" text, "Seans team" text, "Daves team" text, "Scores" text )
SELECT COUNT("Episode") FROM table_25912 WHERE "Daves team" = 'David Walliams and Louis Walsh'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In how many episodes was Dave's team made up of David Walliams and Louis Walsh? ### Input: CREATE TABLE table_25912 ( "Episode" text, "First broadcast" text, "Seans team" text, "Daves team" text, "Scores" text ) ### Response: SELECT COUNT("Episode") FROM table_25912 WHERE "Daves team" = 'David Walliams and Louis Walsh'
Name the score for october 9
CREATE TABLE table_68731 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Series" text )
SELECT "Score" FROM table_68731 WHERE "Date" = 'october 9'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the score for october 9 ### Input: CREATE TABLE table_68731 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Series" text ) ### Response: SELECT "Score" FROM table_68731 WHERE "Date" = 'october 9'
Name the total number of league cup for mark roberts
CREATE TABLE table_1721 ( "Player" text, "League" real, "Scottish Cup" real, "League Cup" real, "Challenge Cup" real, "Total" real )
SELECT COUNT("League Cup") FROM table_1721 WHERE "Player" = 'Mark Roberts'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the total number of league cup for mark roberts ### Input: CREATE TABLE table_1721 ( "Player" text, "League" real, "Scottish Cup" real, "League Cup" real, "Challenge Cup" real, "Total" real ) ### Response: SELECT COUNT("League Cup") FROM table_1721 WHERE "Player" = 'Mark Roberts'
If a variant without niqqud is as final letter: or , what is the phonetic realisation?
CREATE TABLE table_56984 ( "Variant (with Niqqud )" text, "without Niqqud" text, "Phonemic Value" text, "Phonetic Realisation" text, "English example" text )
SELECT "Phonetic Realisation" FROM table_56984 WHERE "without Niqqud" = 'as final letter: ו or יו'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: If a variant without niqqud is as final letter: or , what is the phonetic realisation? ### Input: CREATE TABLE table_56984 ( "Variant (with Niqqud )" text, "without Niqqud" text, "Phonemic Value" text, "Phonetic Realisation" text, "English example" text ) ### Response: SELECT "Phonetic Realisation" FROM table_56984 WHERE "without Niqqud" = 'as final letter: ו or יו'
When the away team scored 16.21 (117), what was the home teams score?
CREATE TABLE table_78193 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team score" FROM table_78193 WHERE "Away team score" = '16.21 (117)'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When the away team scored 16.21 (117), what was the home teams score? ### Input: CREATE TABLE table_78193 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text ) ### Response: SELECT "Home team score" FROM table_78193 WHERE "Away team score" = '16.21 (117)'
What is the density that has an area smaller than 2,200.2 and a population larger than 2,599?
CREATE TABLE table_37649 ( "Commune" text, "Area (km 2 )" real, "2002 population" real, "Density (km 2 )" real, "Government website" text )
SELECT COUNT("Density (km 2 )") FROM table_37649 WHERE "Area (km 2 )" < '2,200.2' AND "2002 population" > '2,599'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the density that has an area smaller than 2,200.2 and a population larger than 2,599? ### Input: CREATE TABLE table_37649 ( "Commune" text, "Area (km 2 )" real, "2002 population" real, "Density (km 2 )" real, "Government website" text ) ### Response: SELECT COUNT("Density (km 2 )") FROM table_37649 WHERE "Area (km 2 )" < '2,200.2' AND "2002 population" > '2,599'
What was the place for the player whose final score was 71-69=140?
CREATE TABLE table_50173 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Place" FROM table_50173 WHERE "Score" = '71-69=140'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the place for the player whose final score was 71-69=140? ### Input: CREATE TABLE table_50173 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text ) ### Response: SELECT "Place" FROM table_50173 WHERE "Score" = '71-69=140'
How many violines are suggested in the 'Arranged by Nelson Riddle' reference with section size of 12 players?
CREATE TABLE table_26620 ( "Reference" text, "Author" text, "Section Size" text, "Violins" real, "Violas" real, "Celli" real, "Basses" real )
SELECT "Violins" FROM table_26620 WHERE "Reference" = 'Arranged By Nelson Riddle' AND "Section Size" = '12 players'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many violines are suggested in the 'Arranged by Nelson Riddle' reference with section size of 12 players? ### Input: CREATE TABLE table_26620 ( "Reference" text, "Author" text, "Section Size" text, "Violins" real, "Violas" real, "Celli" real, "Basses" real ) ### Response: SELECT "Violins" FROM table_26620 WHERE "Reference" = 'Arranged By Nelson Riddle' AND "Section Size" = '12 players'
How many postseason titles has Nebraska received?
CREATE TABLE table_57719 ( "Team" text, "Season" text, "Regular Season (division)" real, "Postseason" text, "Total" real )
SELECT "Postseason" FROM table_57719 WHERE "Team" = 'nebraska'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many postseason titles has Nebraska received? ### Input: CREATE TABLE table_57719 ( "Team" text, "Season" text, "Regular Season (division)" real, "Postseason" text, "Total" real ) ### Response: SELECT "Postseason" FROM table_57719 WHERE "Team" = 'nebraska'
Name the team for javier clemente
CREATE TABLE table_31119 ( "Team" text, "Chairman" text, "Head Coach" text, "Captain" text, "Kitmaker" text, "Shirt sponsor" text )
SELECT "Team" FROM table_31119 WHERE "Head Coach" = 'Javier Clemente'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the team for javier clemente ### Input: CREATE TABLE table_31119 ( "Team" text, "Chairman" text, "Head Coach" text, "Captain" text, "Kitmaker" text, "Shirt sponsor" text ) ### Response: SELECT "Team" FROM table_31119 WHERE "Head Coach" = 'Javier Clemente'
Tell me the total number of years for lady cecily waynflete and opera house, kennedy center
CREATE TABLE table_32110 ( "Year" real, "Play" text, "Role" text, "Theatre" text, "Location" text )
SELECT COUNT("Year") FROM table_32110 WHERE "Role" = 'lady cecily waynflete' AND "Theatre" = 'opera house, kennedy center'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Tell me the total number of years for lady cecily waynflete and opera house, kennedy center ### Input: CREATE TABLE table_32110 ( "Year" real, "Play" text, "Role" text, "Theatre" text, "Location" text ) ### Response: SELECT COUNT("Year") FROM table_32110 WHERE "Role" = 'lady cecily waynflete' AND "Theatre" = 'opera house, kennedy center'
What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?
CREATE TABLE table_65911 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MAX("Gold") FROM table_65911 WHERE "Silver" < '2' AND "Bronze" < '4'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals? ### Input: CREATE TABLE table_65911 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real ) ### Response: SELECT MAX("Gold") FROM table_65911 WHERE "Silver" < '2' AND "Bronze" < '4'
What is the type of turbine having fewer than 17 units and located in County Laois?
CREATE TABLE table_36342 ( "Wind Farm" text, "Scheduled" text, "Capacity (MW)" real, "Turbines" real, "Type" text, "Location" text )
SELECT "Type" FROM table_36342 WHERE "Turbines" < '17' AND "Location" = 'county laois'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the type of turbine having fewer than 17 units and located in County Laois? ### Input: CREATE TABLE table_36342 ( "Wind Farm" text, "Scheduled" text, "Capacity (MW)" real, "Turbines" real, "Type" text, "Location" text ) ### Response: SELECT "Type" FROM table_36342 WHERE "Turbines" < '17' AND "Location" = 'county laois'
What was John Strohmeyer's average pick before round 12?
CREATE TABLE table_44531 ( "Round" real, "Pick" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT AVG("Pick") FROM table_44531 WHERE "Name" = 'john strohmeyer' AND "Round" < '12'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was John Strohmeyer's average pick before round 12? ### Input: CREATE TABLE table_44531 ( "Round" real, "Pick" real, "Overall" real, "Name" text, "Position" text, "College" text ) ### Response: SELECT AVG("Pick") FROM table_44531 WHERE "Name" = 'john strohmeyer' AND "Round" < '12'
What Model number has the sSpec numebr of SLBJG(B1)?
CREATE TABLE table_65074 ( "Model number" text, "sSpec number" text, "Frequency" text, "Turbo" text, "Cores" text, "L2 cache" text, "L3 cache" text, "I/O bus" text, "Mult." text, "Memory" text, "Voltage" text, "Socket" text, "Release date" text, "Part number(s)" text, "Release price ( USD )" text )
SELECT "Model number" FROM table_65074 WHERE "sSpec number" = 'slbjg(b1)'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What Model number has the sSpec numebr of SLBJG(B1)? ### Input: CREATE TABLE table_65074 ( "Model number" text, "sSpec number" text, "Frequency" text, "Turbo" text, "Cores" text, "L2 cache" text, "L3 cache" text, "I/O bus" text, "Mult." text, "Memory" text, "Voltage" text, "Socket" text, "Release date" text, "Part number(s)" text, "Release price ( USD )" text ) ### Response: SELECT "Model number" FROM table_65074 WHERE "sSpec number" = 'slbjg(b1)'
Which Opponent was played on 1991-10-13?
CREATE TABLE table_78475 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Game site" text, "Attendance" text )
SELECT "Opponent" FROM table_78475 WHERE "Date" = '1991-10-13'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Opponent was played on 1991-10-13? ### Input: CREATE TABLE table_78475 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Game site" text, "Attendance" text ) ### Response: SELECT "Opponent" FROM table_78475 WHERE "Date" = '1991-10-13'
Who won the regular season when Missouri Valley Conference took place?
CREATE TABLE table_73440 ( "Conference" text, "Regular Season Winner" text, "Conference Player of the Year" text, "Conference Tournament" text, "Tournament Venue (City)" text, "Tournament Winner" text )
SELECT "Regular Season Winner" FROM table_73440 WHERE "Conference" = 'Missouri Valley Conference'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who won the regular season when Missouri Valley Conference took place? ### Input: CREATE TABLE table_73440 ( "Conference" text, "Regular Season Winner" text, "Conference Player of the Year" text, "Conference Tournament" text, "Tournament Venue (City)" text, "Tournament Winner" text ) ### Response: SELECT "Regular Season Winner" FROM table_73440 WHERE "Conference" = 'Missouri Valley Conference'
Which production had Rex Robbins as Herbie?
CREATE TABLE table_52474 ( "Productions" text, "Rose" text, "Louise" text, "Dainty June" text, "Herbie" text, "Director" text )
SELECT "Productions" FROM table_52474 WHERE "Herbie" = 'rex robbins'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which production had Rex Robbins as Herbie? ### Input: CREATE TABLE table_52474 ( "Productions" text, "Rose" text, "Louise" text, "Dainty June" text, "Herbie" text, "Director" text ) ### Response: SELECT "Productions" FROM table_52474 WHERE "Herbie" = 'rex robbins'
What is the lowest game number on February 20?
CREATE TABLE table_10634 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT MIN("Game") FROM table_10634 WHERE "Date" = 'february 20'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the lowest game number on February 20? ### Input: CREATE TABLE table_10634 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text ) ### Response: SELECT MIN("Game") FROM table_10634 WHERE "Date" = 'february 20'
What are the driving wheels of the model built in 1883?
CREATE TABLE table_10553 ( "Name" text, "Number" text, "Builder" text, "Date built" text, "Wheel arrangement" text, "Driving wheels" text, "Cylinders" text, "Boiler pressure" text, "Notes" text )
SELECT "Driving wheels" FROM table_10553 WHERE "Date built" = '1883'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What are the driving wheels of the model built in 1883? ### Input: CREATE TABLE table_10553 ( "Name" text, "Number" text, "Builder" text, "Date built" text, "Wheel arrangement" text, "Driving wheels" text, "Cylinders" text, "Boiler pressure" text, "Notes" text ) ### Response: SELECT "Driving wheels" FROM table_10553 WHERE "Date built" = '1883'
How many original air dates were there for episode 17?
CREATE TABLE table_20076 ( "No. in season" real, "No. disc" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text )
SELECT COUNT("Original air date") FROM table_20076 WHERE "No. in season" = '17'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many original air dates were there for episode 17? ### Input: CREATE TABLE table_20076 ( "No. in season" real, "No. disc" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text ) ### Response: SELECT COUNT("Original air date") FROM table_20076 WHERE "No. in season" = '17'
In which location did he win the Superbrawl 16 event?
CREATE TABLE table_46147 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" text, "Location" text )
SELECT "Location" FROM table_46147 WHERE "Res." = 'win' AND "Event" = 'superbrawl 16'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In which location did he win the Superbrawl 16 event? ### Input: CREATE TABLE table_46147 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" text, "Location" text ) ### Response: SELECT "Location" FROM table_46147 WHERE "Res." = 'win' AND "Event" = 'superbrawl 16'
Tell me the cast for b. reeves eason and joseph kane
CREATE TABLE table_57614 ( "Serial Title" text, "Year" text, "Chapters" text, "Director" text, "Cast" text )
SELECT "Cast" FROM table_57614 WHERE "Director" = 'b. reeves eason and joseph kane'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Tell me the cast for b. reeves eason and joseph kane ### Input: CREATE TABLE table_57614 ( "Serial Title" text, "Year" text, "Chapters" text, "Director" text, "Cast" text ) ### Response: SELECT "Cast" FROM table_57614 WHERE "Director" = 'b. reeves eason and joseph kane'
before week 12 what was the attendance on 1983-11-21?
CREATE TABLE table_35472 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Game site" text, "Attendance" real )
SELECT SUM("Attendance") FROM table_35472 WHERE "Date" = '1983-11-21' AND "Week" < '12'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: before week 12 what was the attendance on 1983-11-21? ### Input: CREATE TABLE table_35472 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Game site" text, "Attendance" real ) ### Response: SELECT SUM("Attendance") FROM table_35472 WHERE "Date" = '1983-11-21' AND "Week" < '12'
Name the Tally of an Opposition of westmeath?
CREATE TABLE table_64210 ( "Rank" real, "Player" text, "County" text, "Tally" text, "Total" real, "Opposition" text )
SELECT "Tally" FROM table_64210 WHERE "Opposition" = 'westmeath'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the Tally of an Opposition of westmeath? ### Input: CREATE TABLE table_64210 ( "Rank" real, "Player" text, "County" text, "Tally" text, "Total" real, "Opposition" text ) ### Response: SELECT "Tally" FROM table_64210 WHERE "Opposition" = 'westmeath'
How many candidates are listed all together for the incumbent named bob clement?
CREATE TABLE table_18246 ( "District" text, "Incumbent" text, "Party" text, "First elected" real, "Result" text, "Candidates" text )
SELECT COUNT("Candidates") FROM table_18246 WHERE "Incumbent" = 'Bob Clement'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many candidates are listed all together for the incumbent named bob clement? ### Input: CREATE TABLE table_18246 ( "District" text, "Incumbent" text, "Party" text, "First elected" real, "Result" text, "Candidates" text ) ### Response: SELECT COUNT("Candidates") FROM table_18246 WHERE "Incumbent" = 'Bob Clement'
What song was 2nd (25,517) in televoting (votes)?
CREATE TABLE table_79339 ( "Draw" real, "Singer" text, "Song" text, "Televoting (votes)" text, "Jury" text, "Place" text )
SELECT "Song" FROM table_79339 WHERE "Televoting (votes)" = '2nd (25,517)'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What song was 2nd (25,517) in televoting (votes)? ### Input: CREATE TABLE table_79339 ( "Draw" real, "Singer" text, "Song" text, "Televoting (votes)" text, "Jury" text, "Place" text ) ### Response: SELECT "Song" FROM table_79339 WHERE "Televoting (votes)" = '2nd (25,517)'
what is the highest rank when the nation is united states (usa) and bronze is more than 1?
CREATE TABLE table_50717 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MAX("Rank") FROM table_50717 WHERE "Nation" = 'united states (usa)' AND "Bronze" > '1'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the highest rank when the nation is united states (usa) and bronze is more than 1? ### Input: CREATE TABLE table_50717 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real ) ### Response: SELECT MAX("Rank") FROM table_50717 WHERE "Nation" = 'united states (usa)' AND "Bronze" > '1'
What attendance is dated february 27?
CREATE TABLE table_43858 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Attendance" real, "Record" text, "Points" real )
SELECT AVG("Attendance") FROM table_43858 WHERE "Date" = 'february 27'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What attendance is dated february 27? ### Input: CREATE TABLE table_43858 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Attendance" real, "Record" text, "Points" real ) ### Response: SELECT AVG("Attendance") FROM table_43858 WHERE "Date" = 'february 27'
What is the average grid for Clay Regazzoni?
CREATE TABLE table_58480 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT AVG("Grid") FROM table_58480 WHERE "Driver" = 'clay regazzoni'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the average grid for Clay Regazzoni? ### Input: CREATE TABLE table_58480 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real ) ### Response: SELECT AVG("Grid") FROM table_58480 WHERE "Driver" = 'clay regazzoni'
What was the rank of the park that had a value of 5,040,000 in 2010?
CREATE TABLE table_46549 ( "Rank" real, "Location" text, "2008" text, "2009" text, "2010" text, "2011" real, "2012" real )
SELECT "Rank" FROM table_46549 WHERE "2010" = '5,040,000'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the rank of the park that had a value of 5,040,000 in 2010? ### Input: CREATE TABLE table_46549 ( "Rank" real, "Location" text, "2008" text, "2009" text, "2010" text, "2011" real, "2012" real ) ### Response: SELECT "Rank" FROM table_46549 WHERE "2010" = '5,040,000'
What is th title of the episode written by Nick Thiel?
CREATE TABLE table_30456 ( "Series #" real, "Title" text, "Written by" text, "Directed by" text, "Original air date" text, "Production code" text, "U.S. viewers (millions)" text )
SELECT "Title" FROM table_30456 WHERE "Written by" = 'Nick Thiel'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is th title of the episode written by Nick Thiel? ### Input: CREATE TABLE table_30456 ( "Series #" real, "Title" text, "Written by" text, "Directed by" text, "Original air date" text, "Production code" text, "U.S. viewers (millions)" text ) ### Response: SELECT "Title" FROM table_30456 WHERE "Written by" = 'Nick Thiel'
Name the venue for collingwood home team
CREATE TABLE table_55244 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Venue" FROM table_55244 WHERE "Home team" = 'collingwood'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the venue for collingwood home team ### Input: CREATE TABLE table_55244 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text ) ### Response: SELECT "Venue" FROM table_55244 WHERE "Home team" = 'collingwood'
What year was the downy woodpecker coin created?
CREATE TABLE table_55306 ( "Year" real, "Animal" text, "Artist" text, "Finish" text, "Mintage" real, "Issue Price" text )
SELECT SUM("Year") FROM table_55306 WHERE "Animal" = 'downy woodpecker'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What year was the downy woodpecker coin created? ### Input: CREATE TABLE table_55306 ( "Year" real, "Animal" text, "Artist" text, "Finish" text, "Mintage" real, "Issue Price" text ) ### Response: SELECT SUM("Year") FROM table_55306 WHERE "Animal" = 'downy woodpecker'
Which 1965 has a 1962 of 0.35000000000000003, and a 1967 smaller than 0.53?
CREATE TABLE table_64936 ( "Country" text, "1960" real, "1961" real, "1962" real, "1963" real, "1964" real, "1965" real, "1966" real, "1967" real, "1968" real, "1969" real )
SELECT MIN("1965") FROM table_64936 WHERE "1962" = '0.35000000000000003' AND "1967" < '0.53'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which 1965 has a 1962 of 0.35000000000000003, and a 1967 smaller than 0.53? ### Input: CREATE TABLE table_64936 ( "Country" text, "1960" real, "1961" real, "1962" real, "1963" real, "1964" real, "1965" real, "1966" real, "1967" real, "1968" real, "1969" real ) ### Response: SELECT MIN("1965") FROM table_64936 WHERE "1962" = '0.35000000000000003' AND "1967" < '0.53'
What is the total amount of Top-25 having a Top-5 greater than 1?
CREATE TABLE table_15567 ( "Tournament" text, "Wins" real, "Top-5" real, "Top-10" real, "Top-25" real, "Events" real, "Cuts made" real )
SELECT COUNT("Top-25") FROM table_15567 WHERE "Top-5" > '1'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the total amount of Top-25 having a Top-5 greater than 1? ### Input: CREATE TABLE table_15567 ( "Tournament" text, "Wins" real, "Top-5" real, "Top-10" real, "Top-25" real, "Events" real, "Cuts made" real ) ### Response: SELECT COUNT("Top-25") FROM table_15567 WHERE "Top-5" > '1'
First elected in 1807 1817 in what district?
CREATE TABLE table_3604 ( "District" text, "Incumbent" text, "Party" text, "First elected" text, "Result" text, "Candidates" text )
SELECT "District" FROM table_3604 WHERE "First elected" = '1807 1817'
wikisql
Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: First elected in 1807 1817 in what district? ### Input: CREATE TABLE table_3604 ( "District" text, "Incumbent" text, "Party" text, "First elected" text, "Result" text, "Candidates" text ) ### Response: SELECT "District" FROM table_3604 WHERE "First elected" = '1807 1817'
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
2