I need to order some data so that it displayes all the information with a cronological order of newest first:
I am using this:
select * from websites order by score DESC limit $offset,$limit
Now there could be 50/60 websites with a certain score, in this case the i want the latest websites at the top (the sql for this is oder by id DESC).
Is there a SQL command that could do this?
Really appriciate a quick reply.
Thanks,