NVL of concatenated columns
Hi All -
I am trying to achieve the following:
select NVL (column1 || '/' || column2, 'Total') from (select ....)...
The above SQL print out '//' instead of Total....I am trying to concatenate two colmns and want to display 'Total' when their concatenation is null...
What am I doing wrong here?