SQL Basic
SQL Advanced
SQL Functions
| SQL Insert |
|
The INSERT INTO statement is used to insert new records in a table. The INSERT INTO StatementThe INSERT INTO statement is used to insert a new row in a table. SQL INSERT INTO SyntaxIt 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:
SQL INSERT INTO ExampleWe 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:
Insert Data Only in Specified ColumnsIt is also possible to only add data in specific columns. The following SQL statement will add a new row, but only add data in the "P_Id", "LastName" and the "FirstName" columns:
The "Persons" table will now look like this:
|
SQL Insert