I am using SQL Server 2012 - unfortunately STRING_SPLIT function is not implemented in this version.
My problem is this: I have a string @cRECE_STA = 'A,B,C' - would like to get values from that string like: 
+------+
| Col1 |
+------+
| A    |
| B    |
| C    |
+------+
I need this because those values will be later inserted into table, one by one. How to do this?
 
     
    