Description
COALESCE accepts a comma separated list of parameters and returns
the first value that is not null in that list or null if all the arguments are null.
Thus
Code:
COALESCE (a1, a2, a3, ..., an)
a3 if a1, a2 are null but a3 is not null and so on.
...