Start your All-Access Pass to unlock this challenge
Imagine that we have a database table called products. What will happen if you execute the next command: DELETE FROM products?
products
DELETE FROM products
It will show a syntax error because you didn't specify the WHERE clause in the query
WHERE
The first record found will be deleted
It will delete all the records in the products table
It will do nothing, i.e. nothing will be deleted because we didn't specify the WHERE clause explicitly in the query and the server does not know what exactly we want to delete