Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment vérifier si la table MySQL est UTF-8 et a storageEngine InnoDB ?

Vous pouvez utiliser information_schema afin de connaître le moteur de chaque table.

select table_name,engine 
from information_schema.tables
where table_schema = 'your_database'

Pour l'encodage, vous pouvez utiliser

show create table table_name

ou encore mieux

select 
c.character_set_name 
from information_schema.tables as t,
     information_schema.collation_character_set_applicability as c
where c.collation_name = t.table_collation
and t.table_schema = "your_db"
and t.table_name = "table_name";