为了账号安全,请及时绑定邮箱和手机立即绑定

获取SqlServer 2005中字段的备注信息

标签:
SQL Server

在上篇文章中,介绍了如何获取SqlServer 2000中字段的备注信息
本文将介绍如何获取SqlServer 2005中字段的备注信息(downmoon)。

Declare @tblName nvarchar(1000)
                                    set @tblName='表名'
                                    declare @TblID int
                                    set @TblID=(select [object_id] as tblID  from sys.all_objects where [type] ='U' and [name]<>'dtproperties' and [name]=@tblName) 
                                    select syscolumns.name as ColumnName,
                                    systypes.name as ColumnType,
                                    syscolumns.length as ColumnLength,
                                    (SELECT   [value] FROM  ::fn_listextendedproperty(NULL, 'user', 'dbo', 'table', object_name(@TblID), 'column', syscolumns.name)  as e where e.name='MS_Description') as ColumnDescription
                                                from sysColumns 
                                                left join sysTypes on sysTypes.xtype = sysColumns.xtype and sysTypes.xusertype = sysColumns.xusertype 
                                                left join sysobjects on sysobjects.id = syscolumns.cdefault and sysobjects.type='D' 
                                                left join syscomments on syscomments.id = sysobjects.id 
                                    where syscolumns.id=@TblID


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消