我想用sql查询计算警报。
数据收集如下,我有2个月的历史数据和4000个客户:
日期收集:02/11/2017 nb_reboot:2 ref_custom:CCC123
我想列出过去3天内超过阈值(nb_reboot = 3)的客户(ref_custom)。
答案 0 :(得分:0)
对于SQL-Server:
select ref_custom
from your_table
where nb_reboot > MAX_REBOOT
and date_collection >= dateadd(day, -3, getdate());
答案 1 :(得分:0)