SQL Server表中添加新列并添加描述

注: sql server 2005 及以上支持. 版本估计是不支持(工作环境2005,2008).

工作需要, 需要向sql server 现有表中添加新列并添加描述. 从而有个如下存储过程. (先附上存储过程然后解释)

/********调用方法**********
作用: 添加列并添加列描述信息
调用:
exec [setcolumninfo] '表名', '列名', n'列说明,描述','列类型{默认:nvarchar(50)}','列默认值{默认:null}'
******************/
createprocedure [dbo].[setcolumninfo]
@tablename nvarchar(100) --表名
,@columnname nvarchar(100) --列名
,@columninfo nvarchar(2000) --列说明,描述
,@columntype nvarchar(100)='nvarchar(50)' --列类型 例如: nvarchar(50)
,@columndefault nvarchar(100)='null' --列默认值 例如: null
as
begin
ifnotexists (
select *
from syscolumns
where id = object_id(@tablename)
and name = @columnname
)
begin
print 'exec:'+('alter table ' + @tablename + ' add ' + @columnname + '' + @columntype + '' + @columndefault)
print 'add['+@columnname+']column'
exec ('alter table ' + @tablename + ' add ' + @columnname + '' + @columntype + '' + @columndefault)
end
ifexists (
select *
from::fn_listextendedproperty('ms_description', 'schema' --用户或用户定义类型
, n'dbo' --指定的 0 级对象类型的名称
, n'table' --1 级对象的类型 
, @tablename --指定的 1 级对象类型的名称
, n'column' --2 级对象的类型
, @columnname --指定的 2 级对象类型的名称
)
)
begin
print 'edit['+@columnname+']description'
exec sys.sp_updateextendedproperty @name = n'ms_description' --要添加的属性名称
,@value = @columninfo --将要与属性相关联的值
,@level0type = n'schema' --用户或用户定义类型
,@level0name = n'dbo' --指定的 0 级对象类型的名称
,@level1type = n'table' --1 级对象的类型 
,@level1name = @tablename --指定的 1 级对象类型的名称
,@level2type = n'column' --2 级对象的类型
,@level2name = @columnname --指定的 2 级对象类型的名称
end
else
begin
print 'add['+@columnname+']description'
exec sys.sp_addextendedproperty @name = n'ms_description' --要添加的属性名称
,@value = @columninfo --将要与属性相关联的值
,@level0type = n'schema' --用户或用户定义类型
,@level0name = n'dbo' --指定的 0 级对象类型的名称
,@level1type = n'table' --1 级对象的类型 
,@level1name = @tablename --指定的 1 级对象类型的名称
,@level2type = n'column' --2 级对象的类型
,@level2name = @columnname --指定的 2 级对象类型的名称
end
end
go

解释:

语句:

select * from syscolumns where id = object_id(@tablename) and name = @columnname 

作用: 查找表中是否存在指定的列. 如果存在则添加会报错.

alter table 语句:

alter table 语句用于在已有的表中添加、修改或删除列。

如需在表中添加列,请使用下列语法:

altertable table_name add column_name datatype 

要删除表中的列,请使用下列语法:

altertable table_name dropcolumn column_name 

要改变表中列的数据类型,请使用下列语法:

altertable table_name altercolumn column_name datatype 

属性的增删改:

fn_listextendedproperty: 获取扩展属性, 主要判断下属性是否存在如果存在则更新, 不存在则添加

sp_updateextendedproperty: 更新字段描述

sp_addextendedproperty : 添加字段描述

sp_dropextendedproperty: 删除字段描述

因为sp_dropextendedproperty上文存储过程没有出现特附上示例:

execsp_dropextendedproperty 'ms_description','user',dbo,'table','表','column',a1

以上所述是www.887551.com给大家介绍的sql server表中添加新列并添加描述,希望对大家有所帮助

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐