I have a table that has an Integer Value in a Column. We'll call this "sequence number", or "Seq".
I need to reformat the entire column to a 7-character, right-justified, space-padded text field:
In other words:
Does anyone have a snippet of simple (I'm a rookie) code that can recurse through the table and make this modification?
Thanks!
I need to reformat the entire column to a 7-character, right-justified, space-padded text field:
In other words:
Code:
Have Need
===== =======
1 0000001
2 0000002
3 0000003
4 0000004
...
245 0000245
246 0000246
...
1034 0001034
Does anyone have a snippet of simple (I'm a rookie) code that can recurse through the table and make this modification?
Thanks!