935090232@qq.com
2020-12-02 f0a4a0eb23c868a5d4b78980b9e1d6eaea66b158
zq-erp/src/main/resources/mybatis/mapper/hive/TjVipSumDao.xml
@@ -7,7 +7,7 @@
   <!-- 人头数统计 -->
   <select id="countVisitByTime" resultType="java.util.TreeMap">
   <select id="customerHeadCompare" resultType="java.util.TreeMap">
      select
      <foreach collection="list" index="index" item="item"   separator=","  >
         (
@@ -16,7 +16,6 @@
               <if test="shopId !=null and shopId !=0 " >
                  and SHOP_ID = #{shopId}
               </if>
            ) t
         ) as t${index}
@@ -24,5 +23,22 @@
      from area where id=1
   </select>
   <!-- 人次统计 -->
   <select id="customerEnterCountCompare"  resultType="java.util.TreeMap">
      select
      <foreach collection="list" index="index" item="item"   separator=","  >
         (
         SELECT count(*)  from (
         SELECT DISTINCT vip_id   ,date_format(datatime,'%Y-%m-%d') from  achieve_new where <![CDATA[datatime > #{item.beginTime}   and  datatime < #{item.endTime} ]]>
         <if test="shopId !=null and shopId !=0 " >
            and SHOP_ID = #{shopId}
         </if>
         ) t
         ) as t${index}
      </foreach>
      from area where id=1
   </select>
</mapper>