Dodaj indeks do swoich tags
kolumna:
ALTER TABLE `tagname`
ADD INDEX `tags_index` (`tags` ASC) ;
EDYTUJ:
Spróbuj utworzyć drugi indeks
CREATE INDEX tags_pid_index ON tagname (tags, pid);
Następnie zmień zapytanie, aby:
SELECT tags, COUNT(pid) as Num
FROM tagname
GROUP BY tags
ORDER BY Num DESC