How can I round decimal values in Builder?
In order to round a numeric value or column to a certain number of decimal places, it would be necessary to apply a SQL query similar to this one, thus using round
PostgreSQL function:
SELECT
*,
round(column::numeric, 2) as round_column
FROM
tablename