©SQL :: Manager
HomeProgram InformationTechnical detailsFree downloadDonate for a cup of coffee
myway SQL Manager for MySQL and MariaDB, Download on Uptodown
SQL functionMySQLMariaDB

The ASIN SQL Function in MySQL and MariaDB - Arc-sine calculation

ASINSyntax:ASIN(Number)
Return value:FLOAT
Function type:Numeric function
Function Description

The ASIN() function returns the arc-sine (inverse sine) of "Number". "Number" is the sine of a radians.

The DEGREES() function can be used to calculate the angle from a radians.

Returns NULL if "Number" is not in a valid sine range -1 to 1.

SQL Examples for the ASIN function

 1
 2
 3
 4
 5
 6
 7
 8
 9

select asin(0.7071067811865476);
select degrees(asin(0.7071067811865476));
select asin(-0.7071067811865476);
select degrees(asin(-0.7071067811865476));
select asin(1);
select degrees(asin(1));
select asin(2);

asin(0.7071067811865476)
double(23)
0.7853981633974484
degrees(asin(0.7071067811865476))
double(23)
45.00000000000001
asin(-0.7071067811865476)
double(23)
-0.7853981633974484
degrees(asin(-0.7071067811865476))
double(23)
-45.00000000000001
asin(1)
double(23)
1.5707963267948966
degrees(asin(1))
double(23)
90
asin(2)
double(23)
NULL
The examples were created with the MyWAY SQL manager: Download

How to use the ASIN() function in MySQL and MariaDB databases

The ASIN() function in MySQL and MariaDB is commonly used in trigonometric calculations and applications involving angles. An angle associated with a particular sine value may need to be determined.
AES_ENCRYPTANY_VALUEASCIIASINATANATAN2AVG

Further MySQL und MariaDB SQL Numeric functions

BIT_COUNTBIT_COUNT(Integer)
More about BIT_COUNT Function

CEILCEIL(Number)
More about CEIL Function

CEILINGCEILING(Number)
More about CEILING Function

CRC32CRC32(String)
More about CRC32 Function

CRC32CCRC32C([Parameter], String)

FLOORFLOOR(Number)
More about FLOOR Function

SIGNSIGN(Number)
More about SIGN Function

ABSABS(Number)
More about ABS Function

ACOSACOS(Number)
More about ACOS Function

ATANATAN(Number [, Number2])
More about ATAN Function

ATAN2ATAN2(Number [, Number2])
More about ATAN2 Function

COSCOS(Number)
More about COS Function

COTCOT(Number)
More about COT Function

DEGREESDEGREES(Number)
More about DEGREES Function

EXPEXP(Number)
More about EXP Function

LNLN(Number)
More about LN Function

LOGLOG([Base], Number)
More about LOG Function

LOG10LOG10(Number)
More about LOG10 Function

LOG2LOG2(Number)
More about LOG2 Function

MODMOD(Number, Divider)
More about MOD Function

POWPOW(Number, Exponent)
More about POW Function

POWERPOWER(Number, Exponent)
More about POWER Function

PIPI()
More about PI Function

RADIANSRADIANS(Number)
More about RADIANS Function

RANDRAND([Number])
More about RAND Function

ROUNDROUND(Number [, Decimals])
More about ROUND Function

SINSIN(Number)
More about SIN Function

SQRTSQRT(Number)
More about SQRT Function

TANTAN(Number)
More about TAN Function

TRUNCATETRUNCATE(Number, Decimals)
More about TRUNCATE Function

Numeric functionsString functionsRegular ExpressionsDate and Time functions
Comparison functionsEncryption & CompressionConversion functionsNULL functions
Aggregate functionsWindow functionsJSON functionsGeometric functions
Sequence functionsInformation functionsDynamic ColumnsMiscellaneous functions
More information about the ASIN SQL function: mysql.com and mariadb.com and w3schools.com
Updated: 2023-09-24ImprintContactTerms & conditionsPrivacy & CookiesUpdatesSitemapFacebookLinkedinTwitterStatistics©2020-2024 Heino Cunze-Fischer