View NICER_BUT_SLOWER_FILM_LIST
This view contains a formatted view of the FILM table, with a comma-separated list of the film's actors. The view differs from the FILM_LIST view in the list of actors. The lettercase of the actor names is adjusted so that the first letter of each name is capitalized, rather than having the name in all-caps. As indicated in its name, this view performs additional processing and therefore takes longer to return data than the FILM_LIST view. The view incorporates data from the FILM, CATEGORY, FILM_CATEGORY, ACTOR, and FILM_ACTOR tables.
Query
SQL
SELECT
film.film_id AS FID,
film.title AS title,
film.description AS description,
category.name AS category,
film.rental_rate AS price,
film.length AS length,
film.rating AS rating,
LIST(
UPPER(SUBSTRING(actor.first_name from 1 for 1))||LOWER(SUBSTRING(actor.first_name from 2 for CHAR_LENGTH(actor.first_name)))||' '||
UPPER(SUBSTRING(actor.last_name from 1 for 1))||LOWER(SUBSTRING(actor.last_name from 2 for CHAR_LENGTH(actor.last_name))), ', ') AS actors
FROM
film
LEFT JOIN
film_category ON film_category.film_id = film.film_id
LEFT JOIN
category ON category.category_id = film_category.category_id
LEFT JOIN
film_actor ON film.film_id = film_actor.film_id
LEFT JOIN
actor ON film_actor.actor_id = actor.actor_id
GROUP BY
film.film_id,
category.name,
film.title,
film.description,
film.rental_rate,
film.length,
film.rating
Columns
This view contains 8 columns.
FID
TITLE
DESCRIPTION
CATEGORY
PRICE
LENGTH
RATING
ACTORS