Collections:
LOG() - Logarithm of Y to Base X
How to calculate the logarithm of a number to a given base number using the LOG() function?
✍: FYIcenter.com
LOG(X, Y) is a MySQL built-in function that
calculates the logarithm of Y to base X.
For example:
SELECT LOG(2, 1024), LOG(2, 1.4142), LOG(2.718, 0.3679); -- +--------------+--------------------+---------------------+ -- | LOG(2, 1024) | LOG(2, 1.4142) | LOG(2.718, 0.3679) | -- +--------------+--------------------+---------------------+ -- | 10 | 0.4999861644218742 | -1.0000478060991969 | -- +--------------+--------------------+---------------------+
Reference information of the LOG() function:
LOG(Y, X): val
Returns the logarithm of X to the base Y. If X is less than or equal to
0, or if Y is less than or equal to 1, then NULL is returned.
If called with one parameter Y, this function returns the natural
logarithm of Y.
Arguments, return value and availability:
Y: Required. The base value, if X is provided.
It becomes a synonym for LN(Y), if X is not provided.
X: Optional. The input value, if provided.
val: Return value. The logarithm of the input value.
Available since MySQL 4.0.
Related MySQL functions:
⇒ LOG10() - Logarithm to Base 10
2023-11-15, 1078🔥, 0💬
Popular Posts:
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...