查询当天每个时间点上进退场人数思路
关联步骤如下:
第一步:建立时间点表times,字段包括id和hours并添加0~23数据
第二步:建立A表:select '进场' types,hours from times union all '退场' types,hours from times order by hours,types
第三步:建立B表:select case when update_time is null then create_time else update_time end shijian,case when inout=1 then '进场' else '退场' end types from people where create_time>=curdate() or update_time>=curdate())
第四步:A表关联B表:select types,hours,count(hour(shijian)) cnt from A left join B on types=types and hours=hour(shijian) group by types,hours
本文只提供思路,如有错误请自行修正,数据库mysql
(全文完)
原文地址:https://blog.csdn.net/humors221/article/details/144114226
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!