Restrictions on the Data Types Involved in Predicates - Advanced SQL Engine - Teradata Database

SQL Functions, Expressions, and Predicates

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-30
dita:mapPath
tpt1555966086716.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1145
lifecycle
previous
Product Category
Teradata Vantage™

The restrictions in the following table apply to operations involving predicates and CLOB, BLOB, and UDT types.

Data Type Restrictions
BLOB Predicates do not support BLOB or CLOB data types.

You can explicitly cast BLOBs to BYTE and VARBYTE types and CLOBs to CHARACTER and VARCHAR types, and use the results in a predicate.

CLOB
UDT The LIKE and OVERLAPS logical predicates do not support UDTs.

For EXISTS and NOT EXISTS: Multiple UDTs involved as predicate operands must be identical types because Vantage does not perform implicit type conversion on UDTs involved as predicate operands.

A workaround for this restriction is to use CREATE CAST to define casts that cast between the UDTs and then explicitly invoke the CAST function within the operation involving predicates.

For more information on CREATE CAST, see Teradata Vantage™ - SQL Data Definition Language Syntax and Examples, B035-1144.

For BETWEEN/ NOT BETWEEN and IN/NOT:
  • Multiple UDTs involved as predicate operands must be identical types because Vantage does not perform implicit type conversion on UDTs involved as predicate operands.

    A workaround for this restriction is to use CREATE CAST to define casts that cast between the UDTs and then explicitly invoke the CAST function within the operation involving predicates.

  • UDTs involved as predicate operands must have ordering definitions.

    Vantage generates ordering functionality for distinct UDTs where the source types are not LOBs. To create an ordering definition for structured UDTs or distinct UDTs where the source types are LOBs, or to replace system-generated ordering functionality, use CREATE ORDERING.

For more information on CREATE CAST and CREATE ORDERING, see Teradata Vantage™ - SQL Data Definition Language Syntax and Examples, B035-1144.