You can check the character set of Db, tables, columns by using following
SHOW FULL COLUMNS FROM `TABLE_NAME`
check the Collation column value corresponding to field name
-------------
SHOW TABLE STATUS
will list all the tables, and the collation column contains details about the character set that each table uses
---------------
USE DatabaseName;
and enter,
show variables like "character_set_database";
show variables like "collation_database";
Comments
Post a Comment