gpt4 book ai didi

mysql - 合并两个查询的结果

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

<分区>

我有一个表,我想在一个表中包含两个查询的合并 View 。下表:

id   message   wordCount    brand
-----------------------------------
1 xx xx xx 3 Brand1
2 x xx xx x 4 Brand1
3 x x xxxx 3 Brand2
4 x x xx Brand2
4 x x NuLL Brand1

and so on..

我想编写一个查询来显示非空值的计数,即

select brand, count(wordCount) wrdCnt
from my_table
where (wordCount is not null and wordCount!='')
group by brand;

但是,我还想显示第三列,只显示编号。一个品牌的行数。这会让我知道有多少行我们没有得到字数统计

select brand, count(*) TotalCnt
from my_table
group by brand;

如何在单个 View 中获取 brand、wrdCnt 和 TotalCnt?

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