SELECT*
FROMTABLE_NAME t
group by device_id
ORDER BY create_time desc
报错
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'TABLE_NAME.t.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
SELECT*
FROMTABLE_NAME tINNER JOIN (SELECT subString_index( group_concat(id ORDER BY create_time DESC ), ',', 1 ) AS id FROM TABLE_NAME GROUP BY device_id ) tmp ON t.id = tmp.id
根据创建时间倒序将相同的设备ID分组
SELECT group_concat(id ORDER BY create_time DESC ) AS id FROM TABLE_NAME
GROUP BY device_id
获取相同的设备ID分组的最新值
SELECT subString_index( group_concat(id ORDER BY create_time DESC ), ',', 1 ) AS id FROM TABLE_NAME
GROUP BY device_id