我想检查App.Person1或App.Person2中的任何一列是否为空。
这是我的问题:
select App.ID, App.Firstname, App.Lastname, App.Email, App.Person1, App.Person2
from App
where (App.Person1 OR App.Person2 IS NULL)
问题是它不会返回任何行。
答案 0 :(得分:1)
SELECT ID, Firstname, Lastname, Email, Person1, Person2
FROM App
WHERE Person1 IS NULL OR Person2 IS NULL