1. Which statement inserts a single row into a table?
INSERT adds new rows. List columns in a stable order to avoid surprises when schema evolves. Bulk loads and multi-row inserts are faster than many single-row inserts for large data.
INSERT INTO employees (id, name, email) VALUES (101, 'Asha', 'asha@example.com');