程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 獲取SqlServer 2005中字段的備注信息--downmoon

獲取SqlServer 2005中字段的備注信息--downmoon

編輯:關於SqlServer
在上篇文章中,介紹了如何獲取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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved