SQL中查看表的创建语句、修改表的引擎类型

查看表的创建语句:

show create table goods;

修改引擎:
修改表的存储引擎使用: alter table 表名 engine = 引擎类型;
比如:

alter table students engine = 'MyISAM';
发布了881 篇原创文章 · 获赞 1254 · 访问量 17万+

猜你喜欢

转载自blog.csdn.net/qq_35456045/article/details/105209919