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.
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
##Related recommendations: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!