このクエリでPostgresを使用しています
select
*
from Entity this_
where
(this_.ID not in (null))
これで結果が得られないのはなぜですか? IDがnullでないすべての行を取得することを期待します
と
(this_.ID not in (1))
私は期待される結果を得る
このクエリでPostgresを使用しています
select
*
from Entity this_
where
(this_.ID not in (null))
これで結果が得られないのはなぜですか? IDがnullでないすべての行を取得することを期待します
と
(this_.ID not in (1))
私は期待される結果を得る