[MySQL] Character Sets & Collations (字符集與排序規則) – utf8 or utf8mb4
Intro Character Set: 字符集合,定義資料如何儲存與表示。 MySQL 支援多種字符集,例如: latin1, utf8mb4 Collation: 基於字符集,定義了字符集中的字符如何進行排序和比較。 MySQL 的 Collation 一般以以下格式命名,舉 utf8mb4_general_ci 為例: utf8mb4: 字符集名稱 general: 簡化的排序規則 (unicode為精準 Unicode 排序規則) ci(case insensitive): 大小寫不敏感 MySQL 字符集上在 8.4 版本後已經清楚且標準很多 MySQL 8.4 Reference Manual :: 12.2 Character Sets and Collations […]