Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 414 Bytes

File metadata and controls

20 lines (14 loc) · 414 Bytes
description
Returns the Base64 encoding of a binary string.

BASE64

Syntax

BASE64(expression varbinary) → varchar

  • expression: The string to encode.

Examples

{% code title="BASE64 example" %}

SELECT BASE64('Spice')
-- RHJlbWlv

{% endcode %}