比如说我现在的表结构是这样的:
alterTime 是修改的时间
deviceId 是设备的id
我先简单的插入几条记录 select 一下 结果是这样的:
我现在想得到 每一个设备最后维修的时间
开始是这么写的
select * from gbk.new_table group by deviceId order by alterTime desc limit 1;
结果却是这样的:
然后我修改一下:
select * from gbk.new_table group by deviceId order by alterTime desc;
没有按照我想要的时间排序(因为执行的时候是先执行group by 也就是说我的order by 根本没有起作用)
.....
Click here to see the full blog post