原因:数据库表中某个字段设置了自增列
解决办法
set identity_insert books3 on ---开启
set identity_insert books3 off ---关闭
注意:
1. 一定要标明具体的字段名,不能用"*"
2. 一定要关闭IDENTITY_INSERT, 即:set identity_insert Xxx off 否则再次添加数据时,无法自增长,提示错误信息:
原因:数据库表中某个字段设置了自增列
解决办法
set identity_insert books3 on ---开启
set identity_insert books3 off ---关闭
注意:
1. 一定要标明具体的字段名,不能用"*"
2. 一定要关闭IDENTITY_INSERT, 即:set identity_insert Xxx off 否则再次添加数据时,无法自增长,提示错误信息: