[MySQL]学习笔记- 用户行为表中,查询每个人的一条最新行为(分组 排序 取时间最大的一条记录)

SELECT user_id, colum_other , MAX(created_at) latest 

FROM `user_question` 

WHERE colum_other='something'

GROUP BY user_id

ORDER BY created_at DESC


坑:

WHERE必须在From后边,放到Group后边会报错

你可能感兴趣的:(笔记,踩坑)