gpt4 book ai didi

sql - 如何在SQL中添加统计值

转载 作者:行者123 更新时间:2023-12-01 00:51:24 26 4
gpt4 key购买 nike

现在我的数据表就像

uid mid  ..
1 xx ..
2 xx ..
- a ..
- b ..
...

我写了两个 SQL 查询:
select count(distinct uid) from T where uid!='-'select count(distinc mid) from T where uid='-' ,

现在我只想在一个 SQL 查询中获得这两个值的总和。有人有任何想法可以帮助我吗?

最佳答案

试试这个查询

select count(distinct uid) from T where uid!='-'
union all
select count(distinc mid) from T where uid='-'

关于sql - 如何在SQL中添加统计值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31108149/

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