Skip to main content

insert_into_table

➕ Insert Data with INSERT

Use INSERT INTO to add new rows to a table. Provide the column list and corresponding values in parentheses.

INSERT INTO users (first_name, last_name, email)
VALUES ('Alice', 'Smith', 'alice@example.com');

This statement creates a new user record with the provided information.