MySQLNumeric FunctionsSIN
RADIANS

SINNumeric Functions

COS

Returns the sine value.

Syntax

SIN(x)

Example

Enter values below to update the example in real time.

angle_deg
sin_val
angles
SELECT angle_deg, ROUND(SIN(RADIANS(angle_deg)), 4) AS sin_val
FROM angles;