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.
Diese Übung ist Teil des Kurses
Applying SQL to Real-World Problems
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
SELECT ___
FROM ___ AS a
INNER JOIN ___ AS f
ON a.___ = f.___
WHERE ___ IN ('___', '___', '___', '___', '___');