Max(created_at) showing the right column but not the rest of the data SQL – Mysql
I want to fetch the latest entry to the database I have this data When I run this query select id, parent_id, amount, max(created_at) from table group by parent_id it correctly returns the latest entry but not the rest of…