博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
—查询数据库中所有的表名字段名说明 详细信息
阅读量:5304 次
发布时间:2019-06-14

本文共 1227 字,大约阅读时间需要 4 分钟。

——直接放在需要查询的库中执行即可。

SELECT (case when a.colorder=1 then d.name else null end) 表名,   a.colorder 字段序号,a.name 字段名, (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end) 标识,  (case when (SELECT count(*) FROM sysobjects   WHERE (name in (SELECT name FROM sysindexes   WHERE (id = a.id) AND (indid in   (SELECT indid FROM sysindexkeys   WHERE (id = a.id) AND (colid in   (SELECT colid FROM syscolumns WHERE (id = a.id) AND (name = a.name)))))))   AND (xtype = 'PK'))>0 then '√' else '' end) 主键,b.name 类型,a.length 占用字节数,   COLUMNPROPERTY(a.id,a.name,'PRECISION') as 长度,   isnull(COLUMNPROPERTY(a.id,a.name,'Scale'),0) as 小数位数,(case when a.isnullable=1 then '√'else '' end) 允许空,   isnull(e.text,'') 默认值,isnull(g.[value], ' ') AS [说明] FROM  syscolumns a  left join systypes b on a.xtype=b.xusertype   inner join sysobjects d on a.id=d.id and d.xtype='U' and d.name<>'dtproperties'  left join syscomments e on a.cdefault=e.id   left join sys.extended_properties g on a.id=g.major_id AND a.colid=g.minor_id left join sys.extended_properties f on d.id=f.class and f.minor_id=0 where b.name is not null --WHERE d.name='要查询的表' --如果只查询指定表,加上此条件 order by a.id,a.colorder

 

转载于:https://www.cnblogs.com/sunqiang/p/4377175.html

你可能感兴趣的文章
windows基本命令
查看>>
Qt图片显示效率的比较(转)
查看>>
VMware中CentOS设置静态IP
查看>>
剑指Offer_编程题_7
查看>>
js 变量大小写
查看>>
Linux系统的启动原理
查看>>
JDesktopPane JInternalFrames
查看>>
错误The request sent by the client was syntactically incorrect ()的解决
查看>>
Java基础知识学习(九)
查看>>
redis在windows下总是报错,就是下面的错误,这是哪里出错了
查看>>
Asp.net窄屏页面 手机端新闻列表
查看>>
Linux 密钥验证
查看>>
windows下UDP服务器和客户端的实现
查看>>
MySQL各版本的区别
查看>>
[poj1006]Biorhythms
查看>>
迭代器
查看>>
elasticsearch type类型创建时注意项目,最新的elasticsearch已经不建议一个索引下多个type...
查看>>
jQury 跳出each循环的方法
查看>>
spring AOP 之五:Spring MVC通过AOP切面编程来拦截controller
查看>>
在编译安装程序时候遇到/usr/bin/ld: cannot find -lxxx的时候的解决办法。
查看>>