1

私は列名image、タイプを持っています -image, null

imageNULLではない結果を取得したい。

私はクエリを使用します:

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.

image not 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 に答える