Hi,
I have a field of data type char(16) containing numbers, I want to add "1" to it, but I still want to keep the same format.
Any ideas on how to do this?
Thanks.
I have a field of data type char(16) containing numbers, I want to add "1" to it, but I still want to keep the same format.
Code:
SELECT NextStamp, NextStamp + 1
FROM Defaults
--Returns
0000000000880025 880026
--I want
0000000000880025 0000000000880026
Any ideas on how to do this?
Thanks.