A DELETE statement is permanent command, which could cost you if you are not careful.
It is strongly advised that before execute this command you should be first backup your database, since there may be no way to recover the data lost.
If you can always try and use the Primary Keys
For example
We want to DELETE a film “Hidden Figures” from our database:
DELETE
FROM Films
WHERE Title = ‘Hidden Figures’;