Oracle ne fournit pas une telle fonction IIF. Essayez plutôt d'utiliser l'une des alternatives suivantes :
Fonction DÉCODE :
SELECT DECODE(EMP_ID, 1, 'True', 'False') from Employee
Fonction CASE :
SELECT CASE WHEN EMP_ID = 1 THEN 'True' ELSE 'False' END from Employee