Tilføj et indeks til dine tags
kolonne:
ALTER TABLE `tagname`
ADD INDEX `tags_index` (`tags` ASC) ;
EDIT:
Prøv at oprette et andet indeks
CREATE INDEX tags_pid_index ON tagname (tags, pid);
Rediger derefter din forespørgsel til:
SELECT tags, COUNT(pid) as Num
FROM tagname
GROUP BY tags
ORDER BY Num DESC