insert

SQL INSERT INTO Statement

SQL INSERT INTO Statement

The INSERT INTO statement is used to add new rows of data to a table.

Basic INSERT INTO Query

INSERT INTO Users (first_name, last_name, age, gender)
VALUES ('John', 'Doe', 30, 'Male');
    

This query adds a new user with the specified values for first_name, last_name, age, and gender.