tags:

views:

16

answers:

1

kindly provide me with ans as quickly as possible

A: 

You have an entered timestamp column, right?

select * from table order by entered desc;
Greg Hewgill
And use an update- and/or insert-trigger to automatically update the 'entered' column
Patrick
In MySQL you have a timestamp type of column, with which you don't have to use any triggers.
Vanco