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, 1048🔥, 0💬
Popular Posts:
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...