Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

ASIN

Example

Provide the arcsine of a number.

SELECT ASIN(0.25); 

Definition and Usage

The ASIN() function computes the arcsine of a number.

The provided number must fall within the range of -1 to 1; otherwise, the function returns NULL.

Syntax

ASIN(number)

Parameter Values

Parameter

Description

number

Mandatory. A numerical value is required.

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Provide the arcsine of a number.

SELECT ASIN(0.8);