SQL Server/T-SQL/Math Functions/ASIN

Материал из SQL эксперт
Версия от 13:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

ASIN: Returns as a float data type, the angle in radians to the entered sine

   <source lang="sql">

1> -- ASIN: Returns as a float data type, the angle in radians to the entered sine. 2> -- This function is the inverse of SIN. 3> 4> SELECT ASIN(0.35) 5> GO


    0.35757110364551026

(1 rows affected) 1>

      </source>