How To Use ASIN Function In OraclePLSQL
Description
ASIN function returns the arc sine of n, where n represents the number. This is the numeric Math function in Oracle/PLSQL. N must be in range -1 to 1 and this function returns a value in the range of –pi/2 to pi/2.
Syntax
The syntax of ASIN function in Oracle/PLSQL is given below-
- ASIN (Number)
Example
- Select ASIN (.1)
- from Dual;
Let’s take another example of ASIN functions, which are given below-
Example
- Select ASIN (0)
- from Dual;
Example
- Select ASIN (1)
- from Dual;
Example
- Select ASIN (3)
- from Dual;
Summary