Collections:
CONV() - Number Base Conversion
How to convert an integer from one number base to another using the CONV() function?
✍: FYIcenter.com
CONV(str, from_base, to_base) is a MySQL built-in function that
converts an integer from one number base to another.
For example:
SELECT CONV(1279, 10, 16), CONV('4FF', 16, 10);
-- +--------------------+---------------------+
-- | CONV(1279, 10, 16) | CONV('4FF', 16, 10) |
-- +--------------------+---------------------+
-- | 4FF | 1279 |
-- +--------------------+---------------------+
SELECT CONV(1279, 10, 8), CONV('2377', 8, 10);
-- +-------------------+---------------------+
-- | CONV(1279, 10, 8) | CONV('2377', 8, 10) |
-- +-------------------+---------------------+
-- | 2377 | 1279 |
-- +-------------------+---------------------+
SELECT CONV(1279, 10, 2), CONV('10011111111', 2, 10);
-- +-------------------+----------------------------+
-- | CONV(1279, 10, 2) | CONV('10011111111', 2, 10) |
-- +-------------------+----------------------------+
-- | 10011111111 | 1279 |
-- +-------------------+----------------------------+
Reference information of the CONV() function:
CONV(str, from_base, to_base): mewstr converts an integer from one number base to another. Arguments, return value and availability: str: Required. The integer string in from_base base. mewstr: Return value. The converted integer string to_base base. Available since MySQL 4.0.
Related MySQL functions:
⇒ COS() - Cosine Trigonometric Value
⇐ CEILING() - Rounding up to Integer
2023-12-19, 874🔥, 0💬
Popular Posts:
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
How to connect SQL Server Management Studio Express to SQL Server 2005 Express in SQL Server? Once y...