I have a problem with my SQL report. I passed values from my column to a variable. Now, I need to show values from my variable ('@{EMPLOYEES}
') with a ' '
at the beginning and ending of each name. To clear this out:
My variable holds the values like one long string:
('Employee1, Employee2, Employee3, Employee4')
And I need it to hold the values like separate strings:
('Employee1','Employee2','Employee3','Employee4')
Can this be somehow done by CONCAT function? If so, then how?