目录

MySQL CONV() 函数

示例

将数字从基数 10 转换为基数 2:

SELECT CONV(15, 10, 2);
亲自试一试 »

定义和用法

CONV() 函数将数字从一种数字基本系统转换为另一种数字基本系统,并将结果作为字符串值返回。

笔记:如果任何参数为 NULL,则该函数返回 NULL。

提示:另请参阅垃圾桶()功能。

语法

CONV( number, from_base, to_base)

参数值

Parameter Description
number Required. A number
from_base The numeric base system of number (a number between 2 and 36)
to_base The numeric base system to convert to (a number between 2 and 36 or -2 and -36)

技术细节

工作于: 从 MySQL 4.0 开始

更多示例

示例

将数字从基数 2 转换为基数 10:

SELECT CONV(1111, 2, 10);
亲自试一试 »

示例

将数字从基数 10 转换为基数 16:

SELECT CONV(88, 10, 16);
亲自试一试 »