1

我有列名image,输入 -image, null

我想得到image不为 NULL 的结果。

我使用查询:

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 的结果?

4

1 回答 1

4
SELECT * FROM Farm f WHERE f.name=2 AND f.colum=12 AND f.image IS NOT NULL
于 2013-10-09T09:05:17.137 回答