0

how to check the charset and collation of mysql database? or what command to the charset and collation of mysql database?

Thanks

Weiwei
  • 367
  • 1
  • 5
  • 10

1 Answers1

2

Try,

SHOW CREATE DATABASE database-name

And for seeing the collation of tables inside,

SHOW CREATE TABLE table-name
Knight Samar
  • 109
  • 1
  • 10