Quick Search:
 
 The Oracle PL/SQL SIN Function      [Return To Index] Jump to:  

Term: SIN

Definition:
In Oracle PL/SQL, SIN is a built in function used to determine sine of a numeric input. Its mathematical equivalent is SIN(N), where N is the angle in radian format.

Example Syntax:

SIN(radian)


Example Usage:

The SQL example below calculates the sine of 45 degrees. Note that the representation of 45 degrees is in radians.

SQL> SELECT SIN(45 * 3.1412857/180) FROM DUAL;

SIN(45*3.1412857/180)
---------------------
.707052517



Related Links:

Related Code Snippets:
 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org