combined_text
stringlengths
106
1.05k
###question:What are the names of the tourist attractions that have parking or shopping as their feature details?###answer:SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'park' UNION SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'shopping'###context:CREATE TABLE Tourist_Attraction_Features (tourist_attraction_id VARCHAR, Feature_ID VARCHAR); CREATE TABLE Features (Feature_ID VARCHAR, feature_Details VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, tourist_attraction_id VARCHAR)
###question:What are the names of tourist attractions that can be reached by bus or is at address 254 Ottilie Junction?###answer:SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "254 Ottilie Junction" OR T2.How_to_Get_There = "bus"###context:CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR)
###question:What are the names of the tourist attractions Vincent and Marcelle visit?###answer:SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" INTERSECT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Marcelle"###context:CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
###question:What are the names of tourist attraction that Alison visited but Rosalind did not visit?###answer:SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Alison" EXCEPT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Rosalind"###context:CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
###question:How many tourists did not make any visit?###answer:SELECT COUNT(*) FROM Visitors WHERE NOT Tourist_ID IN (SELECT Tourist_ID FROM Visits)###context:CREATE TABLE Visitors (Tourist_ID VARCHAR); CREATE TABLE Visits (Tourist_ID VARCHAR)
###question:How many video games exist?###answer:SELECT COUNT(*) FROM Video_games###context:CREATE TABLE Video_games (Id VARCHAR)
###question:How many video game types exist?###answer:SELECT COUNT(DISTINCT gtype) FROM Video_games###context:CREATE TABLE Video_games (gtype VARCHAR)
###question:Show all video game types.###answer:SELECT DISTINCT gtype FROM Video_games###context:CREATE TABLE Video_games (gtype VARCHAR)
###question:Show all video games and their types in the order of their names.###answer:SELECT gname, gtype FROM Video_games ORDER BY gname###context:CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR)
###question:Show all video games with type Collectible card game.###answer:SELECT gname FROM Video_games WHERE gtype = "Collectible card game"###context:CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR)
###question:What is the type of video game Call of Destiny.###answer:SELECT gtype FROM Video_games WHERE gname = "Call of Destiny"###context:CREATE TABLE Video_games (gtype VARCHAR, gname VARCHAR)
###question:How many video games have type Massively multiplayer online game?###answer:SELECT COUNT(*) FROM Video_games WHERE gtype = "Massively multiplayer online game"###context:CREATE TABLE Video_games (gtype VARCHAR)
###question:Show all video game types and the number of video games in each type.###answer:SELECT gtype, COUNT(*) FROM Video_games GROUP BY gtype###context:CREATE TABLE Video_games (gtype VARCHAR)
###question:Which game type has most number of games?###answer:SELECT gtype FROM Video_games GROUP BY gtype ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE Video_games (gtype VARCHAR)
###question:Which game type has least number of games?###answer:SELECT gtype FROM Video_games GROUP BY gtype ORDER BY COUNT(*) LIMIT 1###context:CREATE TABLE Video_games (gtype VARCHAR)
###question:Show ids for all students who live in CHI.###answer:SELECT StuID FROM Student WHERE city_code = "CHI"###context:CREATE TABLE Student (StuID VARCHAR, city_code VARCHAR)
###question:Show ids for all students who have advisor 1121.###answer:SELECT StuID FROM Student WHERE Advisor = 1121###context:CREATE TABLE Student (StuID VARCHAR, Advisor VARCHAR)
###question:Show first name for all students with major 600.###answer:SELECT Fname FROM Student WHERE Major = 600###context:CREATE TABLE Student (Fname VARCHAR, Major VARCHAR)
###question:Show the average, minimum, and maximum age for different majors.###answer:SELECT major, AVG(age), MIN(age), MAX(age) FROM Student GROUP BY major###context:CREATE TABLE Student (major VARCHAR, age INTEGER)
###question:Show all advisors who have at least two students.###answer:SELECT advisor FROM Student GROUP BY advisor HAVING COUNT(*) >= 2###context:CREATE TABLE Student (advisor VARCHAR)
###question:How many sports do we have?###answer:SELECT COUNT(DISTINCT sportname) FROM Sportsinfo###context:CREATE TABLE Sportsinfo (sportname VARCHAR)
###question:How many students play sports?###answer:SELECT COUNT(DISTINCT StuID) FROM Sportsinfo###context:CREATE TABLE Sportsinfo (StuID VARCHAR)
###question:List ids for all student who are on scholarship.###answer:SELECT StuID FROM Sportsinfo WHERE onscholarship = 'Y'###context:CREATE TABLE Sportsinfo (StuID VARCHAR, onscholarship VARCHAR)
###question:Show last names for all student who are on scholarship.###answer:SELECT T2.Lname FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T1.onscholarship = 'Y'###context:CREATE TABLE Student (Lname VARCHAR, StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR, onscholarship VARCHAR)
###question:How many games are played for all students?###answer:SELECT SUM(gamesplayed) FROM Sportsinfo###context:CREATE TABLE Sportsinfo (gamesplayed INTEGER)
###question:How many games are played for all football games by students on scholarship?###answer:SELECT SUM(gamesplayed) FROM Sportsinfo WHERE sportname = "Football" AND onscholarship = 'Y'###context:CREATE TABLE Sportsinfo (gamesplayed INTEGER, sportname VARCHAR, onscholarship VARCHAR)
###question:Show all sport name and the number of students.###answer:SELECT sportname, COUNT(*) FROM Sportsinfo GROUP BY sportname###context:CREATE TABLE Sportsinfo (sportname VARCHAR)
###question:Show all student IDs with the number of sports and total number of games played###answer:SELECT StuID, COUNT(*), SUM(gamesplayed) FROM Sportsinfo GROUP BY StuID###context:CREATE TABLE Sportsinfo (StuID VARCHAR, gamesplayed INTEGER)
###question:Show all student IDs with more than total 10 hours per week on all sports played.###answer:SELECT StuID FROM Sportsinfo GROUP BY StuID HAVING SUM(hoursperweek) > 10###context:CREATE TABLE Sportsinfo (StuID VARCHAR, hoursperweek INTEGER)
###question:What is the first name and last name of the student who have most number of sports?###answer:SELECT T2.Fname, T2.Lname FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID GROUP BY T1.StuID ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)
###question:Which sport has most number of students on scholarship?###answer:SELECT sportname FROM Sportsinfo WHERE onscholarship = 'Y' GROUP BY sportname ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE Sportsinfo (sportname VARCHAR, onscholarship VARCHAR)
###question:Show student ids who don't have any sports.###answer:SELECT StuID FROM Student EXCEPT SELECT StuID FROM Sportsinfo###context:CREATE TABLE Sportsinfo (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)
###question:Show student ids who are on scholarship and have major 600.###answer:SELECT StuID FROM Student WHERE major = 600 INTERSECT SELECT StuID FROM Sportsinfo WHERE onscholarship = 'Y'###context:CREATE TABLE Sportsinfo (StuID VARCHAR, major VARCHAR, onscholarship VARCHAR); CREATE TABLE Student (StuID VARCHAR, major VARCHAR, onscholarship VARCHAR)
###question:Show student ids who are female and play football.###answer:SELECT StuID FROM Student WHERE sex = 'F' INTERSECT SELECT StuID FROM Sportsinfo WHERE sportname = "Football"###context:CREATE TABLE Sportsinfo (StuID VARCHAR, sex VARCHAR, sportname VARCHAR); CREATE TABLE Student (StuID VARCHAR, sex VARCHAR, sportname VARCHAR)
###question:Show all male student ids who don't play football.###answer:SELECT StuID FROM Student WHERE sex = 'M' EXCEPT SELECT StuID FROM Sportsinfo WHERE sportname = "Football"###context:CREATE TABLE Sportsinfo (StuID VARCHAR, sex VARCHAR, sportname VARCHAR); CREATE TABLE Student (StuID VARCHAR, sex VARCHAR, sportname VARCHAR)
###question:Show total hours per week and number of games played for student David Shieber.###answer:SELECT SUM(hoursperweek), SUM(gamesplayed) FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.Fname = "David" AND T2.Lname = "Shieber"###context:CREATE TABLE Student (StuID VARCHAR, Fname VARCHAR, Lname VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)
###question:Show total hours per week and number of games played for students under 20.###answer:SELECT SUM(hoursperweek), SUM(gamesplayed) FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.age < 20###context:CREATE TABLE Student (StuID VARCHAR, age INTEGER); CREATE TABLE Sportsinfo (StuID VARCHAR)
###question:How many students play video games?###answer:SELECT COUNT(DISTINCT StuID) FROM Plays_games###context:CREATE TABLE Plays_games (StuID VARCHAR)
###question:Show ids of students who don't play video game.###answer:SELECT StuID FROM Student EXCEPT SELECT StuID FROM Plays_games###context:CREATE TABLE Plays_games (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)
###question:Show ids of students who play video game and play sports.###answer:SELECT StuID FROM Sportsinfo INTERSECT SELECT StuID FROM Plays_games###context:CREATE TABLE Plays_games (StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)
###question:Show all game ids and the number of hours played.###answer:SELECT gameid, SUM(hours_played) FROM Plays_games GROUP BY gameid###context:CREATE TABLE Plays_games (gameid VARCHAR, hours_played INTEGER)
###question:Show all student ids and the number of hours played.###answer:SELECT Stuid, SUM(hours_played) FROM Plays_games GROUP BY Stuid###context:CREATE TABLE Plays_games (Stuid VARCHAR, hours_played INTEGER)
###question:Show the game name that has most number of hours played.###answer:SELECT gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid GROUP BY T1.gameid ORDER BY SUM(hours_played) DESC LIMIT 1###context:CREATE TABLE Plays_games (gameid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)
###question:Show all game names played by at least 1000 hours.###answer:SELECT gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid GROUP BY T1.gameid HAVING SUM(hours_played) >= 1000###context:CREATE TABLE Plays_games (gameid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)
###question:Show all game names played by Linda Smith###answer:SELECT Gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid JOIN Student AS T3 ON T3.Stuid = T1.Stuid WHERE T3.Lname = "Smith" AND T3.Fname = "Linda"###context:CREATE TABLE Student (Stuid VARCHAR, Lname VARCHAR, Fname VARCHAR); CREATE TABLE Plays_games (gameid VARCHAR, Stuid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)
###question:Find the last and first name of students who are playing Football or Lacrosse.###answer:SELECT T2.lname, T2.fname FROM SportsInfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T1.SportName = "Football" OR T1.SportName = "Lacrosse"###context:CREATE TABLE SportsInfo (StuID VARCHAR, SportName VARCHAR); CREATE TABLE Student (lname VARCHAR, fname VARCHAR, StuID VARCHAR)
###question:Find the first name and age of the students who are playing both Football and Lacrosse.###answer:SELECT fname, age FROM Student WHERE StuID IN (SELECT StuID FROM Sportsinfo WHERE SportName = "Football" INTERSECT SELECT StuID FROM Sportsinfo WHERE SportName = "Lacrosse")###context:CREATE TABLE Student (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR); CREATE TABLE Sportsinfo (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR)
###question:Find the last name and gender of the students who are playing both Call of Destiny and Works of Widenius games.###answer:SELECT lname, sex FROM Student WHERE StuID IN (SELECT T1.StuID FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.GameID = T2.GameID WHERE T2.Gname = "Call of Destiny" INTERSECT SELECT T1.StuID FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.GameID = T2.GameID WHERE T2.Gname = "Works of Widenius")###context:CREATE TABLE Plays_games (StuID VARCHAR, GameID VARCHAR); CREATE TABLE Student (lname VARCHAR, sex VARCHAR, StuID VARCHAR); CREATE TABLE Video_games (GameID VARCHAR, Gname VARCHAR)
###question:Find the name of all customers.###answer:SELECT customer_name FROM customers###context:CREATE TABLE customers (customer_name VARCHAR)
###question:What is the average amount of items ordered in each order?###answer:SELECT AVG(order_quantity) FROM order_items###context:CREATE TABLE order_items (order_quantity INTEGER)
###question:What are the names of customers who use payment method "Cash"?###answer:SELECT customer_name FROM customers WHERE payment_method = "Cash"###context:CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)
###question:Find the "date became customers" of the customers whose ID is between 10 and 20.###answer:SELECT date_became_customer FROM customers WHERE customer_id BETWEEN 10 AND 20###context:CREATE TABLE customers (date_became_customer VARCHAR, customer_id INTEGER)
###question:Which payment method is used by most customers?###answer:SELECT payment_method FROM customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE customers (payment_method VARCHAR)
###question:What are the names of customers using the most popular payment method?###answer:SELECT customer_name FROM customers WHERE payment_method = (SELECT payment_method FROM customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1)###context:CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)
###question:What are all the payment methods?###answer:SELECT DISTINCT payment_method FROM customers###context:CREATE TABLE customers (payment_method VARCHAR)
###question:What are the details of all products?###answer:SELECT DISTINCT product_details FROM products###context:CREATE TABLE products (product_details VARCHAR)
###question:Find the name of all customers whose name contains "Alex".###answer:SELECT customer_name FROM customers WHERE customer_name LIKE "%Alex%"###context:CREATE TABLE customers (customer_name VARCHAR)
###question:Find the detail of products whose detail contains the word "Latte" or the word "Americano"###answer:SELECT product_details FROM products WHERE product_details LIKE "%Latte%" OR product_details LIKE "%Americano%"###context:CREATE TABLE products (product_details VARCHAR)
###question:What is the address content of the customer named "Maudie Kertzmann"?###answer:SELECT t3.address_content FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t1.customer_name = "Maudie Kertzmann"###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE addresses (address_content VARCHAR, address_id VARCHAR)
###question:How many customers are living in city "Lake Geovannyton"?###answer:SELECT COUNT(*) FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.city = "Lake Geovannyton"###context:CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, city VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR)
###question:Find the name of customers who are living in Colorado?###answer:SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = "Colorado"###context:CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)
###question:Find the list of cities that no customer is living in.###answer:SELECT city FROM addresses WHERE NOT city IN (SELECT DISTINCT t3.city FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id)###context:CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE addresses (city VARCHAR)
###question:Which city has the most customers living in?###answer:SELECT t3.city FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id GROUP BY t3.city ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR)
###question:Find the city with post code 255.###answer:SELECT city FROM addresses WHERE zip_postcode = 255###context:CREATE TABLE addresses (city VARCHAR, zip_postcode VARCHAR)
###question:Find the state and country of all cities with post code starting with 4.###answer:SELECT state_province_county, country FROM addresses WHERE zip_postcode LIKE "4%"###context:CREATE TABLE addresses (state_province_county VARCHAR, country VARCHAR, zip_postcode VARCHAR)
###question:List the countries having more than 4 addresses listed.###answer:SELECT country FROM addresses GROUP BY country HAVING COUNT(address_id) > 4###context:CREATE TABLE addresses (country VARCHAR, address_id VARCHAR)
###question:List all the contact channel codes that were used less than 5 times.###answer:SELECT channel_code FROM customer_contact_channels GROUP BY channel_code HAVING COUNT(customer_id) < 5###context:CREATE TABLE customer_contact_channels (channel_code VARCHAR, customer_id VARCHAR)
###question:Which contact channel has been used by the customer with name "Tillman Ernser"?###answer:SELECT DISTINCT channel_code FROM customers AS t1 JOIN customer_contact_channels AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = "Tillman Ernser"###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customer_contact_channels (customer_id VARCHAR)
###question:What is the "active to date" of the latest contact channel used by "Tillman Ernser"?###answer:SELECT MAX(t2.active_to_date) FROM customers AS t1 JOIN customer_contact_channels AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = "Tillman Ernser"###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customer_contact_channels (active_to_date INTEGER, customer_id VARCHAR)
###question:What is the average time span of contact channels in the database?###answer:SELECT AVG(active_to_date - active_from_date) FROM customer_contact_channels###context:CREATE TABLE customer_contact_channels (active_to_date VARCHAR, active_from_date VARCHAR)
###question:What is the channel code and contact number of the customer contact channel that was active for the longest time?###answer:SELECT channel_code, contact_number FROM customer_contact_channels WHERE active_to_date - active_from_date = (SELECT active_to_date - active_from_date FROM customer_contact_channels ORDER BY (active_to_date - active_from_date) DESC LIMIT 1)###context:CREATE TABLE customer_contact_channels (channel_code VARCHAR, contact_number VARCHAR, active_to_date VARCHAR, active_from_date VARCHAR)
###question:Find the name and active date of the customer that use email as the contact channel.###answer:SELECT t1.customer_name, t2.active_from_date FROM customers AS t1 JOIN customer_contact_channels AS t2 ON t1.customer_id = t2.customer_id WHERE t2.channel_code = 'Email'###context:CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_contact_channels (active_from_date VARCHAR, customer_id VARCHAR, channel_code VARCHAR)
###question:What is the name of the customer that made the order with the largest quantity?###answer:SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t3.order_quantity = (SELECT MAX(order_quantity) FROM order_items)###context:CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (order_quantity INTEGER); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
###question:What is the name of the customer that has purchased the most items?###answer:SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id GROUP BY t1.customer_name ORDER BY SUM(t3.order_quantity) DESC LIMIT 1###context:CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
###question:What is the payment method of the customer that has purchased the least quantity of items?###answer:SELECT t1.payment_method FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id GROUP BY t1.customer_name ORDER BY SUM(t3.order_quantity) LIMIT 1###context:CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (payment_method VARCHAR, customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
###question:How many types of products have Rodrick Heaney bought in total?###answer:SELECT COUNT(DISTINCT t3.product_id) FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t1.customer_name = "Rodrick Heaney"###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
###question:What is the total quantity of products purchased by "Rodrick Heaney"?###answer:SELECT SUM(t3.order_quantity) FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t1.customer_name = "Rodrick Heaney"###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
###question:How many customers have at least one order with status "Cancelled"?###answer:SELECT COUNT(DISTINCT customer_id) FROM customer_orders WHERE order_status = "Cancelled"###context:CREATE TABLE customer_orders (customer_id VARCHAR, order_status VARCHAR)
###question:How many orders have detail "Second time"?###answer:SELECT COUNT(*) FROM customer_orders WHERE order_details = "Second time"###context:CREATE TABLE customer_orders (order_details VARCHAR)
###question:Find the customer name and date of the orders that have the status "Delivered".###answer:SELECT t1.customer_name, t2.order_date FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id WHERE order_status = "Delivered"###context:CREATE TABLE customer_orders (order_date VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
###question:What is the total number of products that are in orders with status "Cancelled"?###answer:SELECT SUM(t2.order_quantity) FROM customer_orders AS t1 JOIN order_items AS t2 ON t1.order_id = t2.order_id WHERE t1.order_status = "Cancelled"###context:CREATE TABLE customer_orders (order_id VARCHAR, order_status VARCHAR); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR)
###question:Find the total amount of products ordered before 2018-03-17 07:13:53.###answer:SELECT SUM(t2.order_quantity) FROM customer_orders AS t1 JOIN order_items AS t2 ON t1.order_id = t2.order_id WHERE t1.order_date < "2018-03-17 07:13:53"###context:CREATE TABLE customer_orders (order_id VARCHAR, order_date INTEGER); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR)
###question:Who made the latest order?###answer:SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id ORDER BY t2.order_date DESC LIMIT 1###context:CREATE TABLE customer_orders (customer_id VARCHAR, order_date VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
###question:Which product has been ordered most number of times?###answer:SELECT t2.product_details FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE products (product_details VARCHAR, product_id VARCHAR); CREATE TABLE order_items (product_id VARCHAR)
###question:Find the name and ID of the product whose total order quantity is the largest.###answer:SELECT t2.product_details, t2.product_id FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY SUM(t1.order_quantity) LIMIT 1###context:CREATE TABLE order_items (product_id VARCHAR, order_quantity INTEGER); CREATE TABLE products (product_details VARCHAR, product_id VARCHAR)
###question:Find all the addresses in East Julianaside, Texas or in Gleasonmouth, Arizona.###answer:SELECT address_content FROM addresses WHERE city = "East Julianaside" AND state_province_county = "Texas" UNION SELECT address_content FROM addresses WHERE city = "Gleasonmouth" AND state_province_county = "Arizona"###context:CREATE TABLE addresses (address_content VARCHAR, city VARCHAR, state_province_county VARCHAR)
###question:Find the name of customers who did not pay with Cash.###answer:SELECT customer_name FROM customers WHERE payment_method <> 'Cash'###context:CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)
###question:Find the names of customers who never ordered product Latte.###answer:SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Latte'###context:CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_details VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
###question:Find the names of customers who never placed an order.###answer:SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id###context:CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)
###question:Find the names of customers who ordered both products Latte and Americano.###answer:SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Latte' INTERSECT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Americano'###context:CREATE TABLE products (product_id VARCHAR, product_details VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
###question:List the age of all music artists.###answer:SELECT Age FROM artist###context:CREATE TABLE artist (Age VARCHAR)
###question:What is the average age of all artists?###answer:SELECT AVG(Age) FROM artist###context:CREATE TABLE artist (Age INTEGER)
###question:What are the famous titles of the artist "Triumfall"?###answer:SELECT Famous_Title FROM artist WHERE Artist = "Triumfall"###context:CREATE TABLE artist (Famous_Title VARCHAR, Artist VARCHAR)
###question:What are the distinct Famous release dates?###answer:SELECT DISTINCT (Famous_Release_date) FROM artist###context:CREATE TABLE artist (Famous_Release_date VARCHAR)
###question:Return the dates of ceremony and the results of all music festivals###answer:SELECT Date_of_ceremony, RESULT FROM music_festival###context:CREATE TABLE music_festival (Date_of_ceremony VARCHAR, RESULT VARCHAR)
###question:What are the category of music festivals with result "Awarded"?###answer:SELECT Category FROM music_festival WHERE RESULT = "Awarded"###context:CREATE TABLE music_festival (Category VARCHAR, RESULT VARCHAR)
###question:What are the maximum and minimum week on top of all volumes?###answer:SELECT MAX(Weeks_on_Top), MIN(Weeks_on_Top) FROM volume###context:CREATE TABLE volume (Weeks_on_Top INTEGER)
###question:What are the songs in volumes with more than 1 week on top?###answer:SELECT Song FROM volume WHERE Weeks_on_Top > 1###context:CREATE TABLE volume (Song VARCHAR, Weeks_on_Top INTEGER)
###question:Please list all songs in volumes in ascending alphabetical order.###answer:SELECT Song FROM volume ORDER BY Song###context:CREATE TABLE volume (Song VARCHAR)
###question:How many distinct artists do the volumes associate to?###answer:SELECT COUNT(DISTINCT Artist_ID) FROM volume###context:CREATE TABLE volume (Artist_ID VARCHAR)