spider_version int64 1 2 | db_id stringclasses 204
values | schema stringclasses 187
values | question stringlengths 3 328 | query stringlengths 20 3.81k |
|---|---|---|---|---|
1 | allergy_1 | List the first and last name of the students who do not have any food type allergy. | SELECT fname , lname FROM Student WHERE StuID NOT IN (SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food") | |
1 | allergy_1 | What is the full name of each student who is not allergic to any type of food. | SELECT fname , lname FROM Student WHERE StuID NOT IN (SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food") | |
1 | allergy_1 | Find the number of male (sex is 'M') students who have some food type allery. | SELECT count(*) FROM Student WHERE sex = "M" AND StuID IN (SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food") | |
1 | allergy_1 | How many male students (sex is 'M') are allergic to any type of food? | SELECT count(*) FROM Student WHERE sex = "M" AND StuID IN (SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food") | |
1 | allergy_1 | Find the different first names and cities of the students who have allergy to milk or cat. | SELECT DISTINCT T1.fname , T1.city_code FROM Student AS T1 JOIN Has_Allergy AS T2 ON T1.stuid = T2.stuid WHERE T2.Allergy = "Milk" OR T2.Allergy = "Cat" | |
1 | allergy_1 | What are the distinct first names and cities of the students who have allergy either to milk or to cat? | SELECT DISTINCT T1.fname , T1.city_code FROM Student AS T1 JOIN Has_Allergy AS T2 ON T1.stuid = T2.stuid WHERE T2.Allergy = "Milk" OR T2.Allergy = "Cat" | |
1 | allergy_1 | Find the number of students who are older than 18 and do not have allergy to either food or animal. | SELECT count(*) FROM Student WHERE age > 18 AND StuID NOT IN ( SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food" OR T2.allergytype = "animal") | |
1 | allergy_1 | How many students are over 18 and do not have allergy to food type or animal type? | SELECT count(*) FROM Student WHERE age > 18 AND StuID NOT IN ( SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food" OR T2.allergytype = "animal") | |
1 | allergy_1 | Find the first name and major of the students who are not allegry to soy. | SELECT fname , major FROM Student WHERE StuID NOT IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Soy") | |
1 | allergy_1 | What are the first name and major of the students who are able to consume soy? | SELECT fname , major FROM Student WHERE StuID NOT IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Soy") | |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | A list of the top 5 countries by number of invoices. List country name and number of invoices. | SELECT billing_country , COUNT(*) FROM invoices GROUP BY billing_country ORDER BY count(*) DESC LIMIT 5; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the top 5 countries by number of invoices and how many do they have? | SELECT billing_country , COUNT(*) FROM invoices GROUP BY billing_country ORDER BY count(*) DESC LIMIT 5; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | A list of the top 8 countries by gross/total invoice size. List country name and gross invoice size. | SELECT billing_country , SUM(total) FROM invoices GROUP BY billing_country ORDER BY SUM(total) DESC LIMIT 8; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the names of the top 8 countries by total invoice size and what are those sizes? | SELECT billing_country , SUM(total) FROM invoices GROUP BY billing_country ORDER BY SUM(total) DESC LIMIT 8; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | A list of the top 10 countries by average invoice size. List country name and average invoice size. | SELECT billing_country , AVG(total) FROM invoices GROUP BY billing_country ORDER BY AVG(total) DESC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the names of the countries and average invoice size of the top countries by size? | SELECT billing_country , AVG(total) FROM invoices GROUP BY billing_country ORDER BY AVG(total) DESC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Find out 5 customers who most recently purchased something. List customers' first and last name. | SELECT T1.first_name , T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY T2.invoice_date DESC LIMIT 5; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the first and last names of the 5 customers who purchased something most recently? | SELECT T1.first_name , T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY T2.invoice_date DESC LIMIT 5; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Find out the top 10 customers by total number of orders. List customers' first and last name and the number of total orders. | SELECT T1.first_name , T1.last_name , COUNT(*) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the top 10 customers' first and last names by total number of orders and how many orders did they make? | SELECT T1.first_name , T1.last_name , COUNT(*) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the top 10 customers by total gross sales. List customers' first and last name and total gross sales. | SELECT T1.first_name , T1.last_name , SUM(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY SUM(T2.total) DESC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the top 10 customers' first and last names with the highest gross sales, and also what are the sales? | SELECT T1.first_name , T1.last_name , SUM(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY SUM(T2.total) DESC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the top 5 genres by number of tracks. List genres name and total tracks. | SELECT T1.name , COUNT(*) FROM genres AS T1 JOIN tracks AS T2 ON T2.genre_id = T1.id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 5; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many tracks does each genre have and what are the names of the top 5? | SELECT T1.name , COUNT(*) FROM genres AS T1 JOIN tracks AS T2 ON T2.genre_id = T1.id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 5; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List every album's title. | SELECT title FROM albums; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the titles of all the albums? | SELECT title FROM albums; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List every album ordered by album title in ascending order. | SELECT title FROM albums ORDER BY title; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the titles of all the albums alphabetically ascending? | SELECT title FROM albums ORDER BY title; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List every album whose title starts with A in alphabetical order. | SELECT title FROM albums WHERE title LIKE 'A%' ORDER BY title; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the titles of all albums that start with A in alphabetical order? | SELECT title FROM albums WHERE title LIKE 'A%' ORDER BY title; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the customers first and last name of 10 least expensive invoices. | SELECT T1.first_name , T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY total LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the first and last names of the customers with the 10 cheapest invoices? | SELECT T1.first_name , T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY total LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List total amount of invoice from Chicago, IL. | SELECT sum(total) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the total amount of money in the invoices billed from Chicago, Illinois? | SELECT sum(total) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the number of invoices from Chicago, IL. | SELECT COUNT(*) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many invoices were billed from Chicago, IL? | SELECT COUNT(*) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the number of invoices from the US, grouped by state. | SELECT billing_state , COUNT(*) FROM invoices WHERE billing_country = "USA" GROUP BY billing_state; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many invoices were billed from each state? | SELECT billing_state , COUNT(*) FROM invoices WHERE billing_country = "USA" GROUP BY billing_state; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the state in the US with the most invoices. | SELECT billing_state , COUNT(*) FROM invoices WHERE billing_country = "USA" GROUP BY billing_state ORDER BY COUNT(*) DESC LIMIT 1; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the states with the most invoices? | SELECT billing_state , COUNT(*) FROM invoices WHERE billing_country = "USA" GROUP BY billing_state ORDER BY COUNT(*) DESC LIMIT 1; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the number of invoices and the invoice total from California. | SELECT billing_state , COUNT(*) , SUM(total) FROM invoices WHERE billing_state = "CA"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the number of invoices and total money billed in them from CA? | SELECT billing_state , COUNT(*) , SUM(total) FROM invoices WHERE billing_state = "CA"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List Aerosmith's albums. | SELECT T1.title FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = "Aerosmith"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the titles of all the Aerosmith albums? | SELECT T1.title FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = "Aerosmith"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many albums does Billy Cobham has? | SELECT count(*) FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = "Billy Cobham"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many albums has Billy Cobam released? | SELECT count(*) FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = "Billy Cobham"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Eduardo Martins is a customer at which company? | SELECT company FROM customers WHERE first_name = "Eduardo" AND last_name = "Martins"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the company where Eduardo Martins is a customer? | SELECT company FROM customers WHERE first_name = "Eduardo" AND last_name = "Martins"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is Astrid Gruber's email and phone number? | SELECT email , phone FROM customers WHERE first_name = "Astrid" AND last_name = "Gruber"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the email and phone number of Astrid Gruber the customer? | SELECT email , phone FROM customers WHERE first_name = "Astrid" AND last_name = "Gruber"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many customers live in Prague city? | SELECT count(*) FROM customers WHERE city = "Prague"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many customers live in the city of Prague? | SELECT count(*) FROM customers WHERE city = "Prague"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many customers in state of CA? | SELECT count(*) FROM customers WHERE state = "CA"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many customers are from California? | SELECT count(*) FROM customers WHERE state = "CA"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What country does Roberto Almeida live? | SELECT country FROM customers WHERE first_name = "Roberto" AND last_name = "Almeida"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | In which country does Roberto Almeida? | SELECT country FROM customers WHERE first_name = "Roberto" AND last_name = "Almeida"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the name of albums that are released by aritist whose name has 'Led' | SELECT T2.title FROM artists AS T1 JOIN albums AS T2 ON T1.id = T2.artist_id WHERE T1.name LIKE '%Led%' |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the title of the album that was released by the artist whose name has the phrase 'Led'? | SELECT T2.title FROM artists AS T1 JOIN albums AS T2 ON T1.id = T2.artist_id WHERE T1.name LIKE '%Led%' |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many customers does Steve Johnson support? | SELECT count(*) FROM employees AS T1 JOIN customers AS T2 ON T2.support_rep_id = T1.id WHERE T1.first_name = "Steve" AND T1.last_name = "Johnson"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the count of customers that Steve Johnson supports? | SELECT count(*) FROM employees AS T1 JOIN customers AS T2 ON T2.support_rep_id = T1.id WHERE T1.first_name = "Steve" AND T1.last_name = "Johnson"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the title, phone and hire date of Nancy Edwards? | SELECT title , phone , hire_date FROM employees WHERE first_name = "Nancy" AND last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the title, phone number and hire date for the employee named Nancy Edwards? | SELECT title , phone , hire_date FROM employees WHERE first_name = "Nancy" AND last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | find the full name of employees who report to Nancy Edwards? | SELECT T2.first_name , T2.last_name FROM employees AS T1 JOIN employees AS T2 ON T1.id = T2.reports_to WHERE T1.first_name = "Nancy" AND T1.last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the first and last name of the employee who reports to Nancy Edwards? | SELECT T2.first_name , T2.last_name FROM employees AS T1 JOIN employees AS T2 ON T1.id = T2.reports_to WHERE T1.first_name = "Nancy" AND T1.last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the address of employee Nancy Edwards? | SELECT address FROM employees WHERE first_name = "Nancy" AND last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is Nancy Edwards's address? | SELECT address FROM employees WHERE first_name = "Nancy" AND last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Find the full name of employee who supported the most number of customers. | SELECT T1.first_name , T1.last_name FROM employees AS T1 JOIN customers AS T2 ON T1.id = T2.support_rep_id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 1 |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the full name of the employee who has the most customers? | SELECT T1.first_name , T1.last_name FROM employees AS T1 JOIN customers AS T2 ON T1.id = T2.support_rep_id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 1 |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many employees are living in Canada? | SELECT count(*) FROM employees WHERE country = "Canada"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many employees live in Canada? | SELECT count(*) FROM employees WHERE country = "Canada"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is employee Nancy Edwards's phone number? | SELECT phone FROM employees WHERE first_name = "Nancy" AND last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the the phone number of Nancy Edwards? | SELECT phone FROM employees WHERE first_name = "Nancy" AND last_name = "Edwards"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Who is the youngest employee in the company? List employee's first and last name. | SELECT first_name , last_name FROM employees ORDER BY birth_date DESC LIMIT 1; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What si the youngest employee's first and last name? | SELECT first_name , last_name FROM employees ORDER BY birth_date DESC LIMIT 1; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List top 10 employee work longest in the company. List employee's first and last name. | SELECT first_name , last_name FROM employees ORDER BY hire_date ASC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the first and last names of the top 10 longest-serving employees? | SELECT first_name , last_name FROM employees ORDER BY hire_date ASC LIMIT 10; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Find the number of employees whose title is IT Staff from each city? | SELECT count(*) , city FROM employees WHERE title = 'IT Staff' GROUP BY city |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many employees who are IT staff are from each city? | SELECT count(*) , city FROM employees WHERE title = 'IT Staff' GROUP BY city |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Which employee manage most number of peoples? List employee's first and last name, and number of people report to that employee. | SELECT T2.first_name , T2.last_name , count(T1.reports_to) FROM employees AS T1 JOIN employees AS T2 ON T1.reports_to = T2.id GROUP BY T1.reports_to ORDER BY count(T1.reports_to) DESC LIMIT 1; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the first and last names of all the employees and how many people report to them? | SELECT T2.first_name , T2.last_name , count(T1.reports_to) FROM employees AS T1 JOIN employees AS T2 ON T1.reports_to = T2.id GROUP BY T1.reports_to ORDER BY count(T1.reports_to) DESC LIMIT 1; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many orders does Lucas Mancini has? | SELECT count(*) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = "Lucas" AND T1.last_name = "Mancini"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many orders does Luca Mancini have in his invoices? | SELECT count(*) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = "Lucas" AND T1.last_name = "Mancini"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the total amount of money spent by Lucas Mancini? | SELECT sum(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = "Lucas" AND T1.last_name = "Mancini"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How much money did Lucas Mancini spend? | SELECT sum(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = "Lucas" AND T1.last_name = "Mancini"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List all media types. | SELECT name FROM media_types; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the names of all the media types? | SELECT name FROM media_types; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List all different genre types. | SELECT DISTINCT name FROM genres; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the different names of the genres? | SELECT DISTINCT name FROM genres; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List the name of all playlist. | SELECT name FROM playlists; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What are the names of all the playlists? | SELECT name FROM playlists; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | Who is the composer of track Fast As a Shark? | SELECT composer FROM tracks WHERE name = "Fast As a Shark"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the composer who created the track "Fast As a Shark"? | SELECT composer FROM tracks WHERE name = "Fast As a Shark"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How long does track Fast As a Shark has? | SELECT milliseconds FROM tracks WHERE name = "Fast As a Shark"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | How many milliseconds long is Fast As a Shark? | SELECT milliseconds FROM tracks WHERE name = "Fast As a Shark"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the name of tracks whose genre is Rock? | SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.name = "Rock"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the name of all tracks in the Rock genre? | SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.name = "Rock"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is title of album which track Balls to the Wall belongs to? | SELECT T1.title FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T2.name = "Balls to the Wall"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the name of the album that has the track Ball to the Wall? | SELECT T1.title FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T2.name = "Balls to the Wall"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | List name of all tracks in Balls to the Wall. | SELECT T2.name FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.title = "Balls to the Wall"; |
1 | store_1 | /*******************************************************************************
Create Tables
********************************************************************************/
CREATE TABLE artists
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(120)
);
CREATE TABLE albums
(
id INTEGER PRIMARY KEY A... | What is the name of all tracks in the album named Balls to the Wall? | SELECT T2.name FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.title = "Balls to the Wall"; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.