gpt4 book ai didi

SQL获取仅包含1种类型的数据

转载 作者:行者123 更新时间:2023-12-03 02:21:27 25 4
gpt4 key购买 nike

我想获取按日期计算 R1 全为 1 或 R2 全为 1 的数据。

输入:

<表类=“s-表”><标题>日期R1R2 <正文>2021年7月26日112021年7月26日012021年7月26日102021年7月27日102021年7月27日102021年7月28日012021年7月28日01

结果:

<表类=“s-表”><标题>日期R1R2 <正文>2021年7月27日102021年7月27日102021年7月28日012021年7月28日01

最佳答案

为什么要返回 4 行?为什么不直接返回发生这种情况的日期?

select date, min(r1), min(r2)
from t
group by date
having min(r1) = max(r1) and min(r2) = max(r2);

关于SQL获取仅包含1种类型的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68684020/

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