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