tan(x): Returns the tangent of x : tan « Math Functions « PostgreSQL






tan(x): Returns the tangent of x


postgres=#
postgres=# -- tan(x): Returns the tangent of x
postgres=# SELECT tan(pi() / 8), tan(0);
        tan        | tan
-------------------+-----
 0.414213562373095 |   0
(1 row)

postgres=#
           
       








Related examples in the same category