List all SQL SERVER tables, field names, primary keys, types, lengths, decimal places, and other information?

Source: Internet
Author: User

SELECT
(Case when a. colorder = 1 then d. name else ''end) Table name,
A. Serial number of the colorder field,
A. name field name,
(Case when COLUMNPROPERTY (a. id, a. name, 'isidentity ') = 1 then' √ 'else' end) id,
(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) primary key,
B. name type,
A. length occupies the number of bytes,
COLUMNPROPERTY (a. id, a. name, 'precision ') as length,
Isnull (COLUMNPROPERTY (a. id, a. name, 'Scale'), 0) as decimal places,
(Case when a. isnullable = 1 then '√ 'else'' end) Allow null,
Isnull (e. text, '') default value,
Isnull (g. [value], '') AS field description

FROM syscolumns
Left join policypes 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 sysproperties g on a. id = g. id AND a. colid = g. smallid
Order by a. id, a. colorder

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.