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