Delete selected records
You've discovered that some films are just not worth keeping your inventory, for cases where the replacement_cost
is greater than 25 dollars. As such you'd like to remove them from you film
table.
Cet exercice fait partie du cours
Applying SQL to Real-World Problems
Instructions
DELETE
records from thefilm
table who have areplacement_cost
that is greater than $25.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
-- Delete films that cost most than 25 dollars
___