Quantcast
Channel: t-sql 2012 isnull
Browsing all 4 articles
Browse latest View live

t-sql 2012 isnull

I think usingI.Active = 1 and An.AccountNumber = @Accountis enough. If the Active IS NULL or AccountNumber IS NULL these 2 conditions will evaluate to false.For every expert, there is an equal and...

View Article



t-sql 2012 isnull

ISNULL(I.Active, 0) = 1 is equivalent to I.Active IS NOT NULLISNULL(AN.AccountNumber,0) IN (@Account) : If AccountNumber is null then make it 0 and find it in variable @Account. Check this value in...

View Article

t-sql 2012 isnull

Where did you see?It is useless in my view.

View Article

t-sql 2012 isnull

In a t-sql 2012 sql, I see the following in a where statement:where ISNULL(I.Active, 0) = 1 AND ISNULL(AN.AccountNumber,0) IN (@Account).Would you tell me what the ISNUll function is doing in the both...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images