Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the function of row_format in Mysql

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article is to share with you about the role of row_format in Mysql, the editor thinks it is very practical, so I share it with you to learn. I hope you can get something after reading this article.

Row_format of Mysql

If there are no varchar, text and their metamorphosis, blob and metamorphosis fields in a table, then the table is actually called a static table, that is, the row_format of the table is fixed, which means that each record occupies the same number of bytes. It has the advantages of fast reading and the disadvantage of wasting extra space.

Www.2cto.com

If there are varchar, text and their metamorphosis, blob and their metamorphosis fields in a table, then the table is actually called a dynamic table, that is, the row_format of the table is dynamic, that is, the bytes occupied by each record are dynamic. It has the advantage of saving space and the disadvantage of increasing the time cost of reading.

Therefore, tables with a large amount of search queries generally exchange space for time and are designed as static tables.

There are other values for row_format:

DEFAULT

FIXED

DYNAMIC

COMPRESSED

REDUNDANT

COMPACT

Www.2cto.com

Modify row format

ALTER TABLE table_name ROW_FORMAT = DEFAULT

The modification process results in:

Fixed--- > dynamic: this causes CHAR to become VARCHAR

Dynamic--- > fixed: this causes VARCHAR to become CHAR

This is what the role of row_format in Mysql is, and the editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report