The SIN() function returns the sine of a number. To be more specific, it returns the sine of a number in the radians float value. The illustration below shows the mathematical representation of the SIN() function.
SIN(number)
This function requires number as a parameter.
SIN() returns the sine of a number (radians float value) that is sent as a parameter.
/*example showing how to use SIN(X)*/-- positive numberselect SIN(10);-- negative numberselect SIN(-6);-- fractional numberselect SIN(4.6);