目录

MySQL SIN() Function

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: From MySQL 4.0

More Examples

Example

Return the sine of a number:

SELECT SIN(-1);
Try it Yourself »