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

Lesson Progress

Practice This TopicTake QuizBuild a SQL Project

Ready to practise?

Apply what you learned with a hands-on challenge.

Practise This Topic