Updated based on other tables
The rental company is running a promotion and needs you to lower the rental costs by 1 dollar of films who star the actors/actresses with the following last names: WILLIS, CHASE, WINSLET, GUINESS, HUDSON.
To UPDATE
this data in the film
table you will need to identify the film_id
for these actors.
Este exercício faz parte do curso
Applying SQL to Real-World Problems
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
SELECT ___
FROM ___ AS a
INNER JOIN ___ AS f
ON a.___ = f.___
WHERE ___ IN ('___', '___', '___', '___', '___');