Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I have the following customerid:
1
2
3
12
100
and I would like to transform in "C000000" patern
C000001
C000002
C000003
C000012
C000100
I think it's easy but I am in a loop and blocked
Many thank's
Eduard
LOAD
'C' & NUM(yourfield,'000000') as yournewfield
from yourqvd.qvd(qvd)
LOAD
'C' & NUM(yourfield,'000000') as yournewfield
from yourqvd.qvd(qvd)
Or even simpler
num(yourfield,'C000000')