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