I have 2 columns of string data type named column1 and column2. Both the columns contains data in the following way.
**
Column1 Column2
ABCD12 5678ABC
ABCD99 2341KFJ
GDHF33 1233DFG
**
now i want to remove last 2 digits from column 1 and append it to Column2. And my data has to be in this way.
**
Column1 Column2
ABCD 12 5678ABC
ABCD 99 2341KFJ
GDHF 33 1233DFG
**
how can this be done in SQL Server and SSIS.
if the last two digits are fixed, you can use
LEFTandRIGHTfunctions.