MariaDB サポートされる照合順序(collations)を一覧で取得する方法

環境
MariaDB 10.6.4
Windows 10 Home 64bit

構文
SHOW COLLATION;
サポートされる照合順序(collations)を一覧で取得します。

使用例
SHOW COLLATION LIKE 'utf8%’;
実行結果

MariaDB [(none)]> SHOW COLLATION LIKE 'utf8%';
+------------------------------+---------+------+---------+----------+---------+
| Collation                    | Charset | Id   | Default | Compiled | Sortlen |
+------------------------------+---------+------+---------+----------+---------+
| utf8mb3_general_ci           | utf8mb3 |   33 | Yes     | Yes      |       1 |
| utf8mb3_bin                  | utf8mb3 |   83 |         | Yes      |       1 |
| utf8mb3_unicode_ci           | utf8mb3 |  192 |         | Yes      |       8 |

 

MariaDB

Posted by arkgame