T-SQL get alll columns name and column type from table

Source: Internet
Author: User
Select. name, Case. precision when 0 then case. is_ansi_padded when 1 then convert (nvarchar (15), B. name + '(' + convert (nvarchar (10),. max_length) + ') When 0 then B. name end else case. scale when 0 then B. name else B. name + '(' + convert (nvarchar (10),. precision) + ',' + convert (nvarchar (10),. scale) + ') 'endend 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 = 'address ')

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.