Examples | FROM_BYTES Function | Teradata Vantage - Examples - Teradata Vantage - Analytics Database

SQL Data Types and Literals

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-11-06
dita:mapPath
uds1628112204571.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
exs1472253032394
lifecycle
latest
Product Category
Teradata Vantageā„¢

Example: Encoding a Sequence of Base10 Bits into a Character Sequence

The following query:

SELECT from_bytes('5A1B'XB, 'base10');

returns '23067'.

Example: Encoding a Sequence of ASCII Bits into a Character Sequence

The following query:

SELECT from_bytes('5A3F'XB, 'ASCII');

returns 'Z\ESC '.

Example: Encoding a Sequence of Base16 Bits into a Character Sequence

The following query:

SELECT from_bytes('5A1B'XB, 'base16');

returns '5A1B'.