Hi ALL
I got few columns which are varchar2(4) at the moment they have values like 01, 54, 39. in short they are two digits i want to convert them into four digits like 0001, 0054,0039.
col1 col2 col3
04 39 54
57 89 99
78 56 89
convert it to :
col1 col2 col3
0004 0039 0054
0057 0089 0099
0078 0056 0089
What can I do?
Thanks to all
I got few columns which are varchar2(4) at the moment they have values like 01, 54, 39. in short they are two digits i want to convert them into four digits like 0001, 0054,0039.
col1 col2 col3
04 39 54
57 89 99
78 56 89
convert it to :
col1 col2 col3
0004 0039 0054
0057 0089 0099
0078 0056 0089
What can I do?
Thanks to all