SQL Server/T-SQL/Math Functions/ACOS

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

ACOS: Returns as a float data type, the angle in radians to the entered cosine

   <source lang="sql">

1> -- ACOS: Returns as a float data type, the angle in radians to the entered cosine, 2> -- which must have values between -1 and 1. 3> 4> -- This function is the inverse of COS. 5> 6> SELECT ACOS(0.33) 7> GO


     1.2344927516409163

(1 rows affected) 1>

      </source>