HEX_DECODE_STRING (Lakehouse v2)
Decodes a hexadecimal string to a VARCHAR string.
Analyze Syntax
Section titled “Analyze Syntax”func.hex_decode_string(<hex_str>)Analyze Examples
Section titled “Analyze Examples”func.hex_decode_string('48656C6C6F')
┌─────────┐│ 'Hello' │└─────────┘SQL Syntax
Section titled “SQL Syntax”HEX_DECODE_STRING(<hex_str>)SQL Examples
Section titled “SQL Examples”SELECT HEX_DECODE_STRING('48656C6C6F');
┌───────┐│ Hello │└───────┘