Lesson 7 of 3222%

(Progress persistence is disabled until Phase 9)

SQL
Beginner

UPDATE Records

Modify existing records.

UPDATE Records

Modify existing records.

Example

-- Update Emma's country
UPDATE users SET country = 'Australia' WHERE name = 'Emma';
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