mysql修改表存储引擎_如何在MySQL中找出并更改表的存储引擎

mysql修改表存储引擎

How to find out and change the storage engine of tables in MySQL databases?

如何找出并更改MySQL数据库中表的存储引擎?

Find out the storage engine of a table in a database:

找出数据库中表的存储引擎:

SELECT ENGINE
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'database'
AND TABLE_NAME = 'table'

Change the storage engine of a table:

更改表的存储引擎:

ALTER TABLE table ENGINE = type

type can be innodb or myisam or others supported.

类型可以是innodbmyisam或其他受支持的类型。

Set the default storage engine for the MySQL server:

设置MySQL 服务器的默认存储引擎:

set

default-storage-engine=type

in /etc/my.cnf.

/etc/my.cnf

More about MySQL configuration: http://dev.mysql.com/doc/refman/5.5/en/server-options.html#option_mysqld_default-storage-engine

有关MySQL配置的更多信息: http : //dev.mysql.com/doc/refman/5.5/en/server-options.html#option_mysqld_default-storage-engine

Answered by anonymous.
匿名回答。

翻译自: https://www.systutorials.com/how-to-find-out-and-change-the-storage-engine-of-tables-in-mysql/

mysql修改表存储引擎

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值