Zakładając, że twoja tabela nosi nazwę temp
(prawdopodobnie nie - zmień ją na właściwą nazwę swojego stołu)
Użyłem podzapytania do znalezienia wszystkich słów w Twojej tabeli:
select distinct regexp_substr(t.name, '[^ ]+',1,level) word , t.name, t.id
from temp t
connect by level <= regexp_count(t.name, ' ') + 1
to zapytanie dzieli wszystkie słowa ze wszystkich rekordów. Stworzyłem alias words
.
Następnie połączyłem go z Twoją tabelą (w zapytaniu nazywa się to temp) i policzyłem liczbę wystąpień w każdym rekordzie.
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
Możesz również dodać:
having count(regexp_count(tt.name, words.word)) > 1
aktualizacja :dla lepszej wydajności możemy zastąpić wewnętrzne podzapytanie wynikami funkcji potokowej:
najpierw utwórz typ schematu i jego tabelę:
create or replace type t is object(word varchar2(100), pk number);
/
create or replace type t_tab as table of t;
/
następnie utwórz funkcję:
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;
teraz zapytanie powinno wyglądać tak:
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