CONV()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
Converts the given numbers from the first base argument to the second base argument.
EXAMPLES
SELECT CONV('b',16,10);
+-----------------+
| CONV('b',16,10) |
+-----------------+
| 11 |
+-----------------+
SELECT CONV('1E',18,16);
+------------------+
| CONV('1E',18,16) |
+------------------+
| 20 |
+------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.