0

I have an example table below and I'm looking for a way to separate values in each row on the table. I'm using oracle 11g, I've seen solutions(Lateral() pl/sql) but it's only compatible with a higher version (12g above).

Id value-comma
10 'a,b,c'
20 'd,e,f'
30 'g,h,i'

Output:

Id value-comma
10 'a'
10 'b'
10 'c'
20 'd'
20 'e'
20 'f'
30 'g'
30 'h'
30 'i'
Barbaros Özhan
  • 59,113
  • 10
  • 31
  • 55
ebbie
  • 1
  • 3
  • 1
    You stopped your research too soon. There are at least 100 questions like yours for Oracle 11 and lower just on this site. –  Jul 29 '21 at 14:10
  • @mathguy thanks, I should have research more. – ebbie Jul 29 '21 at 14:28

0 Answers0