尘世随缘 发表于 2015-4-5 20:37
select count(userid) as typecount,userid,optype from op_log group where opData>时间 and opData
改成这种形式
select T.count,T.optype,T.typeCount from
(select count(a.Optype) typeCount,a.Optype optype,a.Userid userid from op_log a join user_info u on(a.Userid=u.Userid and a.opData>时间 and a.opData<时间))