SIN()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
Returns the sine of an angle, specified in radians.
USAGE
SIN(radians)
Argument Name | Description |
|---|---|
| The numeric argument expressed in radians |
DETAILS
SIN() is a trigonometric function that returns the sine of an angle specified in radians.
A NULL is returned if the argument is NULL.
EXAMPLES
SELECT SIN(10);
+-------------------+
| SIN(10) |
+-------------------+
| -0.54402111088937 |
+-------------------+
