“Синтаксис идентичности в SQL” Ответ

Синтаксис идентичности в SQL

IDENTITY[(seed,increment)]
--seed is the value of the first row loaded into the table
--increment is the incremental value added to the identity value of the previous row.
--should only contain ONE identity PER TABLE

--example:
CREATE TABLE EMPLOYEE  
(  
   IID INT IDENTITY(1,1),  
   NAME [varchar](MAX) NOT NULL,  
   AGE INT NOT NULL  
) 
ekkamrit

столбец идентификации в SQL Server

/* To explicitly supply a value for identity column*/
/*first turn on identity_insert  set  identity_insert (Table_Name) on*/
SET IDENTITY_INSERT (Table_Name) ON

/*In the insert query specify the column's list insert into table*/
INSERT INTO (Table_Name) (Identity_Column,col2,col3,...) VALUES (Identity_Value,val2,val3,...)

/* Now set the identity_insert set off*/
SET IDENTITY_INSERT (Table_Name) OFF
Rajput

Ответы похожие на “Синтаксис идентичности в SQL”

Вопросы похожие на “Синтаксис идентичности в SQL”

Больше похожих ответов на “Синтаксис идентичности в SQL” по Sql

Смотреть популярные ответы по языку

Смотреть другие языки программирования