CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Applying SQL to Real-World Problems

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

SELECT ___ 
FROM ___ AS a
INNER JOIN ___ AS f
   ON a.___ = f.___
WHERE ___ IN ('___', '___', '___', '___', '___');
Modifier et exécuter le code