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