
- SQL Tutorial
- SQL - Home
- SQL - Overview
- SQL - RDBMS Concepts
- SQL - Databases
- SQL - Syntax
- SQL - Data Types
- SQL - Operators
- SQL - Expressions
- SQL Database
- SQL - Create Database
- SQL - Drop Database
- SQL - Select Database
- SQL - Rename Database
- SQL - Show Databases
- SQL - Backup Database
- SQL Table
- SQL - Create Table
- SQL - Show Tables
- SQL - Rename Table
- SQL - Truncate Table
- SQL - Clone Tables
- SQL - Temporary Tables
- SQL - Alter Tables
- SQL - Drop Table
- SQL - Delete Table
- SQL - Constraints
- SQL Queries
- SQL - Insert Query
- SQL - Select Query
- SQL - Select Into
- SQL - Insert Into Select
- SQL - Update Query
- SQL - Delete Query
- SQL - Sorting Results
- SQL Views
- SQL - Create Views
- SQL - Update Views
- SQL - Drop Views
- SQL - Rename Views
- SQL Operators and Clauses
- SQL - Where Clause
- SQL - Top Clause
- SQL - Distinct Clause
- SQL - Order By Clause
- SQL - Group By Clause
- SQL - Having Clause
- SQL - AND & OR
- SQL - BOOLEAN (BIT) Operator
- SQL - LIKE Operator
- SQL - IN Operator
- SQL - ANY, ALL Operators
- SQL - EXISTS Operator
- SQL - CASE
- SQL - NOT Operator
- SQL - NOT EQUAL
- SQL - IS NULL
- SQL - IS NOT NULL
- SQL - NOT NULL
- SQL - BETWEEN Operator
- SQL - UNION Operator
- SQL - UNION vs UNION ALL
- SQL - INTERSECT Operator
- SQL - EXCEPT Operator
- SQL - Aliases
- SQL Joins
- SQL - Using Joins
- SQL - Inner Join
- SQL - Left Join
- SQL - Right Join
- SQL - Cross Join
- SQL - Full Join
- SQL - Self Join
- SQL - Delete Join
- SQL - Update Join
- SQL - Left Join vs Right Join
- SQL - Union vs Join
- SQL Keys
- SQL - Unique Key
- SQL - Primary Key
- SQL - Foreign Key
- SQL - Composite Key
- SQL - Alternate Key
- SQL Indexes
- SQL - Indexes
- SQL - Create Index
- SQL - Drop Index
- SQL - Show Indexes
- SQL - Unique Index
- SQL - Clustered Index
- SQL - Non-Clustered Index
- Advanced SQL
- SQL - Wildcards
- SQL - Comments
- SQL - Injection
- SQL - Hosting
- SQL - Min & Max
- SQL - Null Functions
- SQL - Check Constraint
- SQL - Default Constraint
- SQL - Stored Procedures
- SQL - NULL Values
- SQL - Transactions
- SQL - Sub Queries
- SQL - Handling Duplicates
- SQL - Using Sequences
- SQL - Auto Increment
- SQL - Date & Time
- SQL - Cursors
- SQL - Common Table Expression
- SQL - Group By vs Order By
- SQL - IN vs EXISTS
- SQL - Database Tuning
- SQL Function Reference
- SQL - Date Functions
- SQL - String Functions
- SQL - Aggregate Functions
- SQL - Numeric Functions
- SQL - Text & Image Functions
- SQL - Statistical Functions
- SQL - Logical Functions
- SQL - Cursor Functions
- SQL - JSON Functions
- SQL - Conversion Functions
- SQL - Datatype Functions
- SQL Useful Resources
- SQL - Questions and Answers
- SQL - Quick Guide
- SQL - Useful Functions
- SQL - Useful Resources
- SQL - Discussion
SQL - ACOS() Function
The SQL ACOS() function calculates the arc cosine of a numeric value. This function accepts a single numeric value as an argument. The domain of the argument must be [-1,1] and the range of the result will be [0,π]. If the value passed to this function doesn't lie in the given domain, it raises an error.
Arc cosine function is the inverse of the cosine function in trigonometry. To explain in simple words, in a right-angled triangle, cosine function is defined as the ratio of an adjacent side of a non-right angle to the hypotenuse; but the arc cosine function is defined as its inverse, where the domain of cosine function becomes the range of arc cosine function and vice-versa.
Syntax
Following is the syntax of SQL ACOS() function −
ACOS(number)
where, number is the value for which we need to calculate the arc cosine.
Example
If we pass a positive value as an argument, then this function returns it's equivalent arc cosine value which is positive as shown below −
SELECT ACOS(0.8) AS Arccosine_Value
When we run above program, it produces following result −
+-------------------+ | Arccosine_Value | +-------------------+ | 0.643501108793284 | +-------------------+
Example
If we pass a negative value as an argument to this function, then this function returns it's equivalent arc cosine value which is positive as shown below −
SELECT ACOS(-0.5) AS Arccosine_Value
While executing the above code we get the following output −
+-------------------+ | Arccosine_Value | +-------------------+ | 2.0943951023932 | +-------------------+
Example
If the value passed to this function is not in the range of -1 to 1, then this function raises an error:
SELECT ACOS(6) AS Arccosine_Value
Following is an output of the above code −
Msg 3623, Level 16, State 1, Line 1 An invalid floating point operation occurred.
Example
The arc cosine value of 1 is 0.
SELECT ACOS(1) AS Arccosine_Value
Output of the above code is as follows −
+-------------------+ | Arccosine_Value | +-------------------+ | 0 | +-------------------+
Example
When we calculate the arc cosine value of a number and pass the result to the cos() function, the final result is equivalent to the original number.
SELECT ACOS(1) AS Arccosine_Value
The result produced is as shown below −
+-------------------+ | Arccosine_Value | +-------------------+ | 0 | +-------------------+
Now, we are trying to pass the value retrieved by the arc cosine to the cos() function −
SELECT COS(0) AS cos_Value
The result obtained is as follows −
+-----------+ | cos_Value | +-----------+ | 1 | +-----------+