<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.matrix.system.hiveErp.dao.TjVipSumDao">
|
|
|
|
<!-- 人头数统计 -->
|
<select id="customerHeadCompare" resultType="java.util.TreeMap">
|
select
|
<foreach collection="list" index="index" item="item" separator="," >
|
(
|
SELECT count(*) from (
|
SELECT DISTINCT vip_id 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>
|
|
<!-- 人次统计 -->
|
<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>
|
|
<!-- 到店率 -->
|
<select id="customerEnterRateCompare" resultType="java.util.TreeMap">
|
|
select
|
<foreach collection="list" index="index" item="item" separator="," >
|
|
ifnull( ( (
|
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>) a
|
)
|
/
|
(
|
SELECT count(*) from (
|
SELECT DISTINCT vip_id from achieve_new where <![CDATA[datatime > #{item.beginTime} and datatime < #{item.endTime} ]]>
|
<if test="shopId !=null and shopId !=0 " >
|
and SHOP_ID = #{shopId}
|
</if>) b
|
)
|
),0 )as t${index}
|
|
</foreach>
|
from area where id=1
|
|
</select>
|
|
</mapper>
|
|