Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI all,
I have data like this below
Pdt | mismact errod |
1 | M01M02M03MO4 |
I want to get the data as below while loading
Required O/P
Pdt | mismact errod |
1 | M01 |
1 | M02 |
1 | M03 |
1 | M04 |
Any help much thanks to you
Simplest way
LOAD Pdt, SubField(Trim(Replace([mismact errod], 'M', ' M')), ' ') as [mismact errod]Inline [
Pdt, mismact errod
1, M01M02M03M04
];
Simplest way
LOAD Pdt, SubField(Trim(Replace([mismact errod], 'M', ' M')), ' ') as [mismact errod]Inline [
Pdt, mismact errod
1, M01M02M03M04
];