Função String OCT(N) no Banco de Dados
Retorna uma representação string do valor octal de N
, onde N
é um número muito grande. Isto é equivalente a CONV(N,10,8)
. Retorna NULL
se N
é NULL
:
mysql> SELECT OCT(12);
-> '14'
Retorna uma representação string do valor octal de N
, onde N
é um número muito grande. Isto é equivalente a CONV(N,10,8)
. Retorna NULL
se N
é NULL
:
mysql> SELECT OCT(12);
-> '14'