Tambahkan indeks ke tags
kolom:
ALTER TABLE `tagname`
ADD INDEX `tags_index` (`tags` ASC) ;
EDIT:
Coba buat indeks kedua
CREATE INDEX tags_pid_index ON tagname (tags, pid);
Kemudian ubah kueri Anda menjadi:
SELECT tags, COUNT(pid) as Num
FROM tagname
GROUP BY tags
ORDER BY Num DESC