查詢SQL SERVER表的欄位資訊的SQL

來源:互聯網
上載者:User
    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,就記下來了,呵呵

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.