名站网址导航为大家提供关于数据库教程相关的教程网站知识。
SQL判断字段列是否存在的具体相关方法
增加字段,复制具体相关代码 具体相关代码如下:,alter table docdsp add dspcode char(200),复制具体相关代码 具体相关代码如下:,ALTER TABLE table_NAME DROP COLUMN column_NAME,复制具体相关代码 具体相关代码如下:,ALTER TABLE table_name ALTER COLUMN column_name new_data_type,复制具体相关代码 具体相关代码如下:,sp_rename [ @objname = ] 'object_name' , [ @newname = ] 'new_name' [ , [ @objtype = ] 'object_type' ,--假设要处理的表名为: tb,--判断要添加列的表中是否有主键 if exists(select 1 from sysobjects where parent_obj=object_id('tb') and xtype='PK'),--添加int类型的列,默认值为0 alter table tb add 列名 int default 0 end else begin print '表中无主键,添加主键列',--添加int类型的列,默认值为0 alter table tb add 列名 int primary key default 0 end /*****************************,复制具体相关代码 具体相关代码如下:,if exists(select * from syscolumns where id=object_id('table1') and) begin select * from people; end,
SqlServer帮助中对扩展属性的描述是:
The Extended Properties property sets or retrieves provider-specific connection information that cannot be explicitly described through the property mechanism.
对于扩展属性有如下操作办法:
复制具体相关代码 具体相关代码如下:
exec sp_addextendedproperty N'MS_Description', N'字段描述', N'user', N'dbo',
N'table', N'表名', N'column', N'字段名'
GO
例如:EXEC sp_addextendedproperty N'MS_Description',N'地址',N'user', dbo,N'table',
复制具体相关代码 具体相关代码如下:
N'a', N'column', a_add
GO--我的表是a,要给字段a_add加上字段描述:地址
其他相关:
删除:
复制具体相关代码 具体相关代码如下:
EXEC sp_dropextendedproperty N'MS_Description',N'user', dbo,N'table', N'表名',
N'column', 字段名
修改:
复制具体相关代码 具体相关代码如下:
EXEC sp_updateextendedproperty N'MS_Description', N'字段描述', N'user',
dbo,N'table',N'表名', 'column', 字段
至于查询出来,sql server有提供系统函数fn_listextendedproperty ():
复制具体相关代码 具体相关代码如下:
--获取某一个字段的描述
SELECT *
FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', '表名', 'column',
default)--其他变数,按照您的要求您照写即可,只要表名换成您的
where objname = '字段名'
另外也可以自己查询系统表:
复制具体相关代码 具体相关代码如下:
SELECT o.name AS tableName, c.name AS columnName, p.[value] AS Description
FROM sysproperties p INNER JOIN
sysobjects o ON o.id = p.id INNER JOIN
syscolumns c ON p.id = c.id AND p.smallid = c.colid
WhERE (p.name = 'MS_Description')
ORDER BY o.name
关于数据库教程相关的教程网站知识今天我们就说到这里了,希望可以帮到大家。