bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL ASIN() Function

Concept visual

MySQL ASIN() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Return the arc sine of a number:

SELECT ASIN(0.25);

Definition and Usage

The ASIN() function returns the arc sine of a number.

Formula

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);

Previous

❮ MySQL Functions

Next

Previous

MySQL ACOS() Function

Next

MySQL ATAN() Function