标签:xtend 字段名 end obj rop _id select column 查询
select a.name tabname,b.value,a1.name from sysobjects a left join sys.columns a1 on a.id = a1.object_id
left join sys.extended_properties b on b.major_id = a.id and b.minor_id = a1.column_id
where a.name=‘表名‘
sysobjects:系统表 记录表名
sys.columns :记录表字段名
extended_properties : 表字段描述
sql server 2008 查询数据库表的字段,以及字段说明
标签:xtend 字段名 end obj rop _id select column 查询
原文地址:https://www.cnblogs.com/hu-kang/p/10688968.html