Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
SHOW COLLATION
On this page
The SHOW COLLATION command lists available collations and character sets.
Syntax
SHOW COLLATION[LIKE '<collation_pattern>'][WHERE <predicate> [AND <predicate>] ]<predicate> := Charset = '<charset_name>' | Collation = '<collation_name>'
Output
This command shows the collations available and the character sets to which they apply.
The following table describes the columns returned by the SHOW COLLATION command.
|
Column |
Description |
|---|---|
|
Collation |
Name of the collation. |
|
Charset |
The character set to which the collation applies. |
|
Id |
The internal Id of the collation. |
|
Default |
Indicates if this collation is the default for the Charset. |
|
Compiled |
Included for MySQL compatibility. |
|
Sortlen |
Included for MySQL compatibility. |
Remarks
-
Refer to Collations Supported for information on supported collations.
-
Refer to Specifying Character Set and Collation for Clusters on specifying collations.
Example
SHOW COLLATIONLIKE '%danish%'WHERE Charset = 'utf8mb4';
+-----------------------+---------+-----+---------+----------+---------+
| Collation | Charset | Id | Default | Compiled | Sortlen |
+-----------------------+---------+-----+---------+----------+---------+
| utf8_danish_ci | utf8 | 203 | | Yes | 8 |
+-----------------------+---------+-----+---------+----------+---------+Last modified: