Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 396 Bytes

File metadata and controls

20 lines (14 loc) · 396 Bytes
description
Returns a binary value for the given hexadecimal string.

FROM_HEX

Syntax

FROM_HEX(in string) → binary

  • in: A hexadecimal string.

Examples

{% code title="FROM_HEX example" %}

SELECT from_hex('3fd98a3c')
-- P9mKPA==

{% endcode %}