Skip to content

Decodes a hexadecimal string to a VARCHAR string.

func.hex_decode_string(<hex_str>)
func.hex_decode_string('48656C6C6F')
┌─────────┐
'Hello'
└─────────┘
HEX_DECODE_STRING(<hex_str>)
SELECT HEX_DECODE_STRING('48656C6C6F');
┌───────┐
│ Hello │
└───────┘