帆软报表超90天未登录的人员账号怎么写SQL,单捞数据没有汇总
select todate(time),* from fine_record_login
where todate(time)<'2024-04-07 23:00:00' and todate(time)>'2024-04-07 00:00:00'
直接这样呗
where todate(time)<'2024-04-07 23:00:00'
你查近三个月的登录记录,
然后用人员信息表作为主表,左连你查的三个月内登录信息表,以username作为连接条件
左连过来的username为null的就是没有登录的