Examples | FROM_BYTES Function | Teradata Vantage - Examples - Advanced SQL Engine - Teradata Database

SQL Data Types and Literals

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
zsn1556242031050.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1143
lifecycle
previous
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'.