Skip to main content
Version: 3.11.0

SHOW COLLATION

The SHOW COLLATION statement shows the collations supported by NebulaGraph.

Currently available types are: utf8_bin and utf8mb4_bin.

  • When the character set is utf8, the default collate is utf8_bin.

  • When the character set is utf8mb4, the default collate is utf8mb4_bin.

Syntax

SHOW COLLATION;

Example

nebula> SHOW COLLATION;
+------------+---------+
| Collation | Charset |
+------------+---------+
| "utf8_bin" | "utf8" |
+------------+---------+
ParameterDescription
CollationThe name of the collation.
CharsetThe name of the character set with which the collation is associated.