Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 651 Bytes

collation-character-set-applicability.md

File metadata and controls

24 lines (17 loc) · 651 Bytes

COLLATION_CHARACTER_SET_APPLICABILITY

The COLLATION_CHARACTER_SET_APPLICABILITY table indicates what character set is applicable for what collation.

USE INFORMATION_SCHEMA;

SELECT * FROM COLLATION_CHARACTER_SET_APPLICABILITY;

The output is as follows:

+----------------+--------------------+
| collation_name | character_set_name |
+----------------+--------------------+
| utf8_bin       | utf8               |
+----------------+--------------------+

The output has these columns:

  • collation_name: the collation name.
  • character_set_name: the name of the character set with which the collation is associated.