Lesson 8 of 3225%
(Progress persistence is disabled until Phase 9)
SQL
Beginner
DELETE Records
Remove records from a table.
DELETE Records
Remove records from a table.
Example
-- Delete users from USA
DELETE FROM users WHERE country = 'USA';
SELECT * FROM users;
Test it Yourself