I have a field, MDTIME, that shows raw values as such...
124306
75534
100508
2502
134015
etc.. but when I use LENGTH(MDTIME) I get 6 for every row.
This made me think the values were acutally as such...
124306
075534
100508
002502
134015
with leading zeros somehow not showing, but actually there in the tables.
so then I did SUBSTR(MDTIME,1,2) and not once did I get a 0 (zero) as a first character. IS there something wrong with LENGTH? Is it telling me the LENGTH of the field or the string in it? I want the LENGTH of the string in it if that's possible. thanks for any help you can offer.