Home > Database > Mysql Tutorial > body text

sqlserver自动增长列引起的问题解决方法

WBOY
Release: 2016-06-07 18:02:55
Original
947 people have browsed it

仅当使用了列列表并且 IDENTITY_INSERT 为 ON 时,才能为表'*'中的标识列指定显式值。

有两个结构完全相同的表,由其中一个表插入另一个表中指定条件的数据,报如下错误:
仅当使用了列列表并且 IDENTITY_INSERT 为 ON 时,才能为表'*'中的标识列指定显式值。
在网上找到了解决方案,亲自试过,可以解决。

方法:
代码如下:
SET IDENTITY_INSERT test ON
insert into test(id,name) select id,name from test2
--必须标明表中所有的字段名
SET IDENTITY_INSERT test OFF
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template