Deep in SQL Server, the difference between fixed length char (n) and variable length varchar (n) is detailed _mssql

Source: Internet
Author: User

char (n) is a fixed-length format in which a field formatted with char (n) occupies an n-character width, and if the actual stored data is longer than N, it will be truncated, if the length is less than n, filled with a blank character.

VARCHAR (n) is a variable-length format in which the field allocates space based on the actual data length and does not waste space, but the speed of searching for data can be a bit cumbersome.

Generally, as long as a table has a field defined as a varchar (n) type, the rest of the fields defined with char (n) are actually varchar (n) types.

If your length itself is not long, such as 3~10 characters, then use char (n) format more efficient, faster search. But if some of the data is very long, some of the data is relatively short, such as the registration of user profiles such fields, there is no way, and very concerned about the waste of space, then use varchar (n) format.

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.