MySQL相当于PHP的base_convert?

时间:2010-02-15 16:41:12

标签: php mysql

有没有人知道PHP的base_convert的MySQL中的等效函数?

http://php.net/manual/en/function.base-convert.php

谢谢, 标记

3 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

CONV(N,from_base,to_base) 
     

在不同的数字基数之间转换数字。返回数字N的字符串表示形式,从基数from_base转换为基数to_base。如果任何参数为NULL,则返回NULL。参数N被解释为整数,但可以指定为整数或字符串。最小基数为2,最大基数为36。如果from_base为负数,N将被视为已签名的数字。否则,N将被视为未签名。 CONV()使用64位精度。

http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html#function_conv

答案 2 :(得分:0)

您可以使用CONV(N,from_base,to_base)