TAN
Returns the tangent of x
, where x
is given in radians.
Analyze Syntax
func.tan( <x> )
Analyze Examples
func.tan(90)
┌────────────────────┐
│ func.tan(90) │
├────────────────────┤
│ -1.995200412208242 │
└────────────────────┘
SQL Syntax
TAN( <x> )
SQL Examples
SELECT TAN(90);
┌────────────────────┐
│ tan(90) │
├────────────────────┤
│ -1.995200412208242 │
└────────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)