SQL已有表中(无标识列)怎么样修改为有标识列如改为identity(1,2)
1个回答
展开全部
alter table 表名 drop constraint // 如果没有外健约束可以不执行
select 自增列名=identity(int,1,1) --指定需要的列
into 临时表名 from 表名
drop table 表名
exec sp_rename '临时表名','表名'
alter table 表名 add constraint //如果没有外健约束删除了,重新增加
完整代码如下 : aa 为表名 id 为自增列 bb为临时表
select id=identity(int,1,1) --指定需要的列
into bb from aa
drop table aa
exec sp_rename 'bb,'aa'
select 自增列名=identity(int,1,1) --指定需要的列
into 临时表名 from 表名
drop table 表名
exec sp_rename '临时表名','表名'
alter table 表名 add constraint //如果没有外健约束删除了,重新增加
完整代码如下 : aa 为表名 id 为自增列 bb为临时表
select id=identity(int,1,1) --指定需要的列
into bb from aa
drop table aa
exec sp_rename 'bb,'aa'
景联文科技
2024-06-11 广告
2024-06-11 广告
一、什么是数据标注?1. 数据标注定义数据标注是对未经处理的语音、图片、文本、视频等数据进行加工处理, 并转换为机器可识别信息的过程。原始数据一般通过数据采集获得, 随后的数据标注相当于对数据进行加工, 然后输送到人工智能算法和模型里完成调...
点击进入详情页
本回答由景联文科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询