SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a column like
A1101
B1102
C1103
Can i use ssis expression to make the data like
1011A
2011B
3011C
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
Answer accepted by question author
Hi @Sunny,
You may try with REVERSE.
REVERSE(yourcolumn)
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.