To be a qualified programmer, in addition to writing beautiful code, it is also indispensable to be familiar with the database. The following summarizes how to view and modify the MySQL database table storage engine: to be a qualified programmer, in addition to writing beautiful code, it is also indispensable to be familiar with the database. The following summarizes how to view and modify the MySQL database table storage engine:
1. view the storage engine supported by the database: show engines;
2. view the storage engine used by a table in a database: show table status from db_name where name = 'Table _ name'; (note: after removing the where condition, you can view the storage engine of all tables in a database)
3. alter table table_name engine = innodb;
4. how to disable the Innodb engine: run the "net stop mysql" command to disable the mysql service. find my. ini file, change default-storage-engine = INNODB to default-storage-engine = MYISAM, and change # skip-innodb to skip-innodb; finally, run the "net start mysql" command to start the mysql service.
The above section shows how to view and modify the content of MySQL database table storage engine _ MySQL. For more information, see PHP Chinese network (www.php1.cn )!