--替换字符串
UPDATE b_Inventory SET cInvCode=replace(cInvCode,'020103','04010104')
FROM
b_InventoryClass s2 LEFT JOIN b_Inventory s1 ON s1.InventoryCalssID=s2.ID WHERE s2.cInvCCode='04010104'
SQL Server中,如果目标表存在:
insert into 目标表 select * from 原表;
SQL Server中,,如果目标表不存在:
select * into 目标表 from 原表;
--增加字段默认值
ALTER TABLE Formula ADD CONSTRAINT Formula_status DEFAULT 0 FOR f_status
1.alter table table_name add column_name column_tpye ----增加列
-----
例:alter table Students add Email varchar(16)
2.alter table table_name alter column column_name column_type ---修改列
-----
例:alter table Students alter column Email varchar(255)
3.alter table table_name drop column column_name ---删除列
------
例:alter table Students drop column Emai
4、修改字段默认值
alter table 表名 add default (0) for 字段名 with values
如果字段有默认值,则需要先删除字段的约束,在添加新的默认值,
select c.name from sysconstraints a
inner join syscolumns b on a.colid=b.colid
inner join sysobjects c on a.constid=c.id
where a.id=object_id('表名')
and b.name='字段名'
根据约束名称删除约束
alter table 表名 drop constraint 约束名
根据表名向字段中增加新的默认值
alter table 表名 add default (0) for 字段名 with values
5.修改字段名
exec sp_rename 'FormulaMaterial.fd_BendingImg','fm_BendingImg','column';
exec sp_rename '表名称.原列名','新列名','column';
--为字段添加注释
--格式如右:
execute sp_addextendedproperty 'MS_Description','字段备注信息','user','dbo','table','字段所属的表名','column','添加注释的字段名';
execute sp_addextendedproperty 'MS_Description','add by liyc. 诊断类别码','user','dbo','table','DiagRecord','column','DiagTypeCode';
--修改字段注释
execute sp_updateextendedproperty 'MS_Description','add by liyc.','user','dbo','table','DiagRecord','column','DiagTypeCode';
--删除字段注释
execute sp_dropextendedproperty 'MS_Description','user','dbo','table','DiagRecord','column','DiagTypeCode';
--添加表注释
execute sp_addextendedproperty 'MS_Description','诊断记录文件','user','dbo','table','DiagRecord',null,null;
--修改表注释
execute sp_updateextendedproperty 'MS_Description','诊断记录文件1','user','dbo','table','DiagRecord',null,null;
--删除表注释
execute sp_dropextendedproperty 'MS_Description','user','dbo','table','DiagRecord',null,null;
--说明:
-- 1.增加、修改、删除注释调用不同的存储过程
-- 2.增加、修改注释调用的存储过程参数数量和含义相同,删除备注比前两者少了一个“备注内容”的参数
-- 3.为表添加注释相比于为字段添加注释,最后两个参数为null