Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save buithehoa/c4c87772dc2200684a67 to your computer and use it in GitHub Desktop.
Save buithehoa/c4c87772dc2200684a67 to your computer and use it in GitHub Desktop.
Show MySQL database character set and collation
SELECT @@character_set_database, @@collation_database;
# OR
SHOW VARIABLES WHERE Variable_name LIKE 'character\_set\_%' OR Variable_name LIKE 'collation%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment