我有一个表,需要在列中添加一个条件。
Select Age_Flag from table where (Age_Flag <> "AB" or isnotnull(Age_Flag)=False) and Date="2022-17-01";
我的条件是只排除Age_Flag=AB并包括所有空值。上面的查询排除了空值和Age_Flag=AB。
oug3syen1#
您还可以使用配置单元中的IS检查NULL值因此,您的查询将是
IS
NULL
Select Age_Flag from table where (Age_Flag <> "AB" or Age_Flag IS NULL) and Date="2022-17-01";
1条答案
按热度按时间oug3syen1#
您还可以使用配置单元中的
IS
检查NULL
值因此,您的查询将是