SIN
From SQLZOO
| SIN(s1 IN s2) | ||
|---|---|---|
| Engine | OK | Alternative |
| ingres | Yes | |
| mysql | Yes | |
| oracle | Yes | |
| postgres | Yes | |
| sqlserver | Yes | |
SIN
SIN(f) returns the sine of f where f is in radians.
SIN(3.14159/6) -> 0.5
In this example you return the sine of each of the angles.
SELECT id, SIN(th) FROM angle
See also