如何查询sqlServer字段的中文描述信息及获取表结构

如何查询sqlServer2008 单表字段的中文描述信息
在这里插入图片描述具体代码如下:
declare @table_name as varchar(max)
set @table_name = ‘person’
select sys.columns.name, sys.types.name, sys.columns.max_length, sys.columns.is_nullable,
(select count(*) from sys.identity_columns where sys.identity_columns.object_id = sys.columns.object_id and sys.columns.column_id = sys.identity_columns.column_id) as is_identity ,
(select value from sys.extended_properties where sys.extended_properties.major_id = sys.columns.object_id and sys.extended_properties.minor_id = sys.columns.column_id) as description
from sys.columns, sys.tables, sys.types where sys.columns.object_id = sys.tables.object_id and sys.columns.system_type_id=sys.types.system_type_id and sys.tables.name=@table_name order by sys.columns.column_id

(傻瓜式粘贴即可),仅需要改你的表名,表必须在你的数据库中有。

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_30347133/article/details/86657073