Problem Statement
Which statement inserts a single row into a table?
Explanation
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.
Code Solution
SolutionRead Only
INSERT INTO employees (id, name, email) VALUES (101, 'Asha', 'asha@example.com');
