6、mysql数据表、数据库存储引擎的查看和指定 1 查看表的引擎:show create table 表名2 查看所有表的引擎:show table status\G3 查看数据库引擎:show engines\G4 指定引擎:create table test1(name varchar(5)) ENGINE=InnoDB; ... mysql基础 2024-07-24 41 点赞 0 评论 62 浏览