MySQL 将 row_format 更改为动态

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/8112517/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-31 21:40:10  来源:igfitidea点击:

Alter row_format to dynamic

mysql

提问by airnet

What is the MySQL statement to alter the row_formatto dynamic?

什么是MySQL的语句更改row_formatdynamic

I am not sure how I am supposed to do it (i.e. using the information_schemaor by using a table ALTER).

我不确定我应该怎么做(即使用information_schema或 使用 table ALTER)。

回答by david

try

尝试

ALTER TABLE `test`  ROW_FORMAT=DYNAMIC;