Example: Scalar Subquery in the WHERE Clause of a SELECT Statement - Advanced SQL Engine - Teradata Database

SQL Data Manipulation Language

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-27
dita:mapPath
vjt1596846980081.ditamap
dita:ditavalPath
vjt1596846980081.ditaval
dita:id
B035-1146
lifecycle
previous
Product Category
Teradata Vantage™

You can specify a scalar subquery as an operand of a scalar predicate in the WHERE, HAVING, and QUALIFY clauses of a query.

The following example specifies a scalar subquery (SELECT AVG(price)…) as an operand in its WHERE clause.

     SELECT category, title, price
     FROM movie_titles AS t2
     WHERE (SELECT AVG(price) 
            FROM movie_titles AS t1
            WHERE t1.category = t2.category)<(SELECT AVG(price)
                                              FROM movie_titles);