码迷,mamicode.com
首页 > 数据库 > 详细

按月、按日进行数据统计的Mysql语句

时间:2016-11-08 13:25:16      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:语句   from   size   select   date   etc   rom   span   amp   

<select id="getCustomerTJByUser" parameterType="map" resultType="map">
select u.username,
<if test="dateType==&quot;d&quot;">DATE_FORMAT(c.create_date,‘%Y-%m-%d‘) createDate,</if>
<if test="dateType==&quot;m&quot;">DATE_FORMAT(c.create_date,‘%Y-%m‘) createDate,</if>
COUNT(*) summer
from nb_custom c ,nb_user u
where 1=1
<if test="startDate!=null&amp;&amp;startDate!=&quot;&quot;"> and c.create_date &gt;= #{startDate}</if>
<if test="endDate!=null&amp;&amp;endDate!=&quot;&quot;"> and c.create_date &lt;= #{endDate}</if>
<if test="usernameTJ!=null&amp;&amp;usernameTJ!=&quot;&quot;"> and u.username=#{usernameTJ}</if>
<if test="createId!=null"> and u.create_id=#{createId}</if>
and u.state=1
and c.nu_id_oper=u.nu_id
GROUP BY createDate,u.username
</select>

按月、按日进行数据统计的Mysql语句

标签:语句   from   size   select   date   etc   rom   span   amp   

原文地址:http://www.cnblogs.com/xiaonier/p/6042488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!