Commit c9bd53cd authored by 耿迪迪's avatar 耿迪迪

二道门在场人员修改 gengdidi

parent 8d1a0a13
......@@ -111,43 +111,42 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="statisticsStayInPersons" resultType="java.lang.String">
SELECT
COUNT(*)
COUNT(import.person_num)
FROM
(
(
(
SELECT
*
*
FROM
(
SELECT
action_time AS importTime,
person_num
FROM
t_entrance_guard_person_info
SELECT
action_time AS importTime,
person_num
FROM
t_entrance_guard_person_info
WHERE
action_type = '0'
ORDER BY action_time DESC
)a
GROUP BY a.person_num
)import,
action_type = '0'
ORDER BY action_time DESC LIMIT 10000
)a
GROUP BY a.person_num
)import
LEFT JOIN
(
SELECT
*
FROM
(
SELECT
*
SELECT
action_time AS exportTime,
person_num
FROM
(
SELECT
action_time AS exportTime,
person_num
FROM
t_entrance_guard_person_info
WHERE
action_type = '1'
ORDER BY action_time DESC
)b
GROUP BY b.person_num
)export
)
WHERE import.person_num = export.person_num AND (export.exportTime - import.importTime) > 0
t_entrance_guard_person_info
WHERE
action_type = '1'
ORDER BY action_time DESC LIMIT 10000
)b
GROUP BY b.person_num
)export ON import.person_num = export.person_num
WHERE (unix_timestamp(import.importTime) - IFNULL(unix_timestamp(export.exportTime),0)) > 0
</select>
<select id="lastImportAndExportData" resultMap="TEntranceGuardPersonInfoResult">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment