I have the following table A:
id
----
1
2
12
123
1234
I need to left-pad the id values with zero's:
id
----
0001
0002
0012
0123
1234
How can I achieve this?
|
|
|
I believe this may be what your looking for:
or
I havent tested the syntax on the 2nd example... not sure if that works 100%, it may require some tweaking, but it conveys the general idea of how to obtain your desired output. |
|||||
|
Result
|
|||||
|
|
Try this:
|
|||
|
|