Mysql 行的存储格式

来源:这里教程网 时间:2026-03-01 16:13:05 作者:

Mysql 的行数据存储格式有4种:

    Compact

    Redundant 

    Dynamic (Mysql5.7的默认格式) mysql> show variables like '%row_format%';+---------------------------+---------+| Variable_name             | Value   |+---------------------------+---------+| innodb_default_row_format | dynamic |+---------------------------+---------+1 row in set (0.00 sec)

    Compressed

详细信息参考: https://www.cnblogs.com/zhuwenjoyce/p/15032812.html https://dev.mysql.com/doc/refman/5.7/en/innodb-row-format.html

相关推荐