db_id
stringclasses
68 values
question
stringlengths
24
325
evidence
stringlengths
0
580
SQL
stringlengths
23
728
movie_3
How many customers live in the city of Miyakonojo?
SELECT COUNT(T3.customer_id) FROM city AS T1 INNER JOIN address AS T2 ON T1.city_id = T2.city_id INNER JOIN customer AS T3 ON T2.address_id = T3.address_id WHERE T1.city = 'Miyakonojo'
movie_3
How many non-active clients have not returned the rented material?
non-active clients refers to active = 0; not returning a rented material refers to rental_date is null
SELECT COUNT(T2.customer_id) FROM rental AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T2.active = 0
movie_3
What is the title of the animated films that have the shortest length?
animated film means animation; animation is a name of a category
SELECT T1.title FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id ORDER BY T1.length LIMIT 1
movie_3
In which country is the store where Hector Poinexter rents equipment located?
'Hector Poinexter' is a full name of a customer; full name refers to first_name, last_name;
SELECT T5.country FROM customer AS T1 INNER JOIN store AS T2 ON T1.store_id = T2.store_id INNER JOIN address AS T3 ON T2.address_id = T3.address_id INNER JOIN city AS T4 ON T3.city_id = T4.city_id INNER JOIN country AS T5 ON T4.country_id = T5.country_id WHERE T1.first_name = 'HECTOR' AND T1.last_name = 'POINDEXTER'
movie_3
What is the average rental payment in Horror movies?
'Horror' is a name of a category; average rental payment refers to AVG(amount)
SELECT AVG(T5.amount) FROM category AS T1 INNER JOIN film_category AS T2 ON T1.category_id = T2.category_id INNER JOIN inventory AS T3 ON T2.film_id = T3.film_id INNER JOIN rental AS T4 ON T3.inventory_id = T4.inventory_id INNER JOIN payment AS T5 ON T4.rental_id = T5.rental_id WHERE T1.name = 'Horror'
movie_3
What is the average amount of rent that Christy Vargas paid?
'Christy Vargas' is a full name of a customer; full name refers to first_name, last_name; average amount of rent refers to AVG(amount)
SELECT AVG(T2.amount) FROM customer AS T1 INNER JOIN payment AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'CHRISTY' AND T1.Last_name = 'VARGAS'
movie_3
What are the address numbers that are located in Gansu district?
address numbers refers to address_id;
SELECT address_id FROM address WHERE district = 'Gansu'
movie_3
Please list three types of film along with their IDs and the latest update.
types of film refers to the name of a category; IDs refers to category_id; latest update refers to last_update.
SELECT DISTINCT name, category_id, last_update FROM category LIMIT 3
movie_3
Please list the full names of any three inactive customers.
full name refers to first_name, last_name; inactive customers refers to active = 0
SELECT first_name, last_name FROM customer WHERE active = 0 LIMIT 3
movie_3
What is the rental price per day for Airplane Sierra?
rental price per day refers to DIVIDE(rental_price, rental_duration); 'Airplane Sierra' is a title of a film
SELECT rental_rate / rental_duration AS result FROM film WHERE title = 'AIRPLANE SIERRA'
movie_3
Where is store number 2 located?
store number 2 refers to store_id = 2; where is a store located refers to address, address2, district
SELECT T1.address, T1.address2, T1.district FROM address AS T1 INNER JOIN store AS T2 ON T1.address_id = T2.address_id WHERE T2.store_id = 2
movie_3
Which city does the address 1623 Kingstown Drive belong to?
SELECT T1.city FROM city AS T1 INNER JOIN address AS T2 ON T2.city_id = T1.city_id WHERE T2.address = '1623 Kingstown Drive'
movie_3
Please name three cities that belong to Algeria.
Algeria is a country
SELECT T2.city FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id WHERE T1.country = 'Algeria'
movie_3
What is the category of the film Agent Truman?
'Agent Truman' is a title of a film; category refers to name
SELECT T3.name FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T1.title = 'AGENT TRUMAN'
movie_3
Please list the titles of any three action films.
action is a name of category
SELECT T1.title FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'Action' LIMIT 3
movie_3
Who is the customer that is active and lives at 1795 Santiago de Compostela Way, Texas?
active refers to active = 1; '1795 Santiago de Compostela Way' is an address; Texas is a district; who refers to first_name, last_name
SELECT T1.first_name, T1.last_name FROM customer AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T2.address = '1795 Santiago de Compostela Way' AND T1.active = 1
movie_3
How many English films have a duration of over 50 minutes and the cost of replacement are under 10.99?
English is a name of a language; duration of over 50 minutes refers to length > 50; cost of replacement are under 10.99 refers to replacement_cost < 10.99
SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T2.name = 'English' AND T1.length > 50 AND T1.replacement_cost < 10.99
movie_3
Who are the actors that act in the ACADEMY DINOSAUR film?
Who are the actors refers to full name; full name refers to first_name, last_name; 'ACADEMY DINOSAUR' is a title of a film
SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'ACADEMY DINOSAUR'
movie_3
How many films in English are for adults only?
English is a name of a language; for adults only refers to rating = 'NC-17'
SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T2.name = 'English' AND T1.rating = 'NC-17'
movie_3
Which film has the longest duration?
film refers to the title; the longest duration refers to MAX(length)
SELECT title FROM film WHERE length = ( SELECT MAX(length) FROM film )
movie_3
How many of the actors are named "Dan"?
'Dan' is a first_name of an actor
SELECT COUNT(actor_id) FROM actor WHERE first_name = 'Dan'
movie_3
What is the most common first name among the customers?
the most common first name refers to MAX(COUNT(first_name))
SELECT first_name FROM customer GROUP BY first_name ORDER BY COUNT(first_name) DESC LIMIT 1
movie_3
What are the ratings of the film featuring behind the scenes?
film featuring behind the scenes refers to special_features = 'Behind the Scenes'
SELECT rating FROM film WHERE special_features LIKE '%Behind the Scenes%'
movie_3
What is the largest number of films rented per customer?
the largest number of films refers to MAX(rental_id)
SELECT COUNT(rental_id) FROM rental GROUP BY customer_id ORDER BY COUNT(rental_id) DESC LIMIT 1
movie_3
List all the films with the word "Lacklusture" in their description.
films refers to title
SELECT title FROM film_text WHERE description LIKE '%Lacklusture%'
movie_3
How many films did a customer named Francis Sikes rent?
'Francis Sikes' is a full name of a customer; full name refers to first_name, last_name;
SELECT COUNT(T1.customer_id) FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'FRANCIS' AND T1.last_name = 'SIKES'
movie_3
Who is the manager of the store with the largest collection of films?
Who refers to first_name, last_name; the largest collection of films refers to MAX(film_id)
SELECT T.first_name, T.last_name FROM ( SELECT T3.first_name, T3.last_name, COUNT(T1.film_id) AS num FROM inventory AS T1 INNER JOIN store AS T2 ON T1.store_id = T2.store_id INNER JOIN staff AS T3 ON T2.manager_staff_id = T3.staff_id GROUP BY T3.first_name, T3.last_name ) AS T ORDER BY T.num DESC LIMIT 1
movie_3
What are the addresses of the inactive customers?
inactive customers refers to active = 0;
SELECT T2.address FROM customer AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.active = 0
movie_3
Which category is the most common?
most common category refers to MAX(COUNT(category.name))
SELECT T.name FROM ( SELECT T2.name, COUNT(T2.name) AS num FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id GROUP BY T2.name ) AS T ORDER BY T.num DESC LIMIT 1
movie_3
Provide the cast for the film "Jason trap".
'Jason trap' is a title of a film; cast means actor; actor refers to first_name, last_name
SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'JASON TRAP'
movie_3
Who is the customer with the largest payment for rental films?
Who refers to first_name, last_name; the largest payment for rental refers to MAX(SUM(amount))
SELECT T.first_name, T.last_name FROM ( SELECT T1.first_name, T1.last_name, SUM(T2.amount) AS num FROM customer AS T1 INNER JOIN payment AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.first_name, T1.last_name ) AS T ORDER BY T.num DESC LIMIT 1
movie_3
List the top 5 most-rented films.
film refers to title; most rented refers to MAX(inventory_id)
SELECT T.title FROM ( SELECT T3.title, COUNT(T2.inventory_id) AS num FROM rental AS T1 INNER JOIN inventory AS T2 ON T1.inventory_id = T2.inventory_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id GROUP BY T3.title ) AS T ORDER BY T.num DESC LIMIT 5
movie_3
Which country does Sasebo belong to?
'Sasebo' is a city
SELECT T1.country FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id WHERE T2.city = 'Sasebo'
movie_3
What are the addresses for the stores?
SELECT T2.address FROM store AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id
movie_3
List all the animation titles.
'animation' is a name of a category
SELECT T3.title AS per FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T2.name = 'Animation'
movie_3
What is the city with the most customers?
the most customers refers to MAX(COUNT(customer_id))
SELECT T.city FROM ( SELECT T1.city, COUNT(T3.customer_id) AS num FROM city AS T1 INNER JOIN address AS T2 ON T2.city_id = T1.city_id INNER JOIN customer AS T3 ON T2.address_id = T3.address_id GROUP BY T1.city ) AS T ORDER BY T.num DESC LIMIT 1
movie_3
Which actor acted in the most films?
actor refers to first_name, last_name; the most film refers to MAX(SUM(film_id))
SELECT T.first_name, T.last_name FROM ( SELECT T2.first_name, T2.last_name, SUM(T1.film_id) AS num FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.first_name, T2.last_name ) AS T ORDER BY T.num DESC LIMIT 1
movie_3
Please indicate the full name of actor id 5.
full name refers to first_name, last_name
SELECT first_name, last_name FROM actor WHERE actor_id = 5
movie_3
How many id movies have category id 11?
id movies refers to film_id
SELECT COUNT(film_id) FROM film_category WHERE category_id = 11
movie_3
Give the full name of the actor with the highest rental rate.
full name refers to first_name, last_name; the highest rental rate refers to max(rental_rate)
SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T3.film_id = T2.film_id ORDER BY T3.rental_rate DESC LIMIT 1
movie_3
List the full names of customers who have paid more than 10$.
full name refers to first_name, last_name; more than 10$ refers to amount > 10
SELECT T2.first_name, T2.last_name FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T1.amount > 10
movie_3
How many customers have an address in Abu Dhabi city? List those customer names.
name refers to first_name, last_name
SELECT COUNT(T1.city_id) FROM city AS T1 INNER JOIN address AS T2 ON T1.city_id = T2.city_id INNER JOIN customer AS T3 ON T2.address_id = T3.address_id WHERE T1.city = 'Abu Dhabi'
movie_3
Please provide the full name of the customer at 692 Joliet Street.
full name refers to first_name, last_name; 692 Joliet Street refers to address = '692 Joliet Street'
SELECT T2.first_name, T2.last_name FROM address AS T1 INNER JOIN customer AS T2 ON T1.address_id = T2.address_id WHERE T1.address = '692 Joliet Street'
movie_3
Which actor acted in ANONYMOUS HUMAN?
actor refers to first_name, last_name; ANONYMOUS HUMAN refers to title = 'ANONYMOUS HUMAN'
SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T3.film_id = T2.film_id WHERE T3.title = 'ANONYMOUS HUMAN'
movie_3
Calculate the total payment amount of customers in Nagasaki district.
the total payment amount refers to sum(amount)
SELECT SUM(T1.amount) FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id INNER JOIN address AS T3 ON T3.address_id = T2.address_id WHERE T3.district = 'Nagasaki'
movie_3
List down film titles from id 1 to 10.
id 1 to 10 refers to film_id BETWEEN 1 and 10
SELECT title FROM film WHERE film_id BETWEEN 1 AND 10
movie_3
List down all of the film IDs with highest rental duration.
highest rental duration refers to max(rental_duration)
SELECT film_id FROM film WHERE rental_duration = ( SELECT MAX(rental_duration) FROM film )
movie_3
Which film titles have the most expensive rental rate?
the most expensive rental rate refers to max(rental_rate)
SELECT title FROM film WHERE rental_rate = ( SELECT MAX(rental_rate) FROM film )
movie_3
List down all of the film titles that are rated for general audiences.
rated for general audiences means rating = 'G'
SELECT title FROM film WHERE rating = 'G'
movie_3
How many animation film titles are rated for adults only?
animation film refers to category.name = 'animation'; for adults only means rating = 'NC-17'
SELECT COUNT(T1.title) FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'animation' AND T1.rating = 'NC-17'
movie_3
What is the category of film titled "BLADE POLISH"?
SELECT T3.name FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T3.category_id = T2.category_id WHERE T1.title = 'BLADE POLISH'
movie_3
What is Mary Smith's rental ID?
SELECT T2.rental_id FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'MARY' AND T1.last_name = 'SMITH'
movie_3
List down all of the customers' first name who were attended by staff with ID 1.
SELECT DISTINCT T1.first_name, T1.last_name FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T2.staff_id = 1
movie_3
List down email address of customers who were attended by staff with ID 2.
email address refers to email
SELECT DISTINCT T1.email FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T2.staff_id = 2
movie_3
List down the actor IDs of film titled "BOUND CHEAPER".
SELECT T2.actor_id FROM film AS T1 INNER JOIN film_actor AS T2 ON T1.film_id = T2.film_id WHERE T1.title = 'BOUND CHEAPER'
movie_3
What is the inventory ID of Karen Jackson?
SELECT T2.inventory_id FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'KAREN' AND T1.last_name = 'JACKSON'
movie_3
List down all film titles starred by Jane Jackman.
SELECT T1.title FROM film AS T1 INNER JOIN film_actor AS T2 ON T1.film_id = T2.film_id INNER JOIN actor AS T3 ON T2.actor_id = T3.actor_id WHERE T3.first_name = 'JANE' AND T3.last_name = 'JACKMAN'
movie_3
Who are the actors of film titled "BIRD INDEPENDENCE"?
actor refers to first_name, last_name
SELECT T3.first_name, T3.last_name FROM film AS T1 INNER JOIN film_actor AS T2 ON T1.film_id = T2.film_id INNER JOIN actor AS T3 ON T2.actor_id = T3.actor_id WHERE T1.title = 'BIRD INDEPENDENCE'
movie_3
Among the adult films, how many of them have a rental duration of fewer than 4 days?
adult film refers to rating = 'NC-17'; rental duration of fewer than 4 days refers to rental_duration < 4
SELECT COUNT(film_id) FROM film WHERE rating = 'NC-17' AND rental_duration < 4
movie_3
Write down the email addresses of active customers who rented between 5/25/2005 at 7:37:47 PM and 5/26/2005 at 10:06:49 AM.
email address refers to email; active refers to active = 1; between 5/25/2005 at 7:37:47 PM and 5/26/2005 at 10:06:49 AM refers to rental_date between '2005-5-25 07:37:47' and '2005-5-26 10:06:49'
SELECT T2.email FROM rental AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T1.rental_date BETWEEN '2005-5-25 07:37:47' AND '2005-5-26 10:06:49' AND T2.active = 1
movie_3
Compute the total payment made by Sarah Lewis for film rentals so far.
total payment = sum(amount)
SELECT SUM(T3.amount) FROM rental AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id INNER JOIN payment AS T3 ON T1.rental_id = T3.rental_id WHERE T2.first_name = 'SARAH' AND T2.last_name = 'LEWIS'
movie_3
From 5/30/2005 at 3:43:54 AM to 7/31/2005 at 10:08:29 PM, how many times did Susan Wilson pay for film rentals?
from 5/30/2005 at 3:43:54 AM to 7/31/2005 at 10:08:29 PM refers to payment_date between '2005-05-30 03:43:54' and '2005-07-31 10:08:29'
SELECT COUNT(T1.customer_id) FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T1.payment_date BETWEEN '2005-05-30 03:43:54' AND '2005-07-31 10:08:29'
movie_3
Tally the full names of actors in the film "Alabama Devil."
full name refers to first_name, last_name; "Alabama Devil" refers to title = 'ALABAMA DEVIL'
SELECT T2.first_name, T2.last_name FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T3.title = 'ALABAMA DEVIL'
movie_3
Tell me the title of the film in which Sandra Kilmer is one of the actors.
SELECT T3.title FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T2.first_name = 'SANDRA' AND T2.last_name = 'KILMER'
movie_3
How many documentary films are rated PG-13?
documentary film refers to category.name = 'documentary'; rated PG-13 refers to rating = 'PG-13'
SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'Documentary' AND T1.rating = 'PG-13'
movie_3
Give me the title and category name of films whose price per day is more than $30. Please include their special features.
category name refers to category.name; price per day is more than $30 refers to multiply(rental_duration, rental_rate) > 30
SELECT T1.title, T3.name, T1.special_features FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T1.rental_duration * T1.rental_rate > 30
movie_3
Name the cast members of the movie 'African Egg'.
cast member name refers to first_name, last_name; 'African Egg' refers to title = 'AFRICAN EGG'
SELECT T2.first_name, T2.last_name FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T3.title = 'AFRICAN EGG'
movie_3
Identify the number of movies rented by Maria Miller.
SELECT COUNT(T2.rental_id) FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'Maria' AND T1.last_name = 'Miller'
movie_3
Name the most recent movie rented by Dorothy Taylor.
movie name refers to title; the most recent refers to max(rental_date)
SELECT T4.title FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id WHERE T1.first_name = 'DOROTHY' AND T1.last_name = 'TAYLOR' ORDER BY T2.rental_date DESC LIMIT 1
movie_3
Determine the number of action movies available for rent.
action movie refers to category.name = 'Action'
SELECT COUNT(T2.film_id) FROM category AS T1 INNER JOIN film_category AS T2 ON T1.category_id = T2.category_id WHERE T1.name = 'Action'
movie_3
Where can you rent the movie 'Wyoming Storm'? Identify the address of the rental store and the rental rate.
'Wyoming Storm' refers to title = 'WYOMING STORM'
SELECT T2.store_id, T1.address, T4.rental_rate FROM address AS T1 INNER JOIN store AS T2 ON T1.address_id = T2.address_id INNER JOIN inventory AS T3 ON T2.store_id = T3.store_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id WHERE T4.title = 'WYOMING STORM'
movie_3
Identify the number of movies that starred Nick Stallone.
SELECT COUNT(T1.film_id) FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id AND T2.first_name = 'NICK' AND T2.last_name = 'STALLONE'
movie_3
Name the movie with the highest rental revenue among the shortest films.
movie name refers to title; the highest rental revenue refers to max(multiply(rental_duration, rental_rate)); the shortest film refers to min(length)
SELECT title FROM film WHERE length = ( SELECT MIN(length) FROM film ) ORDER BY rental_duration * rental_rate DESC LIMIT 1
movie_3
What is the average rental rate for PG-13 rated movies?
PG-13 rated movie refers to rating = 'PG-13'; average rental rate = avg(rental_rate)
SELECT AVG(rental_rate) FROM film WHERE rating = 'PG-13'
movie_3
Indicate the percentage of inactive customers at store no.1.
inactive refers to active = 0; store no.1 refers to store_id = 1; percentage = divide(count(customer_id where active = 0), count(customer_id)) * 100% where store_id = 1
SELECT CAST(SUM(CASE WHEN active = 0 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(customer_id) FROM customer WHERE store_id = 1
movie_3
For how long can you rent the movie 'Dirty Ace'?
length refers to rental_duration; 'Dirty Ace' refers to title = 'DIRTY ACE'
SELECT rental_duration FROM film WHERE title = 'DIRTY ACE'
movie_3
Identify the full name of the customer, who has the following email address: SHEILA.WELLS@sakilacustomer.org.
full name refers to first_name, last_name
SELECT first_name, last_name FROM customer WHERE email = 'SHEILA.WELLS@sakilacustomer.org'
movie_3
Provide the list of the longest movies. Arrange these titles in alphabetical order.
the longest refers to max(length)
SELECT title FROM film WHERE length = ( SELECT MAX(length) FROM film )
movie_3
How many film categories are there?
SELECT COUNT(DISTINCT category_id) FROM category
movie_3
How many customers are still active?
active refers to active = 1
SELECT COUNT(customer_id) FROM customer WHERE active = 1
movie_3
List all the films that are rated as PG-13.
film refers to title; rated as PG-13 refers to rating = 'PG-13'
SELECT title FROM film WHERE rating = 'PG-13'
movie_3
List at least 10 films that the customers can rent for more than 5 days.
film refers to title; rent for more than 5 days refers to rental_duration > 5
SELECT T.title FROM ( SELECT T1.title, COUNT(T3.customer_id) AS num FROM film AS T1 INNER JOIN inventory AS T2 ON T1.film_id = T2.film_id INNER JOIN rental AS T3 ON T2.inventory_id = T3.inventory_id WHERE T1.rental_duration > 5 GROUP BY T1.title ) AS T WHERE T.num > 10
movie_3
List all the cities that belong to United Arab Emirates.
United Arab Emirates refers to country = 'United Arab Emirates'
SELECT T1.city FROM city AS T1 INNER JOIN country AS T2 ON T2.country_id = T1.country_id WHERE country = 'United Arab Emirates'
movie_3
List at least 5 customers who paid greater than $10. Provide the full name of the customers.
full name refers to first_name, last_name; greater than $10 refers to amount > 10
SELECT T2.first_name, T2.last_name FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T1.amount > 10
movie_3
What films did Burt Dukakis got star in?
film refers to title
SELECT T3.title FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T2.first_name = 'BURT' AND T2.last_name = 'DUKAKIS'
movie_3
Provide the full name of all the actors of the film "Ending Crowds".
full name refers to first_name, last_name; film "Ending Crowds" refers to title = 'ENDING CROWDS'
SELECT T2.first_name, T2.last_name FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T3.title = 'ENDING CROWDS'
movie_3
Who are the actors starred in the film "Bound Cheaper"?
actor refers to first_name, last_name; film "Bound Cheaper" refers to title = 'BOUND CHEAPER'
SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'BOUND CHEAPER'
movie_3
List all the films that Karl Berr starred in and rated as PG.
film refers to title; rated as PG refers to rating = 'PG'
SELECT T3.title FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'KARL' AND T1.last_name = 'BERRY' AND T3.rating = 'PG'
movie_3
List at least 3 cities under the country of Philippines.
SELECT T1.city FROM city AS T1 INNER JOIN country AS T2 ON T2.country_id = T1.country_id WHERE country = 'Philippines'
movie_3
What are the films that are least rented by the customers?
film refers to title; least rented refers to count(min(customer_id))
SELECT T.title FROM ( SELECT T3.title, COUNT(T1.customer_id) AS num FROM rental AS T1 INNER JOIN inventory AS T2 ON T1.inventory_id = T2.inventory_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id GROUP BY T3.title ) AS T ORDER BY T.num DESC LIMIT 1
movie_3
List all the description of the films starring Lucille Tracy?
SELECT T1.film_id FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id WHERE T2.first_name = 'LUCILLE' AND T2.last_name = 'TRACY'
movie_3
Which category is the film "Beach Heartbreakers" falls into?
category refers to name; film "Beach Heartbreakers" refers to title = 'BEACH HEARTBREAKERS'
SELECT T3.name FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T1.title = 'BEACH HEARTBREAKERS'
movie_3
List at least 10 films that falls into the Horror category.
film refers to title; Horror category refers to category.name = 'Horror'
SELECT T1.title FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'Horror'
movie_3
Who among the actors starred in a NC-17 rated film? Provide only the last name of the actors.
NC-17 rated refers to rating = 'NC-17'
SELECT T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.rating = 'NC-17'
movie_3
Calculate the average rate of renting the film that Lucille Tracy got starred.
average rate = divide(sum(rental_rate), count(film_id))
SELECT AVG(T3.rental_rate) FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'LUCILLE' AND T1.last_name = 'TRACY'
movie_3
How many films have a duration between 100 to 110 minutes?
duration between 100 to 110 minutes refers to length between 100 and 110
SELECT COUNT(film_id) FROM film WHERE length BETWEEN 100 AND 110
movie_3
Among the active customers, how many of them have Nina as their first name?
active refers to active = 1
SELECT COUNT(customer_id) FROM customer WHERE first_name = 'Nina' AND active = 1
movie_3
In store ID 2, how many of the films are R rating?
R rating refers to rating = 'R'
SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN inventory AS T2 ON T1.film_id = T2.film_id WHERE T2.store_id = 2 AND T1.rating = 'R'
movie_3
In films with a rental rate of 2.99, how many of the films are starred by Nina Soto?
a rental rate of 2.99 refers to rental_rate = 2.99
SELECT COUNT(T1.film_id) FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T3.rental_rate = 2.99 AND T2.first_name = 'Nina' AND T2.last_name = 'Soto'
movie_3
What is the postal code of the address 692 Joliet Street?
SELECT postal_code FROM address WHERE address = '692 Joliet Street'