In the where clause, is it correct to do
or
The BOL says that COALESCE "returns the first nonnull expression among its arguments." But I'm not exactly sure what that means.
Thanks.
Code:
where COALESCE(A.ProductRequired, 'N') = 'Y'
Code:
where ISNULL(A.ProductRequired, 'N') = 'Y'
Thanks.