在 MySQL 中将 row_format 更改为 dynamic?


若要在 MySQL 中将 row_format 更改为 dynamic,语法如下

ALTER TABLE yourTableName ROW_FORMAT=DYNAMIC;

我们先创建一个表

mysql> create table DemoTable
(
   CustomerId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   CustomerName varchar(200),
   CustomerAge int,
   CustomerAddress varchar(200)
);
Query OK, 0 rows affected (0.73 sec)

让我们使用 DESC 命令查看表说明

mysql> desc DemoTable;

这将产生以下输出

+-----------------+--------------+------+-----+---------+----------------+
| Field           | Type         | Null | Key | Default | Extra          |
+-----------------+--------------+------+-----+---------+----------------+
| CustomerId      | int(11)      | NO   | PRI | NULL    | auto_increment |
| CustomerName    | varchar(200) | YES  |     | NULL    |                |
| CustomerAge     | int(11)      | YES  |     | NULL    |                |
| CustomerAddress | varchar(200) | YES  |     | NULL    |                |
+-----------------+--------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)

以下是将 row_format 更改为 dynamic 的查询

mysql> alter table DemoTable ROW_FORMAT=DYNAMIC;
Query OK, 0 rows affected (1.05 sec)
Records: 0 Duplicates: 0 Warnings: 0

更新于: 2019 年 7 月 30 日

926 次浏览

开始您的职业生涯

完成课程获得认证

开始学习
广告