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
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.