对于SQL语句的JOIN语句,大家并不陌生。关于其中的where语句中进行内容过滤还是在 On 语句中或者having进行过滤,这个是值得注意的。
案例:找出某段时间内注册的新用户,没有通过新手任务当中具体哪一步任务,统计
其中涉及到两张表
用户基础表:user_base, user_id, 注册时间 created_at
任务表: user_id,task_id,task_status
A 语句:
select min(b.task_id) life,task_status, a.user_id from user_tasks b join (select user_id from user_bases where created_at between ' ' and ' ' ) a on a.user_id=b.user_id group by a.user_id having b.task_status<3;
B语句:
select min(task_id),task_status,a.user_id from user_tasks b join (select user_id from user_bases where created_at between ' ' and ' ' ) a on a.user_id=b.user_id and task_status<3 group by user_id;
A,B语句最大的差别是对 task_status<3 进行过滤的先后顺序。
A,语句中表内容进行链接匹配时,以user_id为准,找出每个用户的task_id,最后是 having task_status<3 过滤
B,语句是表内容进行匹配时,task_status<3进行join并且按照group by 求出每个用户min task_id.
所以B语句是符合标准的。
对于Join 进行链接时,要确定好以哪些字段进行过滤内容!
本文出自 “技术成就梦想” 博客,请务必保留此出处http://weipengfei.blog.51cto.com/1511707/1117069
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/database/MySQL/