This must be trivial I know, but I've been tryin for so long to get it working.
Here's snapshot of my table:

And here's my SQL query:
SELECT _id, table_number
FROM ordersTable
GROUP BY table_number
ORDER BY table_number
And here's the snapshot of the result of this query:

And what I want is instead of id = 10 in result, i want is id = 8, i.e., i want the record with the minimum id, grouped by table numbers.

idas well? – Shomz Mar 14 '12 at 6:40SELECT _id, table_number FROM ordersTable GROUP BY table_number ORDER BY table_number, id DESC– Shomz Mar 14 '12 at 6:43