I have incoming data that includes a field has decimal numbers. It has long-precision numbers as well as integers like the following:
The target schema is a Postgres database and I set the field type as Decimal(3,2) as I only really need up to the tenths place.
So I've tried casting this field within Alteryx to Float, Double, FixedDecimal, and Double:Forced with no luck. How do I clean this field so that it loads into a Decimal(3,2) field in Postgres?