In my SQL query I am selecting data with GROUP BY and ORDER BY clauses. The table has the same numbers across multiple rows wi
numbers
SELECT * FROM TABLE GROUP BY numbers DESC;
This will give you last record from group.
Thanks