# 修改字段名称为临时字段 exec sp_rename ‘data_config.description‘, description1,‘COLUMN‘; # 创建新的字段并设置为目标格式alter table data_config add description text ;# 把临时字段中的值保存到新字段 update data_config set description = description1;# 删除临时字段 alter table data_config drop column description1;
原文地址:https://www.cnblogs.com/Leechg/p/12696938.html
时间: 2024-10-29 08:48:53