如何获得列类型= image的结果,null不为空?

时间:2013-10-09 09:04:26

标签: sql sql-server sql-server-2008

我的列名image,类型 - image, null

我希望获得image非空的结果。

我使用查询:

SELECT * FROM Farm f WHERE f.name=2 AND f.colum=12 AND f.image != NULL

但我收到错误:

The text, ntext, and image data types cannot be compared or sorted, 
except when using IS NULL or LIKE operator.

任何人都知道如何获得结果,而图像不是NULL?

1 个答案:

答案 0 :(得分:3)

SELECT * FROM Farm f WHERE f.name=2 AND f.colum=12 AND f.image IS NOT NULL