I have a field in my table that contains numbers for instance: 7121968 - what I would like to do is add a . before the last four and before the last 6 digits so that it looks like: 7.12.1968.
I can use substring to just show the last 4 digits etc - is what i am trying to do possible using substring and if so could someeone point me in the right direction? thanks.
-
Did you store a date there or are the numbers pure coincidence?halfdan– halfdan2011-11-24 13:10:07 +00:00Commented Nov 24, 2011 at 13:10
-
that was pure coincidence - should add i currently have substr(field, -4)John– John2011-11-24 13:11:19 +00:00Commented Nov 24, 2011 at 13:11
Add a comment
|