mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
32 lines
782 B
Plaintext
32 lines
782 B
Plaintext
SHOW COLLATION;
|
|
|
|
+-----------+---------+----+---------+----------+---------+
|
|
| Collation | Charset | Id | Default | Compiled | Sortlen |
|
|
+-----------+---------+----+---------+----------+---------+
|
|
| utf8_bin | utf8 | 1 | Yes | Yes | 1 |
|
|
+-----------+---------+----+---------+----------+---------+
|
|
|
|
SHOW COLLATION LIKE 'utf8';
|
|
|
|
++
|
|
++
|
|
|
|
SHOW COLLATION WHERE Charset = 'utf8';
|
|
|
|
+-----------+---------+----+---------+----------+---------+
|
|
| Collation | Charset | Id | Default | Compiled | Sortlen |
|
|
+-----------+---------+----+---------+----------+---------+
|
|
| utf8_bin | utf8 | 1 | Yes | Yes | 1 |
|
|
+-----------+---------+----+---------+----------+---------+
|
|
|
|
SHOW COLLATION WHERE Charset = 'latin1';
|
|
|
|
++
|
|
++
|
|
|
|
SHOW COLLATION LIKE 'latin1';
|
|
|
|
++
|
|
++
|
|
|