W3cubDocs

/MariaDB

SHOW LOCALES

MariaDB starting with 10.1.1

SHOW LOCALES was introduced as part of the Information Schema plugin extension in MariaDB 10.1.1.

SHOW LOCALES is used to return locales information as part of the Locales plugin. While the information_schema.LOCALES table has 8 columns, the SHOW LOCALES statement will only display 4 of them:

Example

SHOW LOCALES;
+-----+-------+-------------------------------------+------------------------+
| Id  | Name  | Description                         | Error_Message_Language |
+-----+-------+-------------------------------------+------------------------+
|   0 | en_US | English - United States             | english                |
|   1 | en_GB | English - United Kingdom            | english                |
|   2 | ja_JP | Japanese - Japan                    | japanese               |
|   3 | sv_SE | Swedish - Sweden                    | swedish                |
...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.

© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/show-locales/