2个回答
展开全部
create table #temp(id int identity(1,1) primary key,name nvarchar(6))
insert #temp (name)
select 'aa'
union all
select 'bb'
select * from #temp
update #temp set id=11 where id=1
消息
消息 8102,级别 16,状态 1,第 2 行
无法更新标识列 'id'。
结论:临时表可以有主键约束,但不能被更新
insert #temp (name)
select 'aa'
union all
select 'bb'
select * from #temp
update #temp set id=11 where id=1
消息
消息 8102,级别 16,状态 1,第 2 行
无法更新标识列 'id'。
结论:临时表可以有主键约束,但不能被更新
追问
谢谢回答
追答
不客气 解决了你的问题后 采纳就好
展开全部
qq479075557
的答案稍有偏颇,《结论:临时表可以有主键约束,但不能被更新》不对。
无法更新标识列 'id',是因为创建的字段是自增列。
如果标识列 'id'不是自增列,同样可以更新。
试试下面的脚本。。。。
create table #temp(id int primary key,name nvarchar(6))
insert #temp (id,name)
select 1,'aa'
union all
select 2,'bb'
select * from #temp
update #temp set id=11 where id=1
的答案稍有偏颇,《结论:临时表可以有主键约束,但不能被更新》不对。
无法更新标识列 'id',是因为创建的字段是自增列。
如果标识列 'id'不是自增列,同样可以更新。
试试下面的脚本。。。。
create table #temp(id int primary key,name nvarchar(6))
insert #temp (id,name)
select 1,'aa'
union all
select 2,'bb'
select * from #temp
update #temp set id=11 where id=1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询