Junior — Middle
Which SQL command is used to insert new records into a table?
sobes.tech AI
Answer from AI
The SQL command INSERT INTO is used to insert new records into a table. It allows adding one or multiple rows with specified values into designated columns of the table.
Example:
INSERT INTO employees (name, position, salary) VALUES ('Ivan Ivanov', 'developer', 50000);