Command
INSERT INTOExplanation
Add new records to MySQL tables.
Examples
Insert single record
INSERT INTO users (name, email) VALUES ('John', 'john@example.com');Insert multiple records
INSERT INTO users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com');