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.
当前内容版权归 GreptimeDB 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 GreptimeDB .