Skip to main content
Version: 0.8

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.