Oracle Built In Functions:SIN function
In Oracle PL/SQL SIN function returns mathematical sine value of the input provided n.The input provided must be of an angle and should be expressed in radians
Syntax
SIN(angle)
Example
SELECT SIN(30 * 3.14159265359/180)
“Sine value of 30” From Dual
Sine of 30 degrees
——————
.5