Categories: Math
SIN
Computes the sine of a value.
Syntax
SIN(numeric_expression int32) → double
- numeric_expression: The number in radians.
Examples
SIN exampleSELECT SIN(360)
-- 0.9589157234143065
SIN(numeric_expression float) → double
- numeric_expression: The number in radians.
Examples
SIN exampleSELECT SIN(510.89)
-- 0.9282211721815067
SIN(numeric_expression int64) → double
- numeric_expression: The number in radians.
Examples
SIN exampleSELECT SIN(360)
-- 0.9589157234143065
SIN(numeric_expression double) → double
- numeric_expression: The number in radians.
Examples
SIN exampleSELECT SIN(510.89)
-- 0.9282211721815067