Skip to main content

SIN (SQL)

A scalar numeric function that returns the sine, in radians, of an angle.

Synopsis

{fn SIN(numeric-expression)}

Description

SIN takes any numeric value and returns its sine as a floating point number. SIN returns NULL if passed a NULL value. SIN treats nonnumeric strings as the numeric value 0.

SIN returns a value with a precision of 19 and a scale of 18.

SIN can only be used as an ODBC scalar function (with the curly brace syntax).

You can use the DEGREES function to convert radians to degrees. You can use the RADIANS function to convert degrees to radians.

Arguments

numeric-expression

A numeric expression. This is an angle expressed in radians.

SIN returns either the NUMERIC or DOUBLE data type. If numeric-expression is data type DOUBLE, SIN returns DOUBLE; otherwise, it returns NUMERIC.

Example

The following example shows the effect of SIN:

SELECT {fn SIN(0.52)} AS Sine

returns 0.496880.

See Also

FeedbackOpens in a new tab