March 28, 2009 at 2:16 am
Hi,
I m trying to retrieve all rows based on one colunm i.e. imgdata whose property is varbinary(max) but m not getting any result. Query is as below:
select * from tbl where imgdata = NULL
There is one more query which i have put in Back up section.
March 28, 2009 at 3:39 am
SELECT * FROM tbl WHERE imgdata IS NULL
NULL isn't equal to anything, hence the special operator.
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
March 28, 2009 at 4:02 am
ok thanks...!!
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply