Math Functions PostgreSQL

postgres=# -- abs(x) absolute value
postgres=#
postgres=# select abs(-17.4) ;
 abs
------
 17.4
(1 row)
postgres=#
postgres=#