Collections:
SIN() - Sine Trigonometric Value
How to calculate the sine trigonometric value of a given angle using the SIN() function?
✍: FYIcenter.com
SIN(X) is a MySQL built-in function that
calculates the sine trigonometric value of a given angle in radians.
For example:
SELECT SIN(0), SIN(1.57), SIN(3.14); -- +--------+-----------------------+---------------------+ -- | SIN(0) | SIN(1.57) | SIN(3.14) | -- +--------+-----------------------+---------------------+ -- | 1 | 0.0007963267107332633 | -0.9999987317275395 | -- +--------+-----------------------+---------------------+
Reference information of the SIN() function:
SIN(X): val Returns the sine of X, where X is given in radians. Arguments, return value and availability: X: Required. The input angle in radians. val: Return value. The sine of X. Available since MySQL 4.0.
Related MySQL functions:
2023-11-15, 864🔥, 0💬
Popular Posts:
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
How To Get the Definition of a User Defined Function Back in SQL Server Transact-SQL? If you want ge...
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...