Inserting values into specific columns

You can add data to some columns in a row by specifying only those columns and their values.

Prerequisites

While the column order you specify does not need to match the order of columns in the table, it must match the order in which you specify the values you are inserting.

Context and remarks

Define all other columns not included in the column list to allow NULL or have defaults. If you skip a column that has a default value, the default appears in that column.

 Insert values in specific columns
  • Execute an INSERT INTO statement to add data to specific columns.

    Adding data in only two columns, for example, DepartmentID and DepartmentName, requires a statement like this:

    INSERT INTO Departments ( DepartmentID, DepartmentName )
    VALUES ( 703, 'Western Sales' );

    DepartmentHeadID does not have a default value but accepts NULL. therefore a NULL is automatically assigned to that column.

Results

The data is inserted into the specified columns.

Next

None.