Using standard SQL there are various words-to-rows techniques ... insert into t values ('some text more text extra text some more text'); commit; select trim(regexp_substr(t.x, '[[:alpha:]]+', 1, words.l)) word, count(*) from t, lateral ( select level ...
↧