查询SQL SERVER表的字段信息的SQL

来源:互联网 发布:手机在线升级软件 编辑:程序博客网 时间:2024/05/03 10:56
    1. --查询表说明
    2. select a.id, a.name,b.value from sysobjects a
    3. left join sysproperties b on a.id=b.id
    4. where a.name='UserInfo'
  1. SELECT
  2. --表名=case when a.colorder=1 then d.name else '' end,
  3. --表说明=case when a.colorder=1 then isnull(f.value,''else '' end,
  4. 字段序号=a.colorder,
  5. 字段名=a.name,
  6. 标识=case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end,
  7. 主键=case when exists(SELECT 1 FROM sysobjects where xtype='PK' and name in (
  8. SELECT name FROM sysindexes WHERE indid in(
  9. SELECT indid FROM sysindexkeys WHERE id = a.id AND colid=a.colid
  10. ))) then '√' else '' end,
  11. 类型=b.name,
  12. 占用字节数=a.length,
  13. 长度=COLUMNPROPERTY(a.id,a.name,'PRECISION'),
  14. 小数位数=isnull(COLUMNPROPERTY(a.id,a.name,'Scale'),0),
  15. 允许空=case when a.isnullable=1 then '√'else '' end,
  16. 默认值=isnull(e.text,''),
  17. 字段说明=isnull(g.[value],'')
  18. FROM syscolumns a
  19. left join systypes b on a.xtype=b.xusertype
  20. inner join sysobjects d on a.id=d.id and d.xtype='U' 
  21. left join syscomments e on a.cdefault=e.id
  22. left join sysproperties g on a.id=g.id and a.colid=g.smallid
  23. left join sysproperties f on d.id=f.id and f.smallid=0
  24. where d.name='表名' --如果只查询指定表,加上此条件
  25. order by a.id,a.colorder

想做一个SQL SERVER工具,往上找到这个SQL,就记下来了,呵呵

原创粉丝点击