Add a new record.
Section: Insert, update, delete, and upsert
Insert one row
sql
sql
INSERT INTO users (email, display_name) VALUES ('ava@example.com', 'Ava');Explanation
Explicit column lists make inserts safer as schemas evolve.
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, delete, and upsert