context
stringlengths 27
489
| answer
stringlengths 18
557
| question
stringlengths 12
244
|
---|---|---|
CREATE TABLE Accounts (other_account_details VARCHAR, account_name VARCHAR)
|
SELECT other_account_details FROM Accounts WHERE account_name = "338"
|
Show other account details for account with name 338.
|
CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR)
|
SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "162"
|
What is the first name, last name, and phone of the customer with account name 162?
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)
|
SELECT COUNT(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Art" AND T2.customer_last_name = "Turcotte"
|
How many accounts does the customer with first name Art and last name Turcotte have?
|
CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT customer_id, COUNT(*) FROM Accounts GROUP BY customer_id
|
Show all customer ids and the number of accounts for each customer.
|
CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT customer_id, COUNT(*) FROM Accounts GROUP BY customer_id ORDER BY COUNT(*) DESC LIMIT 1
|
Show the customer id and number of accounts with most accounts.
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT T2.customer_first_name, T2.customer_last_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) LIMIT 1
|
What is the customer first, last name and id with least number of accounts.
|
CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT COUNT(*) FROM Customers WHERE NOT customer_id IN (SELECT customer_id FROM Accounts)
|
Show the number of all customers without an account.
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR)
|
SELECT customer_first_name, customer_last_name FROM Customers EXCEPT SELECT T1.customer_first_name, T1.customer_last_name FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
|
Show the first names and last names of customers without any account.
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT DISTINCT T1.customer_first_name, T1.customer_last_name FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
|
Show distinct first and last names for all customers with an account.
|
CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT COUNT(DISTINCT customer_id) FROM Accounts
|
How many customers have an account?
|
CREATE TABLE Customers (Id VARCHAR)
|
SELECT COUNT(*) FROM Customers
|
How many customers do we have?
|
CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR)
|
SELECT customer_id, customer_first_name, customer_last_name, customer_phone FROM Customers
|
Show ids, first names, last names, and phones for all customers.
|
CREATE TABLE Customers (customer_phone VARCHAR, customer_email VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)
|
SELECT customer_phone, customer_email FROM Customers WHERE customer_first_name = "Aniyah" AND customer_last_name = "Feest"
|
What is the phone and email for customer with first name Aniyah and last name Feest?
|
CREATE TABLE Customers_cards (Id VARCHAR)
|
SELECT COUNT(*) FROM Customers_cards
|
Show the number of customer cards.
|
CREATE TABLE Customers_cards (card_id VARCHAR, customer_id VARCHAR, card_type_code VARCHAR, card_number VARCHAR)
|
SELECT card_id, customer_id, card_type_code, card_number FROM Customers_cards
|
Show ids, customer ids, card type codes, card numbers for all cards.
|
CREATE TABLE Customers_cards (date_valid_from VARCHAR, date_valid_to VARCHAR, card_number VARCHAR)
|
SELECT date_valid_from, date_valid_to FROM Customers_cards WHERE card_number = "4560596484842"
|
Show the date valid from and the date valid to for the card with card number '4560596484842'.
|
CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Customers_cards (customer_id VARCHAR, card_number VARCHAR)
|
SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.card_number = "4560596484842"
|
What is the first name, last name, and phone of the customer with card 4560596484842.
|
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)
|
SELECT COUNT(*) FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Art" AND T2.customer_last_name = "Turcotte"
|
How many cards does customer Art Turcotte have?
|
CREATE TABLE Customers_cards (card_type_code VARCHAR)
|
SELECT COUNT(*) FROM Customers_cards WHERE card_type_code = "Debit"
|
How many debit cards do we have?
|
CREATE TABLE Customers_cards (customer_id VARCHAR, card_type_code VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)
|
SELECT COUNT(*) FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Blanche" AND T2.customer_last_name = "Huels" AND T1.card_type_code = "Credit"
|
How many credit cards does customer Blanche Huels have?
|
CREATE TABLE Customers_cards (customer_id VARCHAR)
|
SELECT customer_id, COUNT(*) FROM Customers_cards GROUP BY customer_id
|
Show all customer ids and the number of cards owned by each customer.
|
CREATE TABLE Customers_cards (customer_id VARCHAR)
|
SELECT customer_id, COUNT(*) FROM Customers_cards GROUP BY customer_id ORDER BY COUNT(*) DESC LIMIT 1
|
What is the customer id with most number of cards, and how many does he have?
|
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2
|
Show id, first and last names for all customers with at least two cards.
|
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) LIMIT 1
|
What is the customer id, first and last name with least number of accounts.
|
CREATE TABLE Customers_cards (card_type_code VARCHAR)
|
SELECT card_type_code, COUNT(*) FROM Customers_cards GROUP BY card_type_code
|
Show all card type codes and the number of cards in each type.
|
CREATE TABLE Customers_cards (card_type_code VARCHAR)
|
SELECT card_type_code FROM Customers_cards GROUP BY card_type_code ORDER BY COUNT(*) DESC LIMIT 1
|
What is the card type code with most number of cards?
|
CREATE TABLE Customers_cards (card_type_code VARCHAR)
|
SELECT card_type_code FROM Customers_cards GROUP BY card_type_code HAVING COUNT(*) >= 5
|
Show card type codes with at least 5 cards.
|
CREATE TABLE Customers_cards (card_type_code VARCHAR, customer_id VARCHAR)
|
SELECT card_type_code, COUNT(DISTINCT customer_id) FROM Customers_cards GROUP BY card_type_code
|
Show all card type codes and the number of customers holding cards in each type.
|
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, card_type_code VARCHAR)
|
SELECT customer_id, customer_first_name FROM Customers EXCEPT SELECT T1.customer_id, T2.customer_first_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE card_type_code = "Credit"
|
Show the customer ids and firstname without a credit card.
|
CREATE TABLE Customers_Cards (card_type_code VARCHAR)
|
SELECT DISTINCT card_type_code FROM Customers_Cards
|
Show all card type codes.
|
CREATE TABLE Customers_Cards (card_type_code VARCHAR)
|
SELECT COUNT(DISTINCT card_type_code) FROM Customers_Cards
|
Show the number of card types.
|
CREATE TABLE Financial_Transactions (transaction_type VARCHAR)
|
SELECT DISTINCT transaction_type FROM Financial_Transactions
|
Show all transaction types.
|
CREATE TABLE Financial_Transactions (transaction_type VARCHAR)
|
SELECT COUNT(DISTINCT transaction_type) FROM Financial_Transactions
|
Show the number of transaction types.
|
CREATE TABLE Financial_transactions (transaction_amount INTEGER)
|
SELECT AVG(transaction_amount), SUM(transaction_amount) FROM Financial_transactions
|
What is the average and total transaction amount?
|
CREATE TABLE Financial_transactions (card_id VARCHAR); CREATE TABLE Customers_cards (card_type_code VARCHAR, card_id VARCHAR)
|
SELECT T2.card_type_code, COUNT(*) FROM Financial_transactions AS T1 JOIN Customers_cards AS T2 ON T1.card_id = T2.card_id GROUP BY T2.card_type_code
|
Show the card type codes and the number of transactions.
|
CREATE TABLE Financial_transactions (transaction_type VARCHAR)
|
SELECT transaction_type, COUNT(*) FROM Financial_transactions GROUP BY transaction_type
|
Show the transaction type and the number of transactions.
|
CREATE TABLE Financial_transactions (transaction_type VARCHAR, transaction_amount INTEGER)
|
SELECT transaction_type FROM Financial_transactions GROUP BY transaction_type ORDER BY SUM(transaction_amount) DESC LIMIT 1
|
What is the transaction type that has processed the greatest total amount in transactions?
|
CREATE TABLE Financial_transactions (account_id VARCHAR)
|
SELECT account_id, COUNT(*) FROM Financial_transactions GROUP BY account_id
|
Show the account id and the number of transactions for each account
|
CREATE TABLE track (Id VARCHAR)
|
SELECT COUNT(*) FROM track
|
How many tracks do we have?
|
CREATE TABLE track (name VARCHAR, LOCATION VARCHAR)
|
SELECT name, LOCATION FROM track
|
Show the name and location for all tracks.
|
CREATE TABLE track (name VARCHAR, seating VARCHAR, year_opened INTEGER)
|
SELECT name, seating FROM track WHERE year_opened > 2000 ORDER BY seating
|
Show names and seatings, ordered by seating for all tracks opened after 2000.
|
CREATE TABLE track (name VARCHAR, LOCATION VARCHAR, seating VARCHAR, year_opened VARCHAR)
|
SELECT name, LOCATION, seating FROM track ORDER BY year_opened DESC LIMIT 1
|
What is the name, location and seating for the most recently opened track?
|
CREATE TABLE track (seating INTEGER)
|
SELECT MIN(seating), MAX(seating), AVG(seating) FROM track
|
What is the minimum, maximum, and average seating for all tracks.
|
CREATE TABLE track (name VARCHAR, LOCATION VARCHAR, year_opened VARCHAR, seating INTEGER)
|
SELECT name, LOCATION, year_opened FROM track WHERE seating > (SELECT AVG(seating) FROM track)
|
Show the name, location, open year for all tracks with a seating higher than the average.
|
CREATE TABLE track (LOCATION VARCHAR)
|
SELECT DISTINCT LOCATION FROM track
|
What are distinct locations where tracks are located?
|
CREATE TABLE race (Id VARCHAR)
|
SELECT COUNT(*) FROM race
|
How many races are there?
|
CREATE TABLE race (CLASS VARCHAR)
|
SELECT DISTINCT CLASS FROM race
|
What are the distinct classes that races can have?
|
CREATE TABLE race (name VARCHAR, CLASS VARCHAR, date VARCHAR)
|
SELECT name, CLASS, date FROM race
|
Show name, class, and date for all races.
|
CREATE TABLE race (CLASS VARCHAR)
|
SELECT CLASS, COUNT(*) FROM race GROUP BY CLASS
|
Show the race class and number of races in each class.
|
CREATE TABLE race (CLASS VARCHAR)
|
SELECT CLASS FROM race GROUP BY CLASS ORDER BY COUNT(*) DESC LIMIT 1
|
What is the race class with most number of races.
|
CREATE TABLE race (CLASS VARCHAR)
|
SELECT CLASS FROM race GROUP BY CLASS HAVING COUNT(*) >= 2
|
List the race class with at least two races.
|
CREATE TABLE race (track_id VARCHAR, class VARCHAR); CREATE TABLE track (name VARCHAR); CREATE TABLE track (name VARCHAR, track_id VARCHAR)
|
SELECT name FROM track EXCEPT SELECT T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id WHERE T1.class = 'GT'
|
What are the names for tracks without a race in class 'GT'.
|
CREATE TABLE track (name VARCHAR, track_id VARCHAR); CREATE TABLE race (name VARCHAR, track_id VARCHAR)
|
SELECT name FROM track WHERE NOT track_id IN (SELECT track_id FROM race)
|
Show all track names that have had no races.
|
CREATE TABLE track (year_opened VARCHAR, seating INTEGER)
|
SELECT year_opened FROM track WHERE seating BETWEEN 4000 AND 5000
|
Show year where a track with a seating at least 5000 opened and a track with seating no more than 4000 opened.
|
CREATE TABLE track (name VARCHAR, track_id VARCHAR); CREATE TABLE race (track_id VARCHAR)
|
SELECT T2.name, COUNT(*) FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id
|
Show the name of track and the number of races in each track.
|
CREATE TABLE track (name VARCHAR, track_id VARCHAR); CREATE TABLE race (track_id VARCHAR)
|
SELECT T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id ORDER BY COUNT(*) DESC LIMIT 1
|
Show the name of track with most number of races.
|
CREATE TABLE race (name VARCHAR, date VARCHAR, track_id VARCHAR); CREATE TABLE track (name VARCHAR, track_id VARCHAR)
|
SELECT T1.name, T1.date, T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id
|
Show the name and date for each race and its track name.
|
CREATE TABLE race (track_id VARCHAR); CREATE TABLE track (name VARCHAR, location VARCHAR, track_id VARCHAR)
|
SELECT T2.name, T2.location FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id HAVING COUNT(*) = 1
|
Show the name and location of track with 1 race.
|
CREATE TABLE track (LOCATION VARCHAR, seating INTEGER)
|
SELECT LOCATION FROM track WHERE seating > 90000 INTERSECT SELECT LOCATION FROM track WHERE seating < 70000
|
Find the locations where have both tracks with more than 90000 seats and tracks with less than 70000 seats.
|
CREATE TABLE member (Membership_card VARCHAR)
|
SELECT COUNT(*) FROM member WHERE Membership_card = 'Black'
|
How many members have the black membership card?
|
CREATE TABLE member (address VARCHAR)
|
SELECT COUNT(*), address FROM member GROUP BY address
|
Find the number of members living in each address.
|
CREATE TABLE member (name VARCHAR, address VARCHAR)
|
SELECT name FROM member WHERE address = 'Harford' OR address = 'Waterbury'
|
Give me the names of members whose address is in Harford or Waterbury.
|
CREATE TABLE member (name VARCHAR, member_id VARCHAR, Membership_card VARCHAR, age VARCHAR)
|
SELECT name, member_id FROM member WHERE Membership_card = 'Black' OR age < 30
|
Find the ids and names of members who are under age 30 or with black membership card.
|
CREATE TABLE member (Time_of_purchase VARCHAR, age VARCHAR, address VARCHAR)
|
SELECT Time_of_purchase, age, address FROM member ORDER BY Time_of_purchase
|
Find the purchase time, age and address of each member, and show the results in the order of purchase time.
|
CREATE TABLE member (Membership_card VARCHAR)
|
SELECT Membership_card FROM member GROUP BY Membership_card HAVING COUNT(*) > 5
|
Which membership card has more than 5 members?
|
CREATE TABLE member (address VARCHAR, age INTEGER)
|
SELECT address FROM member WHERE age < 30 INTERSECT SELECT address FROM member WHERE age > 40
|
Which address has both members younger than 30 and members older than 40?
|
CREATE TABLE member (membership_card VARCHAR, address VARCHAR)
|
SELECT membership_card FROM member WHERE address = 'Hartford' INTERSECT SELECT membership_card FROM member WHERE address = 'Waterbury'
|
What is the membership card held by both members living in Hartford and ones living in Waterbury address?
|
CREATE TABLE member (address VARCHAR)
|
SELECT COUNT(*) FROM member WHERE address <> 'Hartford'
|
How many members are not living in Hartford?
|
CREATE TABLE member (address VARCHAR, Membership_card VARCHAR)
|
SELECT address FROM member EXCEPT SELECT address FROM member WHERE Membership_card = 'Black'
|
Which address do not have any member with the black membership card?
|
CREATE TABLE shop (address VARCHAR, open_year VARCHAR)
|
SELECT address FROM shop ORDER BY open_year
|
Show the shop addresses ordered by their opening year.
|
CREATE TABLE shop (num_of_staff INTEGER, score INTEGER)
|
SELECT AVG(num_of_staff), AVG(score) FROM shop
|
What are the average score and average staff number of all shops?
|
CREATE TABLE shop (shop_id VARCHAR, address VARCHAR, score INTEGER)
|
SELECT shop_id, address FROM shop WHERE score < (SELECT AVG(score) FROM shop)
|
Find the id and address of the shops whose score is below the average score.
|
CREATE TABLE shop (address VARCHAR, num_of_staff VARCHAR, shop_id VARCHAR); CREATE TABLE happy_hour (address VARCHAR, num_of_staff VARCHAR, shop_id VARCHAR)
|
SELECT address, num_of_staff FROM shop WHERE NOT shop_id IN (SELECT shop_id FROM happy_hour)
|
Find the address and staff number of the shops that do not have any happy hour.
|
CREATE TABLE shop (address VARCHAR, shop_id VARCHAR); CREATE TABLE happy_hour (shop_id VARCHAR)
|
SELECT t1.address, t1.shop_id FROM shop AS t1 JOIN happy_hour AS t2 ON t1.shop_id = t2.shop_id WHERE MONTH = 'May'
|
What are the id and address of the shops which have a happy hour in May?
|
CREATE TABLE happy_hour (shop_id VARCHAR)
|
SELECT shop_id, COUNT(*) FROM happy_hour GROUP BY shop_id ORDER BY COUNT(*) DESC LIMIT 1
|
which shop has happy hour most frequently? List its id and number of happy hours.
|
CREATE TABLE happy_hour (MONTH VARCHAR)
|
SELECT MONTH FROM happy_hour GROUP BY MONTH ORDER BY COUNT(*) DESC LIMIT 1
|
Which month has the most happy hours?
|
CREATE TABLE happy_hour (MONTH VARCHAR)
|
SELECT MONTH FROM happy_hour GROUP BY MONTH HAVING COUNT(*) > 2
|
Which months have more than 2 happy hours?
|
CREATE TABLE ALBUM (Id VARCHAR)
|
SELECT COUNT(*) FROM ALBUM
|
How many albums are there?
|
CREATE TABLE GENRE (Name VARCHAR)
|
SELECT Name FROM GENRE
|
List the names of all music genres.
|
CREATE TABLE CUSTOMER (State VARCHAR)
|
SELECT * FROM CUSTOMER WHERE State = "NY"
|
Find all the customer information in state NY.
|
CREATE TABLE EMPLOYEE (FirstName VARCHAR, LastName VARCHAR, City VARCHAR)
|
SELECT FirstName, LastName FROM EMPLOYEE WHERE City = "Calgary"
|
What are the first names and last names of the employees who live in Calgary city.
|
CREATE TABLE INVOICE (BillingCountry VARCHAR)
|
SELECT DISTINCT (BillingCountry) FROM INVOICE
|
What are the distinct billing countries of the invoices?
|
CREATE TABLE ARTIST (Name VARCHAR)
|
SELECT Name FROM ARTIST WHERE Name LIKE "%a%"
|
Find the names of all artists that have "a" in their names.
|
CREATE TABLE ARTIST (ArtistId VARCHAR, Name VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR)
|
SELECT Title FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = "AC/DC"
|
Find the title of all the albums of the artist "AC/DC".
|
CREATE TABLE ARTIST (ArtistId VARCHAR, Name VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR)
|
SELECT COUNT(*) FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = "Metallica"
|
Hom many albums does the artist "Metallica" have?
|
CREATE TABLE ALBUM (ArtistId VARCHAR, Title VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR)
|
SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T1.Title = "Balls to the Wall"
|
Which artist does the album "Balls to the Wall" belong to?
|
CREATE TABLE ALBUM (ArtistId VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR)
|
SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId GROUP BY T2.Name ORDER BY COUNT(*) DESC LIMIT 1
|
Which artist has the most albums?
|
CREATE TABLE TRACK (Name VARCHAR)
|
SELECT Name FROM TRACK WHERE Name LIKE '%you%'
|
Find the names of all the tracks that contain the word "you".
|
CREATE TABLE TRACK (UnitPrice INTEGER)
|
SELECT AVG(UnitPrice) FROM TRACK
|
What is the average unit price of all the tracks?
|
CREATE TABLE TRACK (Milliseconds INTEGER)
|
SELECT MAX(Milliseconds), MIN(Milliseconds) FROM TRACK
|
What are the durations of the longest and the shortest tracks in milliseconds?
|
CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR)
|
SELECT T1.Title, T2.AlbumID, COUNT(*) FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId GROUP BY T2.AlbumID
|
Show the album names, ids and the number of tracks for each album.
|
CREATE TABLE GENRE (Name VARCHAR, GenreId VARCHAR); CREATE TABLE TRACK (GenreId VARCHAR)
|
SELECT T1.Name FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId GROUP BY T2.GenreId ORDER BY COUNT(*) DESC LIMIT 1
|
What is the name of the most common genre in all tracks?
|
CREATE TABLE MEDIATYPE (Name VARCHAR, MediaTypeId VARCHAR); CREATE TABLE TRACK (MediaTypeId VARCHAR)
|
SELECT T1.Name FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId GROUP BY T2.MediaTypeId ORDER BY COUNT(*) LIMIT 1
|
What is the least common media type in all tracks?
|
CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR, UnitPrice INTEGER)
|
SELECT T1.Title, T2.AlbumID FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 GROUP BY T2.AlbumID
|
Show the album names and ids for albums that contain tracks with unit price bigger than 1.
|
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
|
SELECT COUNT(*) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Rock"
|
How many tracks belong to rock genre?
|
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
|
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
|
What is the average unit price of tracks that belong to Jazz genre?
|
CREATE TABLE CUSTOMER (FirstName VARCHAR, LastName VARCHAR, Email VARCHAR)
|
SELECT FirstName, LastName FROM CUSTOMER WHERE Email = "luisg@embraer.com.br"
|
What is the first name and last name of the customer that has email "luisg@embraer.com.br"?
|
CREATE TABLE CUSTOMER (Email VARCHAR)
|
SELECT COUNT(*) FROM CUSTOMER WHERE Email LIKE "%gmail.com%"
|
How many customers have email that contains "gmail.com"?
|
CREATE TABLE CUSTOMER (SupportRepId VARCHAR, FirstName VARCHAR); CREATE TABLE EMPLOYEE (FirstName VARCHAR, LastName VARCHAR, EmployeeId VARCHAR)
|
SELECT T2.FirstName, T2.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.FirstName = "Leonie"
|
What is the first name and last name employee helps the customer with first name Leonie?
|
CREATE TABLE EMPLOYEE (City VARCHAR, EmployeeId VARCHAR); CREATE TABLE CUSTOMER (SupportRepId VARCHAR, PostalCode VARCHAR)
|
SELECT T2.City FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.PostalCode = "70174"
|
What city does the employee who helps the customer with postal code 70174 live in?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.