Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
2,900 | <question>: What are the carriers of devices whose software platforms are not "Android"? <context>: CREATE TABLE device (Carrier VARCHAR, Software_Platform VARCHAR) | SELECT Carrier FROM device WHERE Software_Platform <> 'Android' |
2,901 | <question>: What are the names of shops in ascending order of open year? <context>: CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR) | SELECT Shop_Name FROM shop ORDER BY Open_Year |
2,902 | <question>: What is the average quantity of stocks? <context>: CREATE TABLE stock (Quantity INTEGER) | SELECT AVG(Quantity) FROM stock |
2,903 | <question>: What are the names and location of the shops in ascending alphabetical order of name. <context>: CREATE TABLE shop (Shop_Name VARCHAR, LOCATION VARCHAR) | SELECT Shop_Name, LOCATION FROM shop ORDER BY Shop_Name |
2,904 | <question>: How many different software platforms are there for devices? <context>: CREATE TABLE device (Software_Platform VARCHAR) | SELECT COUNT(DISTINCT Software_Platform) FROM device |
2,905 | <question>: List the open date of open year of the shop named "Apple". <context>: CREATE TABLE shop (Open_Date VARCHAR, Open_Year VARCHAR, Shop_Name VARCHAR) | SELECT Open_Date, Open_Year FROM shop WHERE Shop_Name = "Apple" |
2,906 | <question>: List the name of the shop with the latest open year. <context>: CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR) | SELECT Shop_Name FROM shop ORDER BY Open_Year DESC LIMIT 1 |
2,907 | <question>: Show names of shops and the carriers of devices they have in stock. <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) | 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 |
2,908 | <question>: Show names of shops that have more than one kind of device in stock. <context>: 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 |
2,909 | <question>: Show the name of the shop that has the most kind of devices in stock. <context>: 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 |
2,910 | <question>: Show the name of the shop that have the largest quantity of devices in stock. <context>: 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 |
2,911 | <question>: Please show different software platforms and the corresponding number of devices using each. <context>: CREATE TABLE device (Software_Platform VARCHAR) | SELECT Software_Platform, COUNT(*) FROM device GROUP BY Software_Platform |
2,912 | <question>: Please show the software platforms of devices in descending order of the count. <context>: CREATE TABLE device (Software_Platform VARCHAR) | SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC |
2,913 | <question>: List the software platform shared by the greatest number of devices. <context>: CREATE TABLE device (Software_Platform VARCHAR) | SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC LIMIT 1 |
2,914 | <question>: List the names of shops that have no devices in stock. <context>: 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) |
2,915 | <question>: Show the locations shared by shops with open year later than 2012 and shops with open year before 2008. <context>: 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 |
2,916 | <question>: List the carriers of devices that have no devices in stock. <context>: 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) |
2,917 | <question>: Show the carriers of devices in stock at more than one shop. <context>: 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 |
2,918 | <question>: How many bookings do we have? <context>: CREATE TABLE BOOKINGS (Id VARCHAR) | SELECT COUNT(*) FROM BOOKINGS |
2,919 | <question>: List the order dates of all the bookings. <context>: CREATE TABLE BOOKINGS (Order_Date VARCHAR) | SELECT Order_Date FROM BOOKINGS |
2,920 | <question>: Show all the planned delivery dates and actual delivery dates of bookings. <context>: CREATE TABLE BOOKINGS (Planned_Delivery_Date VARCHAR, Actual_Delivery_Date VARCHAR) | SELECT Planned_Delivery_Date, Actual_Delivery_Date FROM BOOKINGS |
2,921 | <question>: How many customers do we have? <context>: CREATE TABLE CUSTOMERS (Id VARCHAR) | SELECT COUNT(*) FROM CUSTOMERS |
2,922 | <question>: What are the phone and email for customer Harold? <context>: 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" |
2,923 | <question>: Show all the Store_Name of drama workshop groups. <context>: CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR) | SELECT Store_Name FROM Drama_Workshop_Groups |
2,924 | <question>: Show the minimum, average, maximum order quantity of all invoices. <context>: CREATE TABLE INVOICES (Order_Quantity INTEGER) | SELECT MIN(Order_Quantity), AVG(Order_Quantity), MAX(Order_Quantity) FROM INVOICES |
2,925 | <question>: What are the distinct payment method codes in all the invoices? <context>: CREATE TABLE INVOICES (payment_method_code VARCHAR) | SELECT DISTINCT payment_method_code FROM INVOICES |
2,926 | <question>: What is the description of the marketing region China? <context>: CREATE TABLE Marketing_Regions (Marketing_Region_Descriptrion VARCHAR, Marketing_Region_Name VARCHAR) | SELECT Marketing_Region_Descriptrion FROM Marketing_Regions WHERE Marketing_Region_Name = "China" |
2,927 | <question>: Show all the distinct product names with price higher than the average. <context>: CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER) | SELECT DISTINCT Product_Name FROM PRODUCTS WHERE Product_Price > (SELECT AVG(Product_Price) FROM PRODUCTS) |
2,928 | <question>: What is the name of the most expensive product? <context>: CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price VARCHAR) | SELECT Product_Name FROM PRODUCTS ORDER BY Product_Price DESC LIMIT 1 |
2,929 | <question>: What is the phone number of the performer Ashley? <context>: CREATE TABLE PERFORMERS (Customer_Phone VARCHAR, Customer_Name VARCHAR) | SELECT Customer_Phone FROM PERFORMERS WHERE Customer_Name = "Ashley" |
2,930 | <question>: Show all payment method codes and the number of orders for each code. <context>: CREATE TABLE INVOICES (payment_method_code VARCHAR) | SELECT payment_method_code, COUNT(*) FROM INVOICES GROUP BY payment_method_code |
2,931 | <question>: What is the payment method code used by the most orders? <context>: CREATE TABLE INVOICES (payment_method_code VARCHAR) | SELECT payment_method_code FROM INVOICES GROUP BY payment_method_code ORDER BY COUNT(*) DESC LIMIT 1 |
2,932 | <question>: Which city is the address of the store named "FJA Filming" located in? <context>: 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" |
2,933 | <question>: What are the states or counties of the address of the stores with marketing region code "CA"? <context>: 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" |
2,934 | <question>: What is the name of the marketing region that the store Rob Dinning belongs to? <context>: 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" |
2,935 | <question>: What are the descriptions of the service types with product price above 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) | 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 |
2,936 | <question>: What is the description, code and the corresponding count of each service type? <context>: 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 |
2,937 | <question>: What is the description and code of the type of service that is performed the most often? <context>: 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 |
2,938 | <question>: What are the phones and emails of workshop groups in which services are performed? <context>: 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 |
2,939 | <question>: What are the names of workshop groups in which services with product name "film" are performed? <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) | 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" |
2,940 | <question>: What are the different product names? What is the average product price for each of them? <context>: CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER) | SELECT Product_Name, AVG(Product_Price) FROM PRODUCTS GROUP BY Product_Name |
2,941 | <question>: What are the product names with average product price smaller than 1000000? <context>: CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER) | SELECT Product_Name FROM PRODUCTS GROUP BY Product_Name HAVING AVG(Product_Price) < 1000000 |
2,942 | <question>: What are the total order quantities of photo products? <context>: 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" |
2,943 | <question>: What are the order details of the products with price higher than 2000? <context>: 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 |
2,944 | <question>: What are the actual delivery dates of orders with quantity 1? <context>: 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 |
2,945 | <question>: What are the order dates of orders with price higher than 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) | 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 |
2,946 | <question>: How many distinct currency codes are there for all drama workshop groups? <context>: CREATE TABLE Drama_Workshop_Groups (Currency_Code VARCHAR) | SELECT COUNT(DISTINCT Currency_Code) FROM Drama_Workshop_Groups |
2,947 | <question>: What are the names of the drama workshop groups with address in Feliciaberg city? <context>: 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" |
2,948 | <question>: What are the email addresses of the drama workshop groups with address in Alaska state? <context>: 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" |
2,949 | <question>: Show all cities along with the number of drama workshop groups in each city. <context>: 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 |
2,950 | <question>: What is the marketing region code that has the most drama workshop groups? <context>: 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 |
2,951 | <question>: Show all cities where at least one customer lives in but no performer lives in. <context>: 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 |
2,952 | <question>: What is the most frequent status of bookings? <context>: CREATE TABLE BOOKINGS (Status_Code VARCHAR) | SELECT Status_Code FROM BOOKINGS GROUP BY Status_Code ORDER BY COUNT(*) DESC LIMIT 1 |
2,953 | <question>: What are the names of the workshop groups that have bookings with 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) | 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" |
2,954 | <question>: Show the names of all the clients with no booking. <context>: 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 |
2,955 | <question>: What is the average quantities ordered with payment method code "MasterCard" on invoices? <context>: CREATE TABLE Invoices (Order_Quantity INTEGER, payment_method_code VARCHAR) | SELECT AVG(Order_Quantity) FROM Invoices WHERE payment_method_code = "MasterCard" |
2,956 | <question>: What is the product ID of the most frequently ordered item on invoices? <context>: CREATE TABLE INVOICES (Product_ID VARCHAR) | SELECT Product_ID FROM INVOICES GROUP BY Product_ID ORDER BY COUNT(*) DESC LIMIT 1 |
2,957 | <question>: What is the description of the service type which offers both the photo product and the film product? <context>: 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' |
2,958 | <question>: How many bands are there? <context>: CREATE TABLE Band (Id VARCHAR) | SELECT COUNT(*) FROM Band |
2,959 | <question>: What are all the labels? <context>: CREATE TABLE Albums (label VARCHAR) | SELECT DISTINCT label FROM Albums |
2,960 | <question>: Find all the albums in 2012. <context>: CREATE TABLE Albums (YEAR VARCHAR) | SELECT * FROM Albums WHERE YEAR = 2012 |
2,961 | <question>: Find all the stage positions of the musicians with first name "Solveig" <context>: 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" |
2,962 | <question>: How many songs are there? <context>: CREATE TABLE Songs (Id VARCHAR) | SELECT COUNT(*) FROM Songs |
2,963 | <question>: Find all the songs performed by artist with last name "Heilo" <context>: 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" |
2,964 | <question>: Hom many musicians performed in the song "Flash"? <context>: 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" |
2,965 | <question>: Find all the songs produced by artists with first name "Marianne". <context>: 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" |
2,966 | <question>: Who performed the song named "Badlands"? Show the first name and the last name. <context>: 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" |
2,967 | <question>: Who is performing in the back stage position for the song "Badlands"? Show the first name and the last name. <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) | 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" |
2,968 | <question>: How many unique labels are there for albums? <context>: CREATE TABLE albums (label VARCHAR) | SELECT COUNT(DISTINCT label) FROM albums |
2,969 | <question>: What is the label that has the most albums? <context>: CREATE TABLE albums (label VARCHAR) | SELECT label FROM albums GROUP BY label ORDER BY COUNT(*) DESC LIMIT 1 |
2,970 | <question>: What is the last name of the musician that have produced the most number of songs? <context>: 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 |
2,971 | <question>: What is the last name of the musician that has been at the back position the most? <context>: 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 |
2,972 | <question>: Find all the songs whose name contains the word "the". <context>: CREATE TABLE songs (title VARCHAR) | SELECT title FROM songs WHERE title LIKE '% the %' |
2,973 | <question>: What are all the instruments used? <context>: CREATE TABLE Instruments (instrument VARCHAR) | SELECT DISTINCT instrument FROM Instruments |
2,974 | <question>: What instrument did the musician with last name "Heilo" use in the song "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) | 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" |
2,975 | <question>: What is the most used instrument? <context>: CREATE TABLE instruments (instrument VARCHAR) | SELECT instrument FROM instruments GROUP BY instrument ORDER BY COUNT(*) DESC LIMIT 1 |
2,976 | <question>: How many songs have used the instrument "drums"? <context>: CREATE TABLE instruments (instrument VARCHAR) | SELECT COUNT(*) FROM instruments WHERE instrument = "drums" |
2,977 | <question>: What instruments does the the song "Le Pop" use? <context>: 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" |
2,978 | <question>: How many instruments does the song "Le Pop" use? <context>: 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" |
2,979 | <question>: How many instrument does the musician with last name "Heilo" use? <context>: 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" |
2,980 | <question>: Find all the instruments ever used by the musician with last name "Heilo"? <context>: 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" |
2,981 | <question>: Which song has the most vocals? <context>: 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 |
2,982 | <question>: Which vocal type is the most frequently appearring type? <context>: CREATE TABLE vocals (TYPE VARCHAR) | SELECT TYPE FROM vocals GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1 |
2,983 | <question>: Which vocal type has the band mate with last name "Heilo" played the most? <context>: 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 |
2,984 | <question>: What are the vocal types used in song "Le Pop"? <context>: 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" |
2,985 | <question>: Find the number of vocal types used in song "Demon Kitty Rag"? <context>: 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" |
2,986 | <question>: How many songs have a lead vocal? <context>: 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" |
2,987 | <question>: Which vocal type did the musician with first name "Solveig" played in the song with 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) | 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" |
2,988 | <question>: Find all the songs that do not have a lead vocal. <context>: 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" |
2,989 | <question>: Find all the vocal types. <context>: CREATE TABLE vocals (TYPE VARCHAR) | SELECT DISTINCT TYPE FROM vocals |
2,990 | <question>: What are the albums produced in year 2010? <context>: CREATE TABLE Albums (YEAR VARCHAR) | SELECT * FROM Albums WHERE YEAR = 2010 |
2,991 | <question>: Who performed the song named "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) | 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" |
2,992 | <question>: What instrument did the musician with last name "Heilo" use in the song "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) | 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" |
2,993 | <question>: How many instruments does the song "Badlands" use? <context>: 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" |
2,994 | <question>: What are the vocal types used in song "Badlands"? <context>: 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" |
2,995 | <question>: Find the number of vocal types used in song "Le Pop" <context>: 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" |
2,996 | <question>: How many songs have a shared vocal? <context>: 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" |
2,997 | <question>: Find all the songs that do not have a back vocal. <context>: 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" |
2,998 | <question>: Which vocal type has the band mate with first name "Solveig" played the most? <context>: 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 |
2,999 | <question>: Which vocal type did the musician with last name "Heilo" played in the song with 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) | 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" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.