CRUD is an acronym for the four basic operations used to interact with a database: Create, Read, Update, and Delete.
1. Create
The INSERT INTO statement is used to add new records to a table.
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
Example: Adding a new employee to the employees table.
INSERT INTO employees (name, position, salary)
VALUES ('Alice', 'Developer', 60000);
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod Lorem ipsum dolor sit amet.