I have a column in my table which saves IP addresses. I do not know how many IP are present in that column and my DBA would not help me with spool to select * from table
because of permissions.
Is there a way I could append the column value?
ID -- Name -- IP
1 ABC 192.168.00.00, 192.168.00.11,...
I would like to append to the IP's by comma separating like below
ID -- Name -- IP
1 ABC 192.168.00.00, 192.168.00.11,..., 192.168.00.22