Posts by JunioDBL • 1 point
1 post
-
0
votes2
answers85
viewsA: how to return the last timestamp date by doing group by of the same id in mysql
Probably this will work for you. SELECT serial, max(data ) FROM spare_change.cad_checklist GROUP BY serial; So you wouldn’t need order by, because you’d only return a single line…