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, 854🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Transaction Management: Commit or Rollback in...
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
How To List All User Names in a Database in SQL Server? If you want to see a list of all user names ...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...