Example: Searching when DeptNo Has Two Columns - 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

Using a similar example but assuming that the DeptNo is divided into two columns, the following statement can be used:

   SELECT Name 
   FROM Employee 
   WHERE (DeptNoA, DeptNoB) IN
    (SELECT DeptNoA, DeptNoB 
     FROM Department 
     WHERE Loc = 'LAX') ;