MySql查询重复记录中最新的一条:使用子查询的方式: select * from table_a where id in (select max(id) from table_a group by xxx)
评论区