Cloud

sind

The sind() function returns the sine of a specified angle, expressed in degrees. See also sin() for an angle expressed in radians.

Syntax

SIND(x)

Arguments

  • x: An angle, in degrees, of type real or double precision.

Return type

Same as the input type (real or double precision).

Examples

Basic usage

SELECT SIND(30);
        sind
---------------------
 0.49999999999999994
(1 row)

Zero angle

SELECT SIND(0);
 sind
------
    0
(1 row)