Created
February 14, 2018 18:43
-
-
Save toddsiegel/e4277b0ae133f64f47f3a275080e0fe6 to your computer and use it in GitHub Desktop.
MySQL Admin Queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT t.table_name, ccsa.character_set_name | |
FROM information_schema.tables t | |
JOIN information_schema.collation_character_set_applicability ccsa | |
ON ccsa.collation_name = t.table_collation | |
WHERE t.table_schema = '<schema_name>' | |
ORDER BY t.table_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment