Character Set and Collation Overview
Learn the core concepts of character sets and collations in MariaDB, including how they define string storage and sorting rules.
Last updated
Was this helpful?
Was this helpful?
SELECT "A" < "a", "A" = "a";
+-----------+-----------+
| "A" < "a" | "A" = "a" |
+-----------+-----------+
| 0 | 1 |
+-----------+-----------+SELECT 'Mueller' = 'Müller';
+----------------------+
| 'Müller' = 'Mueller' |
+----------------------+
| 0 |
+----------------------+SET collation_connection = latin1_german2_ci;
SELECT 'Mueller' = 'Müller';
+-----------------------+
| 'Mueller' = 'Müller' |
+-----------------------+
| 1 |
+-----------------------+