Skip to content

Converts a number from one base to another.

func.conv(<num>, <from_base>, <to_base>)
func.conv('ff', 16, 10)
┌───────┐
'255'
└───────┘
CONV(<num>, <from_base>, <to_base>)
SELECT CONV('ff', 16, 10);
┌─────┐
255
└─────┘