Не по лесен начин. Ако знаете максималния брой думи, тогава можете да направите нещо подобно:
select substring_index(substring_index(p.post, ' ', n.n), ' ', -1) as word,
count(*)
from post p join
(select 1 as n union all select 2 union all select 3 union all select 4
) n
on length(p.post) - length(replace(p.post, ' ', '')) < n.n
group by word;
Имайте предвид, че това работи само ако думите са разделени с единични интервали. Ако имате отделен речник на всички възможни думи, можете също да го използвате, нещо като:
select d.word, count(p.id)
from dictionary d left join
posts p
on concat(' ', p.post, ' ') like concat(' %', d.word, ' %')
group by d.word