INSERT — add new rows to a table.
Syntax:
1-- Single row2INSERT INTO customers (name, email)3VALUES ('John Doe', 'john@example.com');45-- Multiple rows6INSERT INTO products (name, price)7VALUES8 ('Widget A', 9.99),9 ('Widget B', 19.99);1011-- From another table12INSERT INTO archive_orders13SELECT * FROM orders WHERE year < 2023;
BA relevance:
Note: Usually handled by developers, not BAs.