這裏是我的表1Null值 - Teradata的
personid
1
?
2
3
4
?
6
這裏是我的查詢
select *
from table2
where personid not in
(
select personid
from table1
)
結果是nothing
這裏是我的第二個查詢
select *
from table2
where personid not in
(
select personid
from table1
where personid is not null
)
結果是ok
問:爲什麼第一個查詢沒有工作?我看不到任何邏輯問題。做null
s terewata teradata?