question
stringlengths
16
224
context
stringlengths
30
355
answer
stringlengths
31
570
What is the name of the customer who has the most orders?
CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
[SQL] SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
What is the customer id of the customer who has the most orders?
CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR)
[SQL] SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
Give me a list of id and status of orders which belong to the customer named "Jeramie".
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (order_id VARCHAR, order_status VARCHAR, customer_id VARCHAR)
[SQL] SELECT T2.order_id, T2.order_status FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie" [/SQL]
Find the dates of orders which belong to the customer named "Jeramie".
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, customer_id VARCHAR)
[SQL] SELECT T2.date_order_placed FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie" [/SQL]
Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01.
CREATE TABLE orders (customer_id VARCHAR, date_order_placed VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
[SQL] SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.date_order_placed >= "2009-01-01" AND T2.date_order_placed <= "2010-01-01" [/SQL]
Give me a list of distinct product ids from orders placed between 1975-01-01 and 1976-01-01?
CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)
[SQL] SELECT DISTINCT T2.product_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id WHERE T1.date_order_placed >= "1975-01-01" AND T1.date_order_placed <= "1976-01-01" [/SQL]
Find the names of the customers who have order status both "On Road" and "Shipped".
CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
[SQL] SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped" [/SQL]
Find the id of the customers who have order status both "On Road" and "Shipped".
CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR)
[SQL] SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped" [/SQL]
When was the order placed whose shipment tracking number is 3452? Give me the date.
CREATE TABLE shipments (order_id VARCHAR, shipment_tracking_number VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR)
[SQL] SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.shipment_tracking_number = 3452 [/SQL]
What is the placement date of the order whose invoice number is 10?
CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR); CREATE TABLE shipments (order_id VARCHAR, invoice_number VARCHAR)
[SQL] SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.invoice_number = 10 [/SQL]
List the count and id of each product in all the orders.
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE products (product_id VARCHAR)
[SQL] SELECT COUNT(*), T3.product_id FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id [/SQL]
List the name and count of each product in all orders.
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR)
[SQL] SELECT T3.product_name, COUNT(*) FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id [/SQL]
Find the ids of orders which are shipped after 2000-01-01.
CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)
[SQL] SELECT order_id FROM shipments WHERE shipment_date > "2000-01-01" [/SQL]
Find the id of the order which is shipped most recently.
CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)
[SQL] SELECT order_id FROM shipments WHERE shipment_date = (SELECT MAX(shipment_date) FROM shipments) [/SQL]
List the names of all distinct products in alphabetical order.
CREATE TABLE products (product_name VARCHAR)
[SQL] SELECT DISTINCT product_name FROM products ORDER BY product_name [/SQL]
List the ids of all distinct orders ordered by placed date.
CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)
[SQL] SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed [/SQL]
What is the id of the order which has the most items?
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR)
[SQL] SELECT T1.order_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
Find the invoice numbers which are created before 1989-09-03 or after 2007-12-25.
CREATE TABLE invoices (invoice_number VARCHAR, invoice_date VARCHAR)
[SQL] SELECT invoice_number FROM invoices WHERE invoice_date < "1989-09-03" OR invoice_date > "2007-12-25" [/SQL]
Find the distinct details of invoices which are created before 1989-09-03 or after 2007-12-25.
CREATE TABLE invoices (invoice_details VARCHAR, invoice_date VARCHAR)
[SQL] SELECT DISTINCT invoice_details FROM invoices WHERE invoice_date < "1989-09-03" OR invoice_date > "2007-12-25" [/SQL]
For each customer who has at least two orders, find the customer name and number of orders made.
CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
[SQL] SELECT T2.customer_name, COUNT(*) FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) >= 2 [/SQL]
Find the name of the customers who have at most two orders.
CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
[SQL] SELECT T2.customer_name FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) <= 2 [/SQL]
List the names of the customers who have once bought product "food".
CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR)
[SQL] SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1 [/SQL]
List the names of customers who have once canceled the purchase of the product "food" (the item status is "Cancel").
CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_item_status VARCHAR, order_id VARCHAR)
[SQL] SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T3.order_item_status = "Cancel" AND T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1 [/SQL]
How many architects are female?
CREATE TABLE architect (gender VARCHAR)
[SQL] SELECT COUNT(*) FROM architect WHERE gender = 'female' [/SQL]
List the name, nationality and id of all male architects ordered by their names lexicographically.
CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR, gender VARCHAR)
[SQL] SELECT name, nationality, id FROM architect WHERE gender = 'male' ORDER BY name [/SQL]
What is the maximum length in meters for the bridges and what are the architects' names?
CREATE TABLE architect (name VARCHAR, id VARCHAR); CREATE TABLE bridge (length_meters INTEGER, architect_id VARCHAR)
[SQL] SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id [/SQL]
What is the average length in feet of the bridges?
CREATE TABLE bridge (length_feet INTEGER)
[SQL] SELECT AVG(length_feet) FROM bridge [/SQL]
What are the names and year of construction for the mills of 'Grondzeiler' type?
CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR)
[SQL] SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler' [/SQL]
What are the distinct names and nationalities of the architects who have ever built a mill?
CREATE TABLE mill (Id VARCHAR); CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR)
[SQL] SELECT DISTINCT T1.name, T1.nationality FROM architect AS T1 JOIN mill AS t2 ON T1.id = T2.architect_id [/SQL]
What are the names of the mills which are not located in 'Donceel'?
CREATE TABLE mill (name VARCHAR, LOCATION VARCHAR)
[SQL] SELECT name FROM mill WHERE LOCATION <> 'Donceel' [/SQL]
What are the distinct types of mills that are built by American or Canadian architects?
CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (type VARCHAR, architect_id VARCHAR)
[SQL] SELECT DISTINCT T1.type FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id WHERE T2.nationality = 'American' OR T2.nationality = 'Canadian' [/SQL]
What are the ids and names of the architects who built at least 3 bridges ?
CREATE TABLE architect (id VARCHAR, name VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)
[SQL] SELECT T1.id, T1.name FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) >= 3 [/SQL]
What is the id, name and nationality of the architect who built most mills?
CREATE TABLE architect (id VARCHAR, name VARCHAR, nationality VARCHAR); CREATE TABLE mill (architect_id VARCHAR)
[SQL] SELECT T1.id, T1.name, T1.nationality FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
What are the ids, names and genders of the architects who built two bridges or one mill?
CREATE TABLE mill (architect_id VARCHAR); CREATE TABLE architect (id VARCHAR, name VARCHAR, gender VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)
[SQL] SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 2 UNION SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 1 [/SQL]
What is the location of the bridge named 'Kolob Arch' or 'Rainbow Bridge'?
CREATE TABLE bridge (LOCATION VARCHAR, name VARCHAR)
[SQL] SELECT LOCATION FROM bridge WHERE name = 'Kolob Arch' OR name = 'Rainbow Bridge' [/SQL]
Which of the mill names contains the french word 'Moulin'?
CREATE TABLE mill (name VARCHAR)
[SQL] SELECT name FROM mill WHERE name LIKE '%Moulin%' [/SQL]
What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters?
CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (name VARCHAR, architect_id VARCHAR); CREATE TABLE bridge (architect_id VARCHAR, length_meters INTEGER)
[SQL] SELECT DISTINCT T1.name FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id JOIN bridge AS T3 ON T3.architect_id = T2.id WHERE T3.length_meters > 80 [/SQL]
What is the most common mill type, and how many are there?
CREATE TABLE mill (TYPE VARCHAR)
[SQL] SELECT TYPE, COUNT(*) FROM mill GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
How many architects haven't built a mill before year 1850?
CREATE TABLE mill (id VARCHAR, architect_id VARCHAR, built_year INTEGER); CREATE TABLE architect (id VARCHAR, architect_id VARCHAR, built_year INTEGER)
[SQL] SELECT COUNT(*) FROM architect WHERE NOT id IN (SELECT architect_id FROM mill WHERE built_year < 1850) [/SQL]
show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length.
CREATE TABLE bridge (name VARCHAR, architect_id VARCHAR, length_feet VARCHAR); CREATE TABLE architect (id VARCHAR, nationality VARCHAR)
[SQL] SELECT t1.name FROM bridge AS t1 JOIN architect AS t2 ON t1.architect_id = t2.id WHERE t2.nationality = 'American' ORDER BY t1.length_feet [/SQL]
How many book clubs are there?
CREATE TABLE book_club (Id VARCHAR)
[SQL] SELECT COUNT(*) FROM book_club [/SQL]
show the titles, and authors or editors for all books made after the year 1989.
CREATE TABLE book_club (book_title VARCHAR, author_or_editor VARCHAR, YEAR INTEGER)
[SQL] SELECT book_title, author_or_editor FROM book_club WHERE YEAR > 1989 [/SQL]
Show all distinct publishers for books.
CREATE TABLE book_club (publisher VARCHAR)
[SQL] SELECT DISTINCT publisher FROM book_club [/SQL]
Show the years, book titles, and publishers for all books, in descending order by year.
CREATE TABLE book_club (YEAR VARCHAR, book_title VARCHAR, publisher VARCHAR)
[SQL] SELECT YEAR, book_title, publisher FROM book_club ORDER BY YEAR DESC [/SQL]
Show all publishers and the number of books for each publisher.
CREATE TABLE book_club (publisher VARCHAR)
[SQL] SELECT publisher, COUNT(*) FROM book_club GROUP BY publisher [/SQL]
What is the publisher with most number of books?
CREATE TABLE book_club (publisher VARCHAR)
[SQL] SELECT publisher FROM book_club GROUP BY publisher ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
Show all book categories and the number of books in each category.
CREATE TABLE book_club (category VARCHAR)
[SQL] SELECT category, COUNT(*) FROM book_club GROUP BY category [/SQL]
List categories that have at least two books after year 1989.
CREATE TABLE book_club (category VARCHAR, YEAR INTEGER)
[SQL] SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2 [/SQL]
Show publishers with a book published in 1989 and a book in 1990.
CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)
[SQL] SELECT publisher FROM book_club WHERE YEAR = 1989 INTERSECT SELECT publisher FROM book_club WHERE YEAR = 1990 [/SQL]
Show all publishers which do not have a book in 1989.
CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)
[SQL] SELECT publisher FROM book_club EXCEPT SELECT publisher FROM book_club WHERE YEAR = 1989 [/SQL]
Show all movie titles, years, and directors, ordered by budget.
CREATE TABLE movie (title VARCHAR, YEAR VARCHAR, director VARCHAR, budget_million VARCHAR)
[SQL] SELECT title, YEAR, director FROM movie ORDER BY budget_million [/SQL]
How many movie directors are there?
CREATE TABLE movie (director VARCHAR)
[SQL] SELECT COUNT(DISTINCT director) FROM movie [/SQL]
What is the title and director for the movie with highest worldwide gross in the year 2000 or before?
CREATE TABLE movie (title VARCHAR, director VARCHAR, YEAR VARCHAR, gross_worldwide VARCHAR)
[SQL] SELECT title, director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1 [/SQL]
Show all director names who have a movie in both year 1999 and 2000.
CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)
[SQL] SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999 [/SQL]
Show all director names who have a movie in the year 1999 or 2000.
CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)
[SQL] SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000 [/SQL]
What is the average, maximum, and minimum budget for all movies before 2000.
CREATE TABLE movie (budget_million INTEGER, YEAR INTEGER)
[SQL] SELECT AVG(budget_million), MAX(budget_million), MIN(budget_million) FROM movie WHERE YEAR < 2000 [/SQL]
List all company names with a book published by Alyson.
CREATE TABLE culture_company (company_name VARCHAR, book_club_id VARCHAR); CREATE TABLE book_club (book_club_id VARCHAR, publisher VARCHAR)
[SQL] SELECT T1.company_name FROM culture_company AS T1 JOIN book_club AS T2 ON T1.book_club_id = T2.book_club_id WHERE T2.publisher = 'Alyson' [/SQL]
Show the movie titles and book titles for all companies in China.
CREATE TABLE movie (title VARCHAR, movie_id VARCHAR); CREATE TABLE culture_company (movie_id VARCHAR, book_club_id VARCHAR, incorporated_in VARCHAR); CREATE TABLE book_club (book_title VARCHAR, book_club_id VARCHAR)
[SQL] SELECT T1.title, T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China' [/SQL]
Show all company names with a movie directed in year 1999.
CREATE TABLE movie (movie_id VARCHAR, year VARCHAR); CREATE TABLE culture_company (company_name VARCHAR, movie_id VARCHAR)
[SQL] SELECT T2.company_name FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id WHERE T1.year = 1999 [/SQL]
How many singers do we have?
CREATE TABLE singer (Id VARCHAR)
[SQL] SELECT COUNT(*) FROM singer [/SQL]
Show name, country, age for all singers ordered by age from the oldest to the youngest.
CREATE TABLE singer (name VARCHAR, country VARCHAR, age VARCHAR)
[SQL] SELECT name, country, age FROM singer ORDER BY age DESC [/SQL]
What is the average, minimum, and maximum age of all singers from France?
CREATE TABLE singer (age INTEGER, country VARCHAR)
[SQL] SELECT AVG(age), MIN(age), MAX(age) FROM singer WHERE country = 'France' [/SQL]
Show the name and the release year of the song by the youngest singer.
CREATE TABLE singer (song_name VARCHAR, song_release_year VARCHAR, age VARCHAR)
[SQL] SELECT song_name, song_release_year FROM singer ORDER BY age LIMIT 1 [/SQL]
What are all distinct countries where singers above age 20 are from?
CREATE TABLE singer (country VARCHAR, age INTEGER)
[SQL] SELECT DISTINCT country FROM singer WHERE age > 20 [/SQL]
Show all countries and the number of singers in each country.
CREATE TABLE singer (country VARCHAR)
[SQL] SELECT country, COUNT(*) FROM singer GROUP BY country [/SQL]
List all song names by singers above the average age.
CREATE TABLE singer (song_name VARCHAR, age INTEGER)
[SQL] SELECT song_name FROM singer WHERE age > (SELECT AVG(age) FROM singer) [/SQL]
Show location and name for all stadiums with a capacity between 5000 and 10000.
CREATE TABLE stadium (LOCATION VARCHAR, name VARCHAR, capacity INTEGER)
[SQL] SELECT LOCATION, name FROM stadium WHERE capacity BETWEEN 5000 AND 10000 [/SQL]
What is the maximum capacity and the average of all stadiums ?
CREATE TABLE stadium (average VARCHAR, capacity INTEGER)
[SQL] SELECT MAX(capacity), average FROM stadium [/SQL]
What is the average and maximum capacities for all stadiums ?
CREATE TABLE stadium (capacity INTEGER)
[SQL] SELECT AVG(capacity), MAX(capacity) FROM stadium [/SQL]
What is the name and capacity for the stadium with highest average attendance?
CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, average VARCHAR)
[SQL] SELECT name, capacity FROM stadium ORDER BY average DESC LIMIT 1 [/SQL]
How many concerts are there in year 2014 or 2015?
CREATE TABLE concert (YEAR VARCHAR)
[SQL] SELECT COUNT(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015 [/SQL]
Show the stadium name and the number of concerts in each stadium.
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR)
[SQL] SELECT T2.name, COUNT(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id [/SQL]
Show the stadium name and capacity with most number of concerts in year 2014 or after.
CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR)
[SQL] SELECT T2.name, T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
What is the name and capacity of the stadium with the most concerts after 2013 ?
CREATE TABLE concert (stadium_id VARCHAR, year INTEGER); CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR)
[SQL] SELECT t2.name, t2.capacity FROM concert AS t1 JOIN stadium AS t2 ON t1.stadium_id = t2.stadium_id WHERE t1.year > 2013 GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
Which year has most number of concerts?
CREATE TABLE concert (YEAR VARCHAR)
[SQL] SELECT YEAR FROM concert GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1 [/SQL]
Show the stadium names without any concert.
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (name VARCHAR, stadium_id VARCHAR)
[SQL] SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert) [/SQL]
Show countries where a singer above age 40 and a singer below 30 are from.
CREATE TABLE singer (country VARCHAR, age INTEGER)
[SQL] SELECT country FROM singer WHERE age > 40 INTERSECT SELECT country FROM singer WHERE age < 30 [/SQL]
Show names for all stadiums except for stadiums having a concert in year 2014.
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR); CREATE TABLE stadium (name VARCHAR)
[SQL] SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014 [/SQL]
Show the name and theme for all concerts and the number of singers in each concert.
CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR)
[SQL] SELECT T2.concert_name, T2.theme, COUNT(*) FROM singer_in_concert AS T1 JOIN concert AS T2 ON T1.concert_id = T2.concert_id GROUP BY T2.concert_id [/SQL]
What are the names , themes , and number of singers for every concert ?
CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR)
[SQL] SELECT t2.concert_name, t2.theme, COUNT(*) FROM singer_in_concert AS t1 JOIN concert AS t2 ON t1.concert_id = t2.concert_id GROUP BY t2.concert_id [/SQL]
List singer names and number of concerts for each singer.
CREATE TABLE singer_in_concert (singer_id VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR)
[SQL] SELECT T2.name, COUNT(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id [/SQL]
List all singer names in concerts in year 2014.
CREATE TABLE singer_in_concert (singer_id VARCHAR, concert_id VARCHAR); CREATE TABLE concert (concert_id VARCHAR, year VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR)
[SQL] SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014 [/SQL]
what is the name and nation of the singer who have a song having 'Hey' in its name?
CREATE TABLE singer (name VARCHAR, country VARCHAR, song_name VARCHAR)
[SQL] SELECT name, country FROM singer WHERE song_name LIKE '%Hey%' [/SQL]
Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015.
CREATE TABLE stadium (name VARCHAR, location VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, Year VARCHAR)
[SQL] SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015 [/SQL]
Find the number of concerts happened in the stadium with the highest capacity .
CREATE TABLE concert (stadium_id VARCHAR, capacity VARCHAR); CREATE TABLE stadium (stadium_id VARCHAR, capacity VARCHAR)
[SQL] SELECT COUNT(*) FROM concert WHERE stadium_id = (SELECT stadium_id FROM stadium ORDER BY capacity DESC LIMIT 1) [/SQL]
Find the number of pets whose weight is heavier than 10.
CREATE TABLE pets (weight INTEGER)
[SQL] SELECT COUNT(*) FROM pets WHERE weight > 10 [/SQL]
Find the weight of the youngest dog.
CREATE TABLE pets (weight VARCHAR, pet_age VARCHAR)
[SQL] SELECT weight FROM pets ORDER BY pet_age LIMIT 1 [/SQL]
Find the maximum weight for each type of pet. List the maximum weight and pet type.
CREATE TABLE pets (petType VARCHAR, weight INTEGER)
[SQL] SELECT MAX(weight), petType FROM pets GROUP BY petType [/SQL]
Find number of pets owned by students who are older than 20.
CREATE TABLE student (stuid VARCHAR, age INTEGER); CREATE TABLE has_pet (stuid VARCHAR)
[SQL] SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20 [/SQL]
Find the number of dog pets that are raised by female students (with sex F).
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR)
[SQL] SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog' [/SQL]
Find the number of distinct type of pets.
CREATE TABLE pets (pettype VARCHAR)
[SQL] SELECT COUNT(DISTINCT pettype) FROM pets [/SQL]
Find the first name of students who have cat or dog pet.
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
[SQL] SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog' [/SQL]
Find the first name of students who have both cat and dog pets .
CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
[SQL] SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'cat' INTERSECT SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'dog' [/SQL]
What are the students' first names who have both cats and dogs as pets?
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
[SQL] SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' INTERSECT SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' [/SQL]
Find the major and age of students who do not have a cat pet.
CREATE TABLE student (stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (major VARCHAR, age VARCHAR, stuid VARCHAR)
[SQL] SELECT major, age FROM student WHERE NOT stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat') [/SQL]
Find the id of students who do not have a cat pet.
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR)
[SQL] SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' [/SQL]
Find the first name and age of students who have a dog but do not have a cat as a pet.
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
[SQL] SELECT T1.fname, T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND NOT T1.stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat') [/SQL]
Find the type and weight of the youngest pet.
CREATE TABLE pets (pettype VARCHAR, weight VARCHAR, pet_age VARCHAR)
[SQL] SELECT pettype, weight FROM pets ORDER BY pet_age LIMIT 1 [/SQL]
Find the id and weight of all pets whose age is older than 1.
CREATE TABLE pets (petid VARCHAR, weight VARCHAR, pet_age INTEGER)
[SQL] SELECT petid, weight FROM pets WHERE pet_age > 1 [/SQL]
Find the average and maximum age for each type of pet.
CREATE TABLE pets (pettype VARCHAR, pet_age INTEGER)
[SQL] SELECT AVG(pet_age), MAX(pet_age), pettype FROM pets GROUP BY pettype [/SQL]