Logo 
Search:

SQL Server Articles

Submit Article
Home » Articles » SQL Server » Math FunctionsRSS Feeds

ASIN Function

Posted By: Sarita Patel     Category: SQL Server     Views: 1783

This article explains ASIN function of sql server with examples.

ASIN is used to get angle in radians for specified sine value. It also known as arcsine.


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 .
  
Share: 

 
 
 

Didn't find what you were looking for? Find more on ASIN Function Or get search suggestion and latest updates.

Sarita Patel
Sarita Patel author of ASIN Function is from United States.
 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!