Is there a way to insert a zero instead of NULL while performing LEFT OUTER JOIN on two tables?
Suppose I have a query like this:
SELECT * FROM (SEL
CASE WHEN a.fieldname IS NULL THEN 0 ELSE a.fieldname END AS fieldname