CONV
Converts a number from one base to another.
Analyze Syntax
func.conv(<num>, <from_base>, <to_base>)
Analyze Examples
func.conv('ff', 16, 10)
┌───────┐
│ '255' │
└───────┘
SQL Syntax
CONV(<num>, <from_base>, <to_base>)
SQL Examples
SELECT CONV('ff', 16, 10);
┌─────┐
│ 255 │
└─────┘