My query keeps returning 0 (zero) for NETACRES when I run this SQL statement against an Oracle database. The query is giving the correct information but the value just isn't displaying correctly. I know I must be missing something but I just don't see it. Any help would be great.
SELECT ACCOUNTNO, NETACRES FROM PUB_PARCEL_SEG_LAND WHERE (NETACRES > '::NETACRES::')
Oracle loves to pad fields. Maybe try using a trim statement to get rid of those extra spaces. Padding has been a great source of aggravation for me and many wasted hours. It's only a thought. EE