首页 > 开发 > 综合 > 正文

显示表的详细信息(数据类型,长度,默认值等)

2024-07-21 02:07:25
字体:
来源:转载
供稿:网友

select case when c.colid=1 then object_name(c.id) else '' end as 表名
 ,c.name as 字段名
 ,t.name 数据类型
 ,c.prec as 长度
 ,p.value as 描述信息
 ,m.text as 默认值
from syscolumns c
 inner join systypes t on c.xusertype=t.xusertype
 left join sysproperties p on c.id=p.id and c.colid = p.smallid
 left join syscomments m on c.cdefault=m.id
where objectproperty(c.id,'isusertable')=1

虽然很简单,但发表出来,希望能帮助初学的朋友,只要细心研究syscolumns,systypes...等系统表,就可以得到你所想要的信息!

最大的网站源码资源下载站,

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表