Skip to main content

SIN

Returns the sine of x, where x is given in radians.

Syntax

SIN(x)

Arguments

ArgumentsDescription
xThe angle, in radians.

Return Type

A Float64 data type value.

Examples

mysql> SELECT SIN(PI());
+------------------------------------+
| SIN(PI()) |
+------------------------------------+
| 0.00000000000000012246467991473532 |
+------------------------------------+
1 row in set (0.01 sec)