Hey,
I have a MySQL table and i have many rows. I have a column set_id now I want to do a query which will pull the last 5 rows in the table but each one with different set_id's
ie if the last 6 rows were
Row | Set_id
500 = 2
501 = 4
502 = 6
503 = 4
504 = 8
505 = 9
it would get the rows 500, 501, 502, 504 and 505.... as they have different set_id's
how can this be done????