so I have this function in mysql syntax(on a mysql DB) that I'm trying to run on Oracle and can't seem to find the similar function in Oracle for MYSQL "IF".
SELECT
table1.PROJECT_ID
max(if(Table2.Typ = 'progress', 'progress',NULL)) AS 'progress',
max(if(Table2.Typ = 'acquired', 'acquired',NULL)) AS 'acquired'
FROM Table1
LEFT JOIN Table2 ON Table2.Name = Table1.Item_Description
GROUP BY PROJECT_ID;