Home  >  Article  >  Database  >  sqlserver 当IDENTITY

sqlserver 当IDENTITY

WBOY
WBOYOriginal
2016-06-07 15:51:321386browse

当数据库中的ID为自动增长的时候采用increment当然会报无法显示为主键插入值 (1)可以在程序中,不插入ID这个字段! 方法:在创建表的时候 把 [id] [int] identity(1,1) NOT NULL , 把identity(1,1)去掉。 (2)或者把ID自动增长的属性在sql2005去除! SET

当数据库中的ID为自动增长的时候采用increment当然会报“无法显示为主键插入值”

(1)可以在程序中,不插入ID这个字段!

        方法:在创建表的时候

        把 [id] [int] identity(1,1)  NOT NULL , 把identity(1,1) 去掉。

 

(2)或者把ID自动增长的属性在sql2005去除!

 

        SET IDENTITY_INSERT允许将显式值插入表的标识列中。
        语法
        SET IDENTITY_INSERT [ database.[ owner.] ] { table } { ON | OFF }
        参数
        database是指定的表所驻留的数据库名称。
        owner是表所有者的名称。
        table 是含有标识列的表名。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn