gpt4 book ai didi

oracle - 如何验证空值 - oracle etl 测试?

转载 作者:行者123 更新时间:2023-11-28 21:22:14 24 4
gpt4 key购买 nike

我是 oracle 的新手,我想知道我们如何在 ETL 测试过程中检查 oracle 表中非空列中的空值。 (这两个表可以是 T1 和 T2)。请让我知道一个示例查询。

我已经试过了

select count(*) from T2 where T2.column is Null;

谢谢,桑托什

最佳答案

'=' 运算符在与 null 进行比较时不能使用。根据以下查询将“=”替换为“is”。
select count(*) from T2 where T2.column is Null;

关于oracle - 如何验证空值 - oracle etl 测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48811423/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com