The INSERT INTO statement is used to insert new records in a table.
The INSERT INTO statement is used to insert a new row in a table.
It is possible to write the INSERT INTO statement in two forms.
The first form doesn't specify the column names where the data will be inserted, only their values:
The second form specifies both the column names and the values to be inserted:
We have the following "Persons" table:
Now we want to insert a new row in the "Persons" table.
We use the following SQL statement:
The "Persons" table will now look like this:
It is also possible to only add data in specific columns.
The Below SQL statement will add a new row, but only add data in the "P_Id", "LastName" and the "FirstName" columns:
Your Query was successfully sent!