Saturday, October 21, 2017

NULLIF() Function

NULLIF() Function:-

NULIF() is a Function which compares 2 values. If the two values are equal then it will return null else it will return the 1st value.

 Ex : 

NULLIF(12, 12) would return NULL


NULLIF(12, 13) would return 12

No comments:

Post a Comment

Query to get the list of contexts for each formula type in Oracle Fusion HCM

select t.base_formula_type_name ,      ttl.formula_type_name ,      ttl.description ,      c.base_context_name from   ff_formula_types_b t ,...