SIN Function

The SIN function returns the sine of an angle that you specify as its radian expression argument.

The following query returns the sines of the values in each row of the radians column of the anglestbl table:
SELECT SIN(radians) FROM anglestbl;