Để thay đổi row_format thành động trong MySQL, sau đây là cú pháp:
ALTER TABLE yourTableName ROW_FORMAT=DYNAMIC;
Đầu tiên chúng ta hãy tạo một bảng:
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)
Hãy để chúng tôi kiểm tra mô tả của bảng bằng lệnh DESC:
mysql> desc DemoTable;
Điều này sẽ tạo ra kết quả sau:
+-----------------+--------------+------+-----+---------+----------------+ | 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)
Sau đây là truy vấn để thay đổi row_format thành động:
mysql> alter table DemoTable ROW_FORMAT=DYNAMIC; Query OK, 0 rows affected (1.05 sec) Records: 0 Duplicates: 0 Warnings: 0