Syntax of ASIN Function :
ASIN (float_expression)
float_expression is a float or real number between -1 to 1. If you specify value outside this value then it returns an error.
Return type of ASIN is float data type.
Examples of ASIN Function :
Example 1 : Use of ASIN function in select clause
SELECT ASIN(0.30)
Output
0.304692654015398
Above example returns angle in radians for specified sine value 0.30 .