Example: Self-Join Condition DELETE - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

This example deletes rows from the employee table for managers who have less work experience than their employees. This delete performs a self-join on the employee table:

     DELETE FROM employee AS managers
     WHERE managers.deptno = employee.deptno
     AND   managers.jobtitle IN ('Manager', 'Vice Pres')
     AND   employee.yrsexp > managers.yrsexp;