training_input
stringlengths
118
1.06k
###context:CREATE TABLE device (Carrier VARCHAR, Software_Platform VARCHAR) ###human: What are the carriers of devices whose software platforms are not "Android"? ###assistant: SELECT Carrier FROM device WHERE Software_Platform <> 'Android'
###context:CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR) ###human: What are the names of shops in ascending order of open year? ###assistant: SELECT Shop_Name FROM shop ORDER BY Open_Year
###context:CREATE TABLE stock (Quantity INTEGER) ###human: What is the average quantity of stocks? ###assistant: SELECT AVG(Quantity) FROM stock
###context:CREATE TABLE shop (Shop_Name VARCHAR, LOCATION VARCHAR) ###human: What are the names and location of the shops in ascending alphabetical order of name. ###assistant: SELECT Shop_Name, LOCATION FROM shop ORDER BY Shop_Name
###context:CREATE TABLE device (Software_Platform VARCHAR) ###human: How many different software platforms are there for devices? ###assistant: SELECT COUNT(DISTINCT Software_Platform) FROM device
###context:CREATE TABLE shop (Open_Date VARCHAR, Open_Year VARCHAR, Shop_Name VARCHAR) ###human: List the open date of open year of the shop named "Apple". ###assistant: SELECT Open_Date, Open_Year FROM shop WHERE Shop_Name = "Apple"
###context:CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR) ###human: List the name of the shop with the latest open year. ###assistant: SELECT Shop_Name FROM shop ORDER BY Open_Year DESC LIMIT 1
###context:CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Device_ID VARCHAR, Shop_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR) ###human: Show names of shops and the carriers of devices they have in stock. ###assistant: SELECT T3.Shop_Name, T2.Carrier FROM stock AS T1 JOIN device AS T2 ON T1.Device_ID = T2.Device_ID JOIN shop AS T3 ON T1.Shop_ID = T3.Shop_ID
###context:CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR) ###human: Show names of shops that have more than one kind of device in stock. ###assistant: SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID HAVING COUNT(*) > 1
###context:CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR) ###human: Show the name of the shop that has the most kind of devices in stock. ###assistant: SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE stock (Shop_ID VARCHAR, quantity INTEGER); CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR) ###human: Show the name of the shop that have the largest quantity of devices in stock. ###assistant: SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY SUM(T1.quantity) DESC LIMIT 1
###context:CREATE TABLE device (Software_Platform VARCHAR) ###human: Please show different software platforms and the corresponding number of devices using each. ###assistant: SELECT Software_Platform, COUNT(*) FROM device GROUP BY Software_Platform
###context:CREATE TABLE device (Software_Platform VARCHAR) ###human: Please show the software platforms of devices in descending order of the count. ###assistant: SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC
###context:CREATE TABLE device (Software_Platform VARCHAR) ###human: List the software platform shared by the greatest number of devices. ###assistant: SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_Name VARCHAR, Shop_ID VARCHAR) ###human: List the names of shops that have no devices in stock. ###assistant: SELECT Shop_Name FROM shop WHERE NOT Shop_ID IN (SELECT Shop_ID FROM stock)
###context:CREATE TABLE shop (LOCATION VARCHAR, Open_Year INTEGER) ###human: Show the locations shared by shops with open year later than 2012 and shops with open year before 2008. ###assistant: SELECT LOCATION FROM shop WHERE Open_Year > 2012 INTERSECT SELECT LOCATION FROM shop WHERE Open_Year < 2008
###context:CREATE TABLE stock (Carrier VARCHAR, Device_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR) ###human: List the carriers of devices that have no devices in stock. ###assistant: SELECT Carrier FROM device WHERE NOT Device_ID IN (SELECT Device_ID FROM stock)
###context:CREATE TABLE stock (Device_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR) ###human: Show the carriers of devices in stock at more than one shop. ###assistant: SELECT T2.Carrier FROM stock AS T1 JOIN device AS T2 ON T1.Device_ID = T2.Device_ID GROUP BY T1.Device_ID HAVING COUNT(*) > 1
###context:CREATE TABLE BOOKINGS (Id VARCHAR) ###human: How many bookings do we have? ###assistant: SELECT COUNT(*) FROM BOOKINGS
###context:CREATE TABLE BOOKINGS (Order_Date VARCHAR) ###human: List the order dates of all the bookings. ###assistant: SELECT Order_Date FROM BOOKINGS
###context:CREATE TABLE BOOKINGS (Planned_Delivery_Date VARCHAR, Actual_Delivery_Date VARCHAR) ###human: Show all the planned delivery dates and actual delivery dates of bookings. ###assistant: SELECT Planned_Delivery_Date, Actual_Delivery_Date FROM BOOKINGS
###context:CREATE TABLE CUSTOMERS (Id VARCHAR) ###human: How many customers do we have? ###assistant: SELECT COUNT(*) FROM CUSTOMERS
###context:CREATE TABLE CUSTOMERS (Customer_Phone VARCHAR, Customer_Email_Address VARCHAR, Customer_Name VARCHAR) ###human: What are the phone and email for customer Harold? ###assistant: SELECT Customer_Phone, Customer_Email_Address FROM CUSTOMERS WHERE Customer_Name = "Harold"
###context:CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR) ###human: Show all the Store_Name of drama workshop groups. ###assistant: SELECT Store_Name FROM Drama_Workshop_Groups
###context:CREATE TABLE INVOICES (Order_Quantity INTEGER) ###human: Show the minimum, average, maximum order quantity of all invoices. ###assistant: SELECT MIN(Order_Quantity), AVG(Order_Quantity), MAX(Order_Quantity) FROM INVOICES
###context:CREATE TABLE INVOICES (payment_method_code VARCHAR) ###human: What are the distinct payment method codes in all the invoices? ###assistant: SELECT DISTINCT payment_method_code FROM INVOICES
###context:CREATE TABLE Marketing_Regions (Marketing_Region_Descriptrion VARCHAR, Marketing_Region_Name VARCHAR) ###human: What is the description of the marketing region China? ###assistant: SELECT Marketing_Region_Descriptrion FROM Marketing_Regions WHERE Marketing_Region_Name = "China"
###context:CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER) ###human: Show all the distinct product names with price higher than the average. ###assistant: SELECT DISTINCT Product_Name FROM PRODUCTS WHERE Product_Price > (SELECT AVG(Product_Price) FROM PRODUCTS)
###context:CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price VARCHAR) ###human: What is the name of the most expensive product? ###assistant: SELECT Product_Name FROM PRODUCTS ORDER BY Product_Price DESC LIMIT 1
###context:CREATE TABLE PERFORMERS (Customer_Phone VARCHAR, Customer_Name VARCHAR) ###human: What is the phone number of the performer Ashley? ###assistant: SELECT Customer_Phone FROM PERFORMERS WHERE Customer_Name = "Ashley"
###context:CREATE TABLE INVOICES (payment_method_code VARCHAR) ###human: Show all payment method codes and the number of orders for each code. ###assistant: SELECT payment_method_code, COUNT(*) FROM INVOICES GROUP BY payment_method_code
###context:CREATE TABLE INVOICES (payment_method_code VARCHAR) ###human: What is the payment method code used by the most orders? ###assistant: SELECT payment_method_code FROM INVOICES GROUP BY payment_method_code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Stores (Address_ID VARCHAR, Store_Name VARCHAR) ###human: Which city is the address of the store named "FJA Filming" located in? ###assistant: SELECT T1.City_Town FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Store_Name = "FJA Filming"
###context:CREATE TABLE Addresses (State_County VARCHAR, Address_ID VARCHAR); CREATE TABLE Stores (Address_ID VARCHAR, Marketing_Region_Code VARCHAR) ###human: What are the states or counties of the address of the stores with marketing region code "CA"? ###assistant: SELECT T1.State_County FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Marketing_Region_Code = "CA"
###context:CREATE TABLE Marketing_Regions (Marketing_Region_Name VARCHAR, Marketing_Region_Code VARCHAR); CREATE TABLE Stores (Marketing_Region_Code VARCHAR, Store_Name VARCHAR) ###human: What is the name of the marketing region that the store Rob Dinning belongs to? ###assistant: SELECT T1.Marketing_Region_Name FROM Marketing_Regions AS T1 JOIN Stores AS T2 ON T1.Marketing_Region_Code = T2.Marketing_Region_Code WHERE T2.Store_Name = "Rob Dinning"
###context:CREATE TABLE Services (Service_Type_Code VARCHAR, Product_Price INTEGER); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR) ###human: What are the descriptions of the service types with product price above 100? ###assistant: SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Price > 100
###context:CREATE TABLE Services (Service_Type_Code VARCHAR); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR) ###human: What is the description, code and the corresponding count of each service type? ###assistant: SELECT T1.Service_Type_Description, T2.Service_Type_Code, COUNT(*) FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code GROUP BY T2.Service_Type_Code
###context:CREATE TABLE Services (Service_Type_Code VARCHAR); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR) ###human: What is the description and code of the type of service that is performed the most often? ###assistant: SELECT T1.Service_Type_Description, T1.Service_Type_Code FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code GROUP BY T1.Service_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Services (Workshop_Group_ID VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Phone VARCHAR, Store_Email_Address VARCHAR, Workshop_Group_ID VARCHAR) ###human: What are the phones and emails of workshop groups in which services are performed? ###assistant: SELECT T1.Store_Phone, T1.Store_Email_Address FROM Drama_Workshop_Groups AS T1 JOIN Services AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID
###context:CREATE TABLE Services (Workshop_Group_ID VARCHAR, Product_Name VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Phone VARCHAR, Store_Email_Address VARCHAR, Workshop_Group_ID VARCHAR) ###human: What are the names of workshop groups in which services with product name "film" are performed? ###assistant: SELECT T1.Store_Phone, T1.Store_Email_Address FROM Drama_Workshop_Groups AS T1 JOIN Services AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID WHERE T2.Product_Name = "film"
###context:CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER) ###human: What are the different product names? What is the average product price for each of them? ###assistant: SELECT Product_Name, AVG(Product_Price) FROM PRODUCTS GROUP BY Product_Name
###context:CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER) ###human: What are the product names with average product price smaller than 1000000? ###assistant: SELECT Product_Name FROM PRODUCTS GROUP BY Product_Name HAVING AVG(Product_Price) < 1000000
###context:CREATE TABLE ORDER_ITEMS (Order_Quantity INTEGER, Product_ID VARCHAR); CREATE TABLE Products (Product_ID VARCHAR, Product_Name VARCHAR) ###human: What are the total order quantities of photo products? ###assistant: SELECT SUM(T1.Order_Quantity) FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_Name = "photo"
###context:CREATE TABLE Products (Product_ID VARCHAR, Product_price INTEGER); CREATE TABLE ORDER_ITEMS (Other_Item_Details VARCHAR, Product_ID VARCHAR) ###human: What are the order details of the products with price higher than 2000? ###assistant: SELECT T1.Other_Item_Details FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_price > 2000
###context:CREATE TABLE Customer_Orders (Actual_Delivery_Date VARCHAR, Order_ID VARCHAR); CREATE TABLE ORDER_ITEMS (Order_ID VARCHAR, Order_Quantity VARCHAR) ###human: What are the actual delivery dates of orders with quantity 1? ###assistant: SELECT T1.Actual_Delivery_Date FROM Customer_Orders AS T1 JOIN ORDER_ITEMS AS T2 ON T1.Order_ID = T2.Order_ID WHERE T2.Order_Quantity = 1
###context:CREATE TABLE Products (Product_ID VARCHAR, Product_price INTEGER); CREATE TABLE ORDER_ITEMS (Order_ID VARCHAR, Product_ID VARCHAR); CREATE TABLE Customer_Orders (Order_Date VARCHAR, Order_ID VARCHAR) ###human: What are the order dates of orders with price higher than 1000? ###assistant: SELECT T1.Order_Date FROM Customer_Orders AS T1 JOIN ORDER_ITEMS AS T2 ON T1.Order_ID = T2.Order_ID JOIN Products AS T3 ON T2.Product_ID = T3.Product_ID WHERE T3.Product_price > 1000
###context:CREATE TABLE Drama_Workshop_Groups (Currency_Code VARCHAR) ###human: How many distinct currency codes are there for all drama workshop groups? ###assistant: SELECT COUNT(DISTINCT Currency_Code) FROM Drama_Workshop_Groups
###context:CREATE TABLE Addresses (Address_ID VARCHAR, City_Town VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR, Address_ID VARCHAR) ###human: What are the names of the drama workshop groups with address in Feliciaberg city? ###assistant: SELECT T2.Store_Name FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.City_Town = "Feliciaberg"
###context:CREATE TABLE Drama_Workshop_Groups (Store_Email_Address VARCHAR, Address_ID VARCHAR); CREATE TABLE Addresses (Address_ID VARCHAR, State_County VARCHAR) ###human: What are the email addresses of the drama workshop groups with address in Alaska state? ###assistant: SELECT T2.Store_Email_Address FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.State_County = "Alaska"
###context:CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Drama_Workshop_Groups (Address_ID VARCHAR) ###human: Show all cities along with the number of drama workshop groups in each city. ###assistant: SELECT T1.City_Town, COUNT(*) FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID GROUP BY T1.City_Town
###context:CREATE TABLE Drama_Workshop_Groups (Marketing_Region_Code VARCHAR) ###human: What is the marketing region code that has the most drama workshop groups? ###assistant: SELECT Marketing_Region_Code FROM Drama_Workshop_Groups GROUP BY Marketing_Region_Code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Customers (Address_ID VARCHAR); CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Performers (Address_ID VARCHAR) ###human: Show all cities where at least one customer lives in but no performer lives in. ###assistant: SELECT T1.City_Town FROM Addresses AS T1 JOIN Customers AS T2 ON T1.Address_ID = T2.Address_ID EXCEPT SELECT T1.City_Town FROM Addresses AS T1 JOIN Performers AS T2 ON T1.Address_ID = T2.Address_ID
###context:CREATE TABLE BOOKINGS (Status_Code VARCHAR) ###human: What is the most frequent status of bookings? ###assistant: SELECT Status_Code FROM BOOKINGS GROUP BY Status_Code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Bookings (Workshop_Group_ID VARCHAR, Status_Code VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR, Workshop_Group_ID VARCHAR) ###human: What are the names of the workshop groups that have bookings with status code "stop"? ###assistant: SELECT T2.Store_Name FROM Bookings AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID WHERE T1.Status_Code = "stop"
###context:CREATE TABLE Clients (Customer_Name VARCHAR, Client_ID VARCHAR); CREATE TABLE Bookings (Customer_ID VARCHAR); CREATE TABLE Clients (Customer_Name VARCHAR) ###human: Show the names of all the clients with no booking. ###assistant: SELECT Customer_Name FROM Clients EXCEPT SELECT T2.Customer_Name FROM Bookings AS T1 JOIN Clients AS T2 ON T1.Customer_ID = T2.Client_ID
###context:CREATE TABLE Invoices (Order_Quantity INTEGER, payment_method_code VARCHAR) ###human: What is the average quantities ordered with payment method code "MasterCard" on invoices? ###assistant: SELECT AVG(Order_Quantity) FROM Invoices WHERE payment_method_code = "MasterCard"
###context:CREATE TABLE INVOICES (Product_ID VARCHAR) ###human: What is the product ID of the most frequently ordered item on invoices? ###assistant: SELECT Product_ID FROM INVOICES GROUP BY Product_ID ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR); CREATE TABLE Services (Service_Type_Code VARCHAR, Product_Name VARCHAR) ###human: What is the description of the service type which offers both the photo product and the film product? ###assistant: SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Name = 'photo' INTERSECT SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Name = 'film'
###context:CREATE TABLE Band (Id VARCHAR) ###human: How many bands are there? ###assistant: SELECT COUNT(*) FROM Band
###context:CREATE TABLE Albums (label VARCHAR) ###human: What are all the labels? ###assistant: SELECT DISTINCT label FROM Albums
###context:CREATE TABLE Albums (YEAR VARCHAR) ###human: Find all the albums in 2012. ###assistant: SELECT * FROM Albums WHERE YEAR = 2012
###context:CREATE TABLE Band (id VARCHAR); CREATE TABLE Performance (stageposition VARCHAR, bandmate VARCHAR) ###human: Find all the stage positions of the musicians with first name "Solveig" ###assistant: SELECT DISTINCT T1.stageposition FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE Firstname = "Solveig"
###context:CREATE TABLE Songs (Id VARCHAR) ###human: How many songs are there? ###assistant: SELECT COUNT(*) FROM Songs
###context:CREATE TABLE Songs (Title VARCHAR, SongId VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, Lastname VARCHAR) ###human: Find all the songs performed by artist with last name "Heilo" ###assistant: SELECT T3.Title FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T2.Lastname = "Heilo"
###context:CREATE TABLE performance (bandmate VARCHAR, songid VARCHAR); CREATE TABLE songs (songid VARCHAR, Title VARCHAR); CREATE TABLE band (id VARCHAR) ###human: Hom many musicians performed in the song "Flash"? ###assistant: SELECT COUNT(*) FROM performance AS T1 JOIN band AS T2 ON T1.bandmate = T2.id JOIN songs AS T3 ON T3.songid = T1.songid WHERE T3.Title = "Flash"
###context:CREATE TABLE Songs (Title VARCHAR, SongId VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, firstname VARCHAR) ###human: Find all the songs produced by artists with first name "Marianne". ###assistant: SELECT T3.Title FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T2.firstname = "Marianne"
###context:CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR) ###human: Who performed the song named "Badlands"? Show the first name and the last name. ###assistant: SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Badlands"
###context:CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR, StagePosition VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR) ###human: Who is performing in the back stage position for the song "Badlands"? Show the first name and the last name. ###assistant: SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Badlands" AND T1.StagePosition = "back"
###context:CREATE TABLE albums (label VARCHAR) ###human: How many unique labels are there for albums? ###assistant: SELECT COUNT(DISTINCT label) FROM albums
###context:CREATE TABLE albums (label VARCHAR) ###human: What is the label that has the most albums? ###assistant: SELECT label FROM albums GROUP BY label ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR) ###human: What is the last name of the musician that have produced the most number of songs? ###assistant: SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR) ###human: What is the last name of the musician that has been at the back position the most? ###assistant: SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE stageposition = "back" GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE songs (title VARCHAR) ###human: Find all the songs whose name contains the word "the". ###assistant: SELECT title FROM songs WHERE title LIKE '% the %'
###context:CREATE TABLE Instruments (instrument VARCHAR) ###human: What are all the instruments used? ###assistant: SELECT DISTINCT instrument FROM Instruments
###context:CREATE TABLE Songs (SongId VARCHAR, songid VARCHAR, title VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR); CREATE TABLE Instruments (instrument VARCHAR, songid VARCHAR, bandmateid VARCHAR) ###human: What instrument did the musician with last name "Heilo" use in the song "Le Pop"? ###assistant: SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Le Pop"
###context:CREATE TABLE instruments (instrument VARCHAR) ###human: What is the most used instrument? ###assistant: SELECT instrument FROM instruments GROUP BY instrument ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE instruments (instrument VARCHAR) ###human: How many songs have used the instrument "drums"? ###assistant: SELECT COUNT(*) FROM instruments WHERE instrument = "drums"
###context:CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: What instruments does the the song "Le Pop" use? ###assistant: SELECT instrument FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
###context:CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: How many instruments does the song "Le Pop" use? ###assistant: SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
###context:CREATE TABLE instruments (bandmateid VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR) ###human: How many instrument does the musician with last name "Heilo" use? ###assistant: SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
###context:CREATE TABLE instruments (bandmateid VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR) ###human: Find all the instruments ever used by the musician with last name "Heilo"? ###assistant: SELECT instrument FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: Which song has the most vocals? ###assistant: SELECT title FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid GROUP BY T1.songid ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE vocals (TYPE VARCHAR) ###human: Which vocal type is the most frequently appearring type? ###assistant: SELECT TYPE FROM vocals GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR) ###human: Which vocal type has the band mate with last name "Heilo" played the most? ###assistant: SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE lastname = "Heilo" GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: What are the vocal types used in song "Le Pop"? ###assistant: SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: Find the number of vocal types used in song "Demon Kitty Rag"? ###assistant: SELECT COUNT(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Demon Kitty Rag"
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: How many songs have a lead vocal? ###assistant: SELECT COUNT(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = "lead"
###context:CREATE TABLE vocals (songid VARCHAR, bandmate VARCHAR); CREATE TABLE band (id VARCHAR, firstname VARCHAR); CREATE TABLE songs (songid VARCHAR, title VARCHAR) ###human: Which vocal type did the musician with first name "Solveig" played in the song with title "A Bar in Amsterdam"? ###assistant: SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.firstname = "Solveig" AND T2.title = "A Bar In Amsterdam"
###context:CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR) ###human: Find all the songs that do not have a lead vocal. ###assistant: SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "lead"
###context:CREATE TABLE vocals (TYPE VARCHAR) ###human: Find all the vocal types. ###assistant: SELECT DISTINCT TYPE FROM vocals
###context:CREATE TABLE Albums (YEAR VARCHAR) ###human: What are the albums produced in year 2010? ###assistant: SELECT * FROM Albums WHERE YEAR = 2010
###context:CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR) ###human: Who performed the song named "Le Pop"? ###assistant: SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Le Pop"
###context:CREATE TABLE Songs (SongId VARCHAR, songid VARCHAR, title VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR); CREATE TABLE Instruments (instrument VARCHAR, songid VARCHAR, bandmateid VARCHAR) ###human: What instrument did the musician with last name "Heilo" use in the song "Badlands"? ###assistant: SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Badlands"
###context:CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: How many instruments does the song "Badlands" use? ###assistant: SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands"
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: What are the vocal types used in song "Badlands"? ###assistant: SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands"
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: Find the number of vocal types used in song "Le Pop" ###assistant: SELECT COUNT(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
###context:CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) ###human: How many songs have a shared vocal? ###assistant: SELECT COUNT(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = "shared"
###context:CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR) ###human: Find all the songs that do not have a back vocal. ###assistant: SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "back"
###context:CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR) ###human: Which vocal type has the band mate with first name "Solveig" played the most? ###assistant: SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Solveig" GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE band (id VARCHAR, lastname VARCHAR); CREATE TABLE vocals (songid VARCHAR, bandmate VARCHAR); CREATE TABLE songs (songid VARCHAR, title VARCHAR) ###human: Which vocal type did the musician with last name "Heilo" played in the song with title "Der Kapitan"? ###assistant: SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.lastname = "Heilo" AND T2.title = "Der Kapitan"