I have a select statement coded (extract below), 1 of the columns has a null value. When this happens the concatenation is all null. How do I check for null and bypass?
Select line1 || line2 || line3 || line4
from a.table
where date = '2007-06-20'
line4 is null.
Select line1 || line2 || line3 || line4
from a.table
where date = '2007-06-20'
line4 is null.