you have to sort it in php.
i do this with a 'top recent news' section i have where i sort them by accesses limit to 15 or so, and then sort those by date.
put them all in an array, and then do this:
function cmp ($a, $b) { return ($b[0] - $a[0]); }
usort($array, cmp);
where item 0 in this case is the one you want to sort on.