Maison > Article > base de données > Comment puis-je vérifier le moteur de stockage utilisé par une table MySQL ?
Retrieving MySQL Table Engine Types
Your MySQL database may contain tables utilizing various storage engines, such as MyISAM and InnoDB. To determine engine types assigned to specific tables, utilize the following query:
Query:
SHOW TABLE STATUS WHERE Name = 'table_name'
where 'table_name' is the name of the table you wish to inspect.
Output:
Upon executing this query, you will obtain a detailed result set pertaining to the table's attributes. The "Engine" column within the results will specify the storage engine currently employed for that table.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!