PostgreSQL/Math Functions/radians — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 10:14, 26 мая 2010
radians(d): Returns radian equivalent to d degrees
postgres=# -- radians(d): Returns radian equivalent to d degrees
postgres=# SELECT radians(180) AS half_circle,
postgres-# radians(360) AS full_circle;
half_circle | full_circle
------------------+------------------
3.14159265358979 | 6.28318530717959
(1 row)
postgres=#