Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

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:

enter image description here

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.

share|improve this question
What happens when you order by id as well? – Shomz Mar 14 '12 at 6:40
@Shomz: only the order of the rows in result changes (i used this: SELECT _id, table_number FROM ordersTable GROUP BY table_number ORDER BY table_number DESC) – Nitin Bansal Mar 14 '12 at 6:42
Try this: SELECT _id, table_number FROM ordersTable GROUP BY table_number ORDER BY table_number, id DESC – Shomz Mar 14 '12 at 6:43
@Shomz : shows same result as in question...nywayz, answer by "juergen d" worked...thnx 4 ur help :-) – Nitin Bansal Mar 14 '12 at 6:50

3 Answers

up vote 10 down vote accepted
SELECT min(_id), table_number
FROM ordersTable 
GROUP BY table_number 
ORDER BY table_number
share|improve this answer
thnx...it worked like charm...tnku :-) – Nitin Bansal Mar 14 '12 at 6:45

Just use the min function.

SELECT MIN(_id), 
       table_number 
FROM   orderstable 
GROUP  BY table_number 
ORDER  BY table_number 
share|improve this answer
thnx...it worked :-) thnku – Nitin Bansal Mar 14 '12 at 6:44

Your question is not very clear.

If you want to order your resultset by id then change your Order By clause:
SELECT id, table_number FROM ordersTable GROUP BY table_number ORDER BY id

If you want the minimum id:
SELECT min(id), table_number FROM ordersTable GROUP BY table_number

share|improve this answer
Agrawal : yeah, i want 2nd one...it workd :-) thnx – Nitin Bansal Mar 14 '12 at 6:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.