SQL obtains all field types and precision scripts of a specified data table.

Source: Internet
Author: User

-- SQL: obtain all the field types and precision scripts of the specified data table, and directly execute the following script.
Select a. Name,
Case A. Precision
When 0 then

Case A. is_ansi_padded
When 1 then
Convert (nvarchar (15), B. Name + '(' + convert (nvarchar (10), a. max_length) + ')')
When 0 then
B. Name
End
Else

Case A. Scale
When 0 then
B. Name
Else
B. Name + '(' + convert (nvarchar (10), a. Precision) + ',' + convert (nvarchar (10), a. Scale) + ')'
End

End
As typelength from sys. columns A left join sys. types B on. system_type_id = B. system_type_id and. user_type_id = B. user_type_id where. object_id = (select object_id from sys. objects where name = 'name of an existing data table in the current database ');

 

The obtained results are in the following format:

Djbh char (15)

Dj_sort int

Lingsshl decimal (14,3)

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.