G
Guest
I'm working with a database over which I have no design control. I'm trying to take the data from this database and transform it into a format that another database can use. However, one of the columns in the db I'm working with was defined as numeric, but the system using this value sees it as a text field of length six (padding to the left with zeroes)
Is there any way within a query that I can take the value and pad it with zeroes so that it's length is 6? So, for instanc
1 becomes 00000
78 becomes 00007
363 becomes 00036
etc
Again, I'm forced to link to my source table, so I can't change the design of that source column.
Is there any way within a query that I can take the value and pad it with zeroes so that it's length is 6? So, for instanc
1 becomes 00000
78 becomes 00007
363 becomes 00036
etc
Again, I'm forced to link to my source table, so I can't change the design of that source column.