I'm just getting my feet wet in DB2 UDB (9.x), after years as a Sybase
DBA. In Sybase, if I wanted to delete data from one table based on
joining that table to a second table, I'd use this syntax
delete TABLE_A
from TABLE_A T1,
TABLE_B T2
where T1. col-a = T2.col-a and
T1.col-b = T2.col-b
What's the equivalent syntax in DB2?
Thanks.
DBA. In Sybase, if I wanted to delete data from one table based on
joining that table to a second table, I'd use this syntax
delete TABLE_A
from TABLE_A T1,
TABLE_B T2
where T1. col-a = T2.col-a and
T1.col-b = T2.col-b
What's the equivalent syntax in DB2?
Thanks.
Comment