नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
A mathematical function that returns the angle, in radians, whose cosine is the specified float expression; also called arccosine.
Transact-SQL Syntax Conventions
Syntax
ACOS ( float_expression )
Arguments
- float_expression
Is an expression of the type float or of a type that can be implicitly converted to float, with a value from -1 through 1. Values outside this range return NULL and report a domain error.
Return Types
float
Examples
The following example returns the ACOS of the specified angle.
SET NOCOUNT OFF;
DECLARE @angle float;
SET @angle = -1.0;
SELECT 'The ACOS of the angle is: ' + CONVERT(varchar, ACOS(@angle));
Here is the result set.
---------------------------------
The ACOS of the angle is: 3.14159
(1 row(s) affected)
See Also
Reference
Mathematical Functions (Transact-SQL)
Functions (Transact-SQL)