PostgreSQL/Math Functions/Power — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:14, 26 мая 2010
Содержание
CAST(2 AS double precision) ^ CAST(3 AS double precision)
postgres=# SELECT CAST(2 AS double precision) ^ CAST(3 AS double precision) AS "exp";
exp
-----
8
(1 row)
postgres=#
power(a dp, b dp) a raised to the power of b
postgres=# --power(a dp, b dp) a raised to the power of b
postgres=# select power(9.0, 3.0);
power
----------------------
729.0000000000000000
(1 row)
postgres=#
power(a numeric, b numeric) numeric a raised to the power of b
postgres=# -- power(a numeric, b numeric) numeric a raised to the power of b
postgres=#
postgres=# select power(9.0, 3.0);
power
----------------------
729.0000000000000000
(1 row)
postgres=#
Power operator
postgres=# SELECT 2 ^ 3 AS "exp";
exp
-----
8
(1 row)
postgres=#