SIN (TSQL Function)

Returns the sine of a number.

Syntax

SIN ( float_expression )

Arguments

float_expression
is an expression of type float.

Return Types

Returns float.

Examples

PRINT SIN(14.78);

The result is:

0.8004006514223121
RSQL, a simple alternative to Microsoft SQL Server