SQL Server queries table structure information-convenient Export

Source: Internet
Author: User

-- Column_name column name

-- Column_data_type

-- Max_length

-- The number of valid precision digits is similar to that of decimal.

-- Scale ratio

-- Whether is_nullable can be empty

--EMPIs the name of the queried table.

 

Select C. Name as column_name, P. [name] As column_data_type, C. max_length, P. [precision], p. Scale, P. is_nullable
From SYS. Columns C
Inner join SYS. Tables t on C. [object_id] = T. [object_id]
Left join SYS. types P on C. [user_type_id] = P. [user_type_id]
Left join SYS. computed_columns A on C. [object_id] = A. [object_id] and C. [column_id] = A. [column_id]
Left join SYS. default_constraints B on C. [object_id] = B. [parent_object_id] and C. [default_object_id] = B. [object_id]
Where T. [name] ='Emp'

 

 

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.