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.
Este ejercicio forma parte del curso
Applying SQL to Real-World Problems
Instrucciones del ejercicio
DELETE
records from thefilm
table who have areplacement_cost
that is greater than $25.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
-- Delete films that cost most than 25 dollars
___