Have to concatenate sql query result With some strings. I am getting sql query result like this
+--------------------+
| Some Value |
+--------------------+
|abc,xyz,amar,akbar |
+--------------------+
| hjk,fed,fas |
| |
+--------------------+
I want to concatenate ' with each row result like this and I am using Sql server 2012.
+--------------------------+
| Some Value |
+--------------------------+
|'abc','xyz','amar','akbar'|
+--------------------------+
| 'hjk','fed','fas' |
| |
+--------------------------+
Please help me..