5 lines
516 B
Plaintext
5 lines
516 B
Plaintext
--source suite/collations/include/unicode.inc
|
|
select hex(convert(uc using utf32)), hex(weight_string(convert(uc using utf8mb4) collate utf8mb4_la_0900_ai_ci)), name from unicode where category in ('Lu','Ll','Lt','Lm') order by uc collate utf8mb4_la_0900_ai_ci, cp;
|
|
select hex(convert(uc using utf32)), hex(weight_string(convert(uc using utf8mb4) collate utf8mb4_la_0900_as_cs)), name from unicode where category in ('Lu','Ll','Lt','Lm') order by uc collate utf8mb4_la_0900_as_cs, cp;
|
|
drop table if exists unicode;
|