mysql查看表使用的发动机
程序员文章站
2022-05-28 23:54:23
...
mysql查看表使用的引擎 show table status from 数据库名 where name=表名; 对其进行更改: alter table 表名 engine=innodb; alter table 表名 engine=myisam;
mysql查看表使用的引擎show table status from 数据库名 where name=表名;
对其进行更改:
alter table 表名 engine=innodb;
alter table 表名 engine=myisam;
推荐阅读
-
使用Python发送邮件附件以定时备份MySQL的教程
-
对MySql经常使用语句的全面总结(必看篇)
-
linux系统mysql自动备份并使用ftp上传的方法
-
通过dbi使用perl连接mysql数据库的方法
-
使用Mysql5.x以上版本出现报错#1929 Incorrect datetime value: '' for column 'createtime'的快速解决方法
-
使用PHP备份MYSQL数据的多种方法
-
Android SQLite数据库增删改查操作的使用详解
-
使用distinct在mysql中查询多条不重复记录值的解决办法
-
使用shell检查并修复mysql数据库表的脚本
-
查看当前mysql使用频繁的sql语句(详解)