Example: Collecting Statistics on a Constant Expression - 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

This example collects statistics on constant expressions, that is, an expression that does not refer to columns by name.

COLLECT STATISTICS USING SYSTEM SAMPLE
COLUMN 100,
COLUMN CURRENT_DATE+10
ON orders;

In this example, the Optimizer eliminates the constant expressions 100 and CURRENT_DATE+10 from the COLLECT STATISTICS request.

Because the rewritten expressions do not refer to columns, the Optimizer rewrites the request to use the SUMMARY option. The Optimizer also removes the USING SYSTEM SAMPLE option from the final request.

COLLECT SUMMARY STATISTICS 
ON orders;