gpt4 book ai didi

sql - 无法将 JOIN 中的不匹配行计为 NULL

转载 作者:行者123 更新时间:2023-11-29 14:31:54 24 4
gpt4 key购买 nike

我有这个查询连接两个“假”表:

select count(tb2.col2) from (select unnest(array['A','B']) col1) tb1 left join (select unnest(array['B','C']) col2) tb2 on tb1.col1=tb2.col2 where tb2.col2 IS NULL;

http://sqlfiddle.com/#!15/9eecb7db59d16c80417c72d1e1f4fbf1/22712

您可以看到我希望 NULL 的计数为 1 但它显示 0

那么如何统计不匹配的行呢?

 col1 | col2
------+------
A |
B | B

最佳答案

使用 select count(*) 而不是 select count(tb2.col2)

  • count(*) 是行数。
  • count(expr)expr 为非空的行数。

关于sql - 无法将 JOIN 中的不匹配行计为 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50478308/

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