You can add data to some columns in a row by specifying only those columns and their values.
Prérequis
You must have INSERT privilege on the table. If the ON EXISTING UPDATE clause is specified, UPDATE privilege on the table is also required.
Contexte et remarques
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.
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.
Execute an INSERT INTO statement to add data to specific columns.
For example, the following statement adds data in only two columns, DepartmentID and DepartmentName:
INSERT INTO GROUPO.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.
![]() |
Discuter à propos de cette page dans DocCommentXchange.
|
Copyright © 2013, SAP AG ou société affiliée SAP - SAP Sybase SQL Anywhere 16.0 |