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 exercício faz parte do curso
Applying SQL to Real-World Problems
Instruções do exercício
DELETE
records from thefilm
table who have areplacement_cost
that is greater than $25.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
-- Delete films that cost most than 25 dollars
___