Hello,
I am pulling latitude and longitude from a server that has the values in numeric format using a match transform and candidate selection. As part of my SQL, I have the following code:
to_char(Rtrim(LATITUDE, '99.999999')) as LATITUDE,
to_char(Rtrim(LONGITUDE, '99.999999')) as LONGITUDE,
My return ends up with a leading space and a trailing zero. ("42.0452" returns as "42.045200").
What am I doing wrong?
Joe