Collections:
PI() - Value of PI, π
How to get the value of PI, π, using the PI() function?
✍: FYIcenter.com
PI() is a MySQL built-in function that
returns the value of PI, π,
For example:
SELECT PI(); -- +----------+ -- | PI() | -- +----------+ -- | 3.141593 | -- +----------+
Reference information of the PI() function:
PI(): val Returns the remainder of X divided by Y. Arguments, return value and availability: val: Return value. The value of PI, π. Available since MySQL 4.0.
⇒ POW() - X Raised to Power of Y
⇐ MOD() - Remainder of X divided by Y
2023-11-14, 1016🔥, 0💬
Popular Posts:
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...