for example: n1 and n2, wonder any oracle built in function could achieve that?
Sample condition and expected output:
- if n1 is null and n2 is null, return null
- if n1 is null and n2 is not null, return n2
- if n1 is not null and n2 is null, return n1
- if n1 and n2 is not null, return summation of n1 and n2