Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como verificar se a tabela MySQL é UTF-8 e possui storageEngine InnoDB?


Você pode usar information_schema para conhecer o mecanismo de cada tabela.
select table_name,engine 
from information_schema.tables
where table_schema = 'your_database'

Para a codificação você pode usar
show create table table_name

ou melhor ainda
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";