PostgreSQL/Math Functions/sin — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 13:45, 26 мая 2010

sin(x): Returns the sine of x

postgres=#
postgres=# -- sin(x): Returns the sine of x
postgres=# SELECT sin(pi() / 4) AS quarter_pi,
postgres-#        sin(pi() / 2) AS half_pi;
    quarter_pi     | half_pi
-------------------+---------
 0.707106781186547 |       1
(1 row)
postgres=#