Collections:
ASIN() - Arcsine Trigonometric Value
How to calculate the arcsine value of a given value using the ASIN() function?
✍: FYIcenter.com
ASIN(X) is a MySQL built-in function that
calculates the arcsine value of a given value.
For example:
SELECT ASIN(0), ASIN(1), ASIN(2); -- +---------+--------------------+---------+ -- | ASIN(0) | ASIN(1) | ASIN(2) | -- +---------+--------------------+---------+ -- | 0 | 1.5707963267948966 | NULL | -- +---------+--------------------+---------+
Reference information of the ASIN() function:
ASIN(X): val Returns the arc sine of X, that is, the value whose sine is X. Returns NULL if X is not in the range -1 to 1. Arguments, return value and availability: X: Required. The input value. val: Return value. The arcsine value of the input value. Available since MySQL 4.0.
Related MySQL functions:
⇒ ATAN() - Arctangent Trigonometric Value
⇐ ACOS() - Arccosine Trigonometric Value
2023-11-15, 1307🔥, 0💬
Popular Posts:
How to connect SQL Server Management Studio Express to SQL Server 2005 Express in SQL Server? Once y...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...