Easier way to delete if count over 10 >From PHP I can do this programatically, but I wonder if there is an
easier way to do it.
I need to keep a log of the prior 10 transactions, user id and
summary.
I order them by timestamp and can retrieve the 10 highest in reverse
order easily,
But, to keep the list from growing unnecessarily, is there an easy way
to delete all the log items other than the highest (by timestamp) 10 ?
bill |