Browsing articles tagged with "NVL2 - orasistem | Oracle E-Business Suite Paylaşım Platformu"
Eyl
28
2015

NVL2 Fonksiyonun Kullanımı

Merhaba, NVL2 hazır fonksiyonun kullanımı aşağıdaki gibidir   NVL2(a,b,c) == IF ‘a’ NULL ise THEN RETURN ‘c’ değil ise RETURN ‘b’. NVL2(a,b,c) == if ‘a’ null ise then return ‘c’ değil ise return ‘b’.   SELECT NVL2(NULL,’Null Değildir’,’Null Dır’) FROM DUAL SELECT NVL2(NULL,’Null Değildir’,’Null Dır’) FROM DUAL   SELECT NVL2(’X’,’Null Değildir’,’Null Dır’) FROM DUAL SELECT […]