Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

TAN() returns the tangent of the numeric expression argument passed to it

Syntax: TAN(<numeric expression>) SQL> SQL> SQL> SELECT TAN(36) AS RESULT from dual;     RESULT ---------- 7.75047091 SQL>