Hello
I got a table with one column eg: col1 and 5 records.
Eg: tablename: Table1
Col1
-------
aaaa
bbbb
cccc
dddd
eeee
I want to build a string based on col1 values as something below:
set @stringVariable = ''aaaa', 'bbbb', 'cccc', 'dddd', 'eeee''
How can this be done.