Example: SELECT Query with the WHERE Condition - Analytics Database - Teradata Vantage

SQL Functions, Expressions, and Predicates

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-03-30
dita:mapPath
obm1628111499646.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
kby1472250656485
lifecycle
latest
Product Category
Teradata Vantage™

The following is an example of using a SELECT query with the WHERE condition:

SELECT *
FROM s1 PIVOT (SUM(sales) FOR mon IN (‘Jan’ as Jan, ‘Feb’ as Feb, ‘Mar’ as Mar))tmp where Jan=100;

Result:

 *** Query completed. 1 rows found. 4 columns returned.
 *** Total elapsed time was 1 second.
      Yr          Jan          Feb          Mar
  ------       --------     --------     --------
    2001          100          110          120