MySQL How to choose the right data type 1:char and varchar

Source: Internet
Author: User

Char is similar to a varchar type and is used to store strings, but they are "saved" and "retrieved" in different ways. Char is a "fixed-length" string, and varchar is a character type of "variable length."

The following table shows the results of saving various string values to char (4) and varchar (4) columns, explaining the difference between char and varchar.

Comparison of Char and varchar

Value CHAR (4) Storage requirements VARCHAR (4) Storage requirements
‘‘ ‘ ‘ 4 bytes ‘‘ 1 bytes
' AB ' ' AB ' 4 bytes ' AB ' 3 bytes
' ABCD ' ' ABCD ' 4 bytes ' ABCD ' 5 bytes
' Abcdefgh ' ' ABCD ' 4 bytes ' ABCD '

  

How MySQL chooses the appropriate data type 1:char and varchar

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.