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, 1147🔥, 0💬
Popular Posts:
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...