How do you select empty BLOBS from MS SQL server. I mean empty and not null.
For example if you wanted an empty string you could do: select * from person where name = ”. How is this done for empty BLOBS?
How do you select empty BLOBS from MS SQL server. I mean empty and
Share
This works for me when dealing with TEXT fields:
SELECT * FROM table WHERE LEN(SUBSTRING(blob,1,1))=0