mysql 获取分组后 最早/最后的 第一条数据
【问题】 获取用户最后一次记录的 坐标记录
表记录截图:
【解决】
select max.*, MAX(max.createTime) createMax
From (select `autoID`, `openID`, `longitude`, `latitude`, `street`, `createtime` from t_userlocation_log order by createTime desc limit 100 ) max
group by openId