Add a single row to a table.
Section: INSERT, UPDATE, and DELETE
Insert one row
sql
sql
INSERT INTO users (user_id, email, created_at)
VALUES (1, 'a@example.com', CURRENT_TIMESTAMP);Explanation
Specify column names explicitly for clarity and safety.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing INSERT, UPDATE, and DELETE