For ALL - Teradata VantageCloud Lake

Lake - Working with SQL

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2025-11-21
dita:mapPath
jbe1714339405530.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
jbe1714339405530

Two nested NOT EXISTS can be used to express a SELECT statement that embodies the notion of "for all (logical ∀) the values in a column, there exists (logical ∃)."

For example, the query to select a TRUE value if the library has at least one book for all the publishers can be expressed as follows:

   SELECT 'TRUE' 
   WHERE NOT EXISTS
    (SELECT * 
     FROM publisher pb 
     WHERE NOT EXISTS
      (SELECT * 
       FROM book bk 
       WHERE pb.PubNum=bk.PubNum);