SQL Server/T-SQL Tutorial/Math Functions/ACOS

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

ACOS Returns as a float data type, the angle in radians that corresponds to the entered cosine, which must have values between -1 and 1.

   <source lang="sql">

This function is the inverse of COS. 6> 7> SELECT ACOS(0.33) 8> GO


     1.2344927516409163

(1 rows affected)</source>