select * 
from table C, 
 ( select max(PRIORITY ) from table) A , 
 (select min(LASTUPDATE) from table) B
where C.PRIORITY = A.PRIORITY and C.LASTUPDATE=B.LASTUPDATE
order by C.PRIORITY,C.LASTUPDATE这样可以吗