Lesson 6 of 3219%

(Progress persistence is disabled until Phase 9)

SQL
Beginner

INSERT INTO

Add new records to a table.

INSERT INTO

Add new records to a table.

Example

-- Insert a new user
INSERT INTO users (name, email, age, country) VALUES ('David', 'david@example.com', 29, 'Canada');
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