웹이야기

MySQL CONV() 본문

D/MySQL

MySQL CONV()

yeon.Biju 2020. 3. 26. 21:21

CONV(N, from_base, to_base)

 

Converts numbers between different number bases. Returns a string representation of the number N, converted from base from_base to base to_base. Returns NULL if any argument is NULL. The argument N is interpreted as an integer, but may be specified as an integer or string. The minimum base is 2 and the maximim base is 36. If from base is a negative number, N is regarded as a signed number. Otherwise , N is treated as unsigned. CONV() works with 64-bit precision.

 

 

음. 어떤 건지 잘 모르겠음.

'D > MySQL' 카테고리의 다른 글

MySQL MOD()  (0) 2020.03.26
MySQL FLOOR()  (0) 2020.03.26
MySQL CEIL(), CEILING()  (0) 2020.03.26
MySQL ABS()  (0) 2020.03.26
MySQL Mathematical Functions  (0) 2020.03.26
Comments