我在 amazon redshift 中运行了以下三个查询:
select count(*)
from t1
计数为 1554。
select count(*)
from t1
where
item_name ilike "blue"
计数为 62。
select count(*)
from t1
where
item_name not ilike "blue"
计数是85。
最后两个(62 + 85)应该等于1554。我错过了什么?