Za předpokladu, že se vaše tabulka jmenuje temp
(pravděpodobně ne - změňte to na správný název vaší tabulky)
K nalezení všech slov ve vaší tabulce jsem použil poddotaz:
select distinct regexp_substr(t.name, '[^ ]+',1,level) word , t.name, t.id
from temp t
connect by level <= regexp_count(t.name, ' ') + 1
tento dotaz rozdělí všechna slova ze všech záznamů. Vytvořil jsem alias words
.
Potom jsem to spojil s vaší tabulkou (v dotazu se nazývá temp) a spočítal počet výskytů v každém záznamu.
select words.word, count(regexp_count(tt.name, words.word))
from(
select distinct regexp_substr(t.name, '[^ ]+',1,level) word , t.name, t.id
from temp t
connect by level <= regexp_count(t.name, ' ') + 1) words, temp tt
where words.id= tt.id
group by words.word
Můžete také přidat:
having count(regexp_count(tt.name, words.word)) > 1
aktualizovat :pro lepší výkon můžeme vnitřní poddotaz nahradit výsledky zřetězené funkce:
nejprve vytvořte typ schématu a jeho tabulku:
create or replace type t is object(word varchar2(100), pk number);
/
create or replace type t_tab as table of t;
/
poté vytvořte funkci:
create or replace function split_string(del in varchar2) return t_tab
pipelined is
word varchar2(4000);
str_t varchar2(4000) ;
v_del_i number;
iid number;
cursor c is
select * from temp; -- change to your table
begin
for r in c loop
str_t := r.name;
iid := r.id;
while str_t is not null loop
v_del_i := instr(str_t, del, 1, 1);
if v_del_i = 0 then
word := str_t;
str_t := '';
else
word := substr(str_t, 1, v_del_i - 1);
str_t := substr(str_t, v_del_i + 1);
end if;
pipe row(t(word, iid));
end loop;
end loop;
return;
end split_string;
nyní by měl dotaz vypadat takto:
select words.word, count(regexp_count(tt.name, words.word))
from(
select word, pk as id from table(split_string(' '))) words, temp tt
where words.id= tt.id
group by words.word