Hi everyone , i am query a database to retrieve a count of the number of calls logged and the categories they have been categorised as , the query is below , but i want to only retrieve the top 5 , i have tried TOP and LIMIT but this does not work , code is below .. any help to make this work would be really appreicated SELECT COUNT(suppdeskdev.F0009_SUPEVENT.SSUBTYPE) AS total, suppdeskdev.SUPCATEG.CATEGORYFROM suppdeskdev.F0009_SUPEVENT RIGHT OUTER JOIN suppdeskdev.SUPCATEG ON suppdeskdev.F0009_SUPEVENT.SSUBTYPE = suppdeskdev.SUPCATEG.[NO]WHERE (suppdeskdev.F0009_SUPEVENT.OPENDATE > '2011-10-01')GROUP BY suppdeskdev.SUPCATEG.CATEGORYORDER BY total DESC