MySQL ASIN() Function
Clash Royale CLAN TAG#URR8PPP
googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
MySQL ASIN() Function
❮ MySQL Functions
Example
Return the arc sine of a number:
SELECT ASIN(0.25);
Try it Yourself »
Definition and Usage
The ASIN() function returns the arc sine of a number.
The specified number must be between -1 to 1, otherwise
this function returns NULL.
Syntax
ASIN(number)
Parameter Values
Parameter | Description |
---|---|
number | Required. A numeric value |
Technical Details
Works in: | From MySQL 4.0 |
---|
More Examples
Example
Return the arc sine of a number:
SELECT ASIN(-0.8);
Try it Yourself »
❮ MySQL Functions