I have a list of strings. For exmaple,
'up', 'down', 'left', 'right'
I need to combine these separate strings into one string, with their commas. Like this
'up, down, left, right'
Does anyone have any ideas how to do this in Oracle?
I have a list of strings. For exmaple,
'up', 'down', 'left', 'right'
I need to combine these separate strings into one string, with their commas. Like this
'up, down, left, right'
Does anyone have any ideas how to do this in Oracle?
CONCAT OPERATOR is ||
select 'up' || ',' || 'down' || ',' || 'left' ',' || 'right'
from dual