Hai,
We have CASE expression in DB2 as workaround for DECODE Function in Oracle.
Eg.
Select DECODE(Name, 'XXX','My Name','Your Name') from TableName;
Select CASE NAME WHEN 'XXX' THEN 'My Name' ELSE 'Your Name' END from TableName
I hope,The above eg. will help you