MySQL SIN() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MySQL SIN() Function

❮ MySQL Functions

Example

Return the sine of a number:

SELECT SIN(2);
Try it Yourself »

Definition and Usage

The SIN() function returns the sine of a number.

Syntax

SIN(number)

Parameter Values

Parameter Description
number Required. A numeric value

Technical Details

Works in: MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23

More Examples

Example

Return the sine of a number:

SELECT SIN(-1);
Try it Yourself »

❮ MySQL Functions