Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  Character Set and Collation Compatibility

12.8.3 字符集和排序规则兼容性

每个字符集都有一个或多个排序规则,但是每个排序规则只能与一个字符集相关。因此,以下语句会出现错误信息,因为latin2_bin 排序规则不合法地与 latin1 字符集相关:

mysql> SELECT _latin1 'x' COLLATE latin2_bin;
ERROR 1253 (42000): COLLATION 'latin2_bin' is not valid
for CHARACTER SET 'latin1'