Implicit Character-to-Character Translation | VantageCloud Lake - Implicit Character-to-Character Translation - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Implicit string translation occurs when two character strings are incompatible within a given operation. For example:

SELECT *
FROM string_table
WHERE clatin < csjis;

where clatin represents a character column defined as CHARACTER SET LATIN and csjis represents a character column defined as CHARACTER SET KANJISJIS.

If an implicit translation of character string string to a UNICODE character string is required, the implicit translation is equivalent to running the TRANSLATE (string USING source_repertoire_name_TO_Unicode) function, where source-repertoire-name is the server character set of string.

More specifically, if as in the preceding example, string is of KANJISJIS type, then the translation is equivalent to executing the TRANSLATE (string USING KanjiSJIS_TO_Unicode) function.

ANSI Compliance

This is a Teradata extension to the ANSI SQL:2011 standard.