You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Get all the data from tables actor, film and customer.
*/
SELECT*FROMsakila.actor;
SELECT*FROMsakila.film;
SELECT*FROMsakila.customer;
/* Get film titles.*/
SELECT title FROMsakila.film;
/* Get unique list of film languages under the alias language.
Note that we are not asking you to obtain the language per each film, but this is a good time to think about how you might get that information in the future..*/
SELECT`language_id`FROM`sakila`.`film`;
/* 5.1 Find out how many stores does the company have?.*/
SELECT`address_id`FROMsakila.store;
/* 5.2 Find out how many employees staff does the company have?.*/
SELECT staff_id FROMsakila.staff;
/* 5.3 Return a list of employee first names only?.*/