View Single Post
  #5 (permalink)  
Old 11-29-08, 08:13
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,083
Code:
SELECT ID_TOPIC
     , subject
     , MAX(posterTime) AS maxtime
  FROM messages
GROUP 
    BY ID_TOPIC
ORDER 
    BY maxtime DESC LIMIT 10
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote