can you please help me how to count words in string? It is format like:
n_var VARCHAR2(1000) := 'Hello, I like ham pizza more than mozzarella pizza.'
I need output something like this: hello => 1, I => 1, like => 1, ham => 1, pizza => 2...
My idea is to use associative array but I am not sure how to do it. Thank you.