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
use ISNULL(field, 0) this will insert zero if the field is NULL
ISNULL(field, 0)