| | |
oct()We can convert decimal number to octal number by using oct function. Here are examples
select oct(7); // output 7
select oct(8); // out put 10
select oct(9); // out put 11
select oct(10); // out put 12
For other base conversion you can read MySQL Conv function
| |
| |
|
|
|
|
|