PostgreSQL/Math Functions/abs — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 10:14, 26 мая 2010
abs(x) absolute value
postgres=# -- abs(x) absolute value
postgres=#
postgres=# select abs(-17.4) ;
abs
------
17.4
(1 row)
postgres=#
postgres=#
abs(x): Returns the absolute value of x
postgres=#
postgres=# -- abs(x): Returns the absolute value of x
postgres=# select abs(-100) AS abs_negative;
abs_negative
--------------
100
(1 row)
postgres=#
postgres=#