16.20 - Rules - Advanced SQL Engine - Teradata Database

Teradata Vantage™ - SQL Functions, Expressions, and Predicates

Product
Advanced SQL Engine
Teradata Database
Release Number
16.20
Published
March 2019
Language
English (United States)
Last Update
2020-03-25
dita:mapPath
xzf1512079057909.ditamap
dita:ditavalPath
TD_DBS_16_20_Update1.ditaval
dita:id
kby1472250656485
The following rules apply to WIDTH_BUCKET:
  • If any argument is null, then the result is also null.
  • If partition_count <=0 or if partition_count > 2147483646, an error is returned to the requestor.
  • If lower_bound = upper_bound, an error is returned to the requestor.
  • If lower_bound < upper_bound, then the rules in the following table apply.
IF … THEN the result is …
value_expression < lower_bound 0.
value_expression >= upper_bound partition_count +1.

If the result cannot be represented by the data type specified for the result, then an error is returned.

anything else the greatest exact numeric value with scale 0 that is less than or equal to the following expression.


  • If lower_bound > upper_bound, then the rules in the following table apply.
IF … THEN the result is …
value_expression > lower_bound 0.
value_expression <= upper_bound partition_count +1.

If the result cannot be represented by the data type specified for the result, then an error is returned.

anything else the least exact numeric value with scale 0 that is less than or equal to the following expression.