Home  >  Article  >  Database  >  How to check the default storage engine of mysql

How to check the default storage engine of mysql

王林
王林Original
2020-09-30 15:25:187073browse

How to view the default storage engine of mysql: First execute the [mysql -h localhost -u root -p] command to log in to mysql; then execute the [show engines \G] command to view the default storage engine.

How to check the default storage engine of mysql

First log in to the MYSQL database and use the command

(recommended tutorial: mysql tutorial)

mysql -h localhost(mysql的地址) -u 用户名 -p

Then execute the command

show engines;

or

show engines \G;

so that you can clearly see the storage engine supported by the MYSQL you installed.

support: The default option is the default storage engine of the MYSQL database

How to check the default storage engine of mysql

##Related recommendations:

php training

The above is the detailed content of How to check the default storage engine of mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn