mysql| table Row_format Static and dynamic, Compact

Source: Internet
Author: User
Tags compact

InnoDB generally corresponds to Compact, MyISAM generally corresponds to static and dynamic

In MySQL, if there is a table with varchar, text, and its deformation, blob, and its deformed fields, then this table is actually called a dynamic table, that is, the table is the Row_format, which is dynamic, that is, the bytes occupied by each record. Its advantages save space and disadvantage increase the read time overhead. Conversely, this table is called a static table, which Row_format is fixed, that is, each record consumes bytes. Advantage read fast, disadvantage waste part of space

Therefore, to do large search query volume of the table is generally in exchange for space for time, designed to static table.

Row_format also has some other values:

DEFAULT
FIXED
DYNAMIC
Compressed
Redundant
COMPACT

Modify row format

ALTER TABLE table_name Row_format = DEFAULT

The modification process causes:

Fixed--->dynamic: This causes char to become varchar

Dynamic--->fixed: This causes varchar to become char

mysql| table Row_format Static and dynamic, Compact

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.