Collections:
LN() - Natural Logarithm
How to calculate the natural logarithm of a given number using the LN() function?
✍: FYIcenter.com
LN(X, Y) is a MySQL built-in function that
calculates the natural logarithm of a given number.
For example:
SELECT LN(2.71828), LN(1), LN(0.367879); -- +-------------------+-------+---------------------+ -- | LN(2.71828) | LN(1) | LN(0.367879) | -- +-------------------+-------+---------------------+ -- | 0.999999327347282 | 0 | -1.0000011992290339 | -- +-------------------+-------+---------------------+
Reference information of the LN() function:
LN(X): val Returns the natural logarithm of X; that is, the base-e logarithm of X. If X is less than or equal to 0.0E0, the function returns NULL. This function is synonymous with LOG(X). The inverse of this function is the EXP() function. Arguments, return value and availability: X: Required. The input value. val: Return value. The natural logarithm of X. Available since MySQL 4.0.
Related MySQL functions:
⇒ LOG() - Logarithm of Y to Base X
⇐ INTERVAL() - Interval Position of Sorted List
2023-11-15, 1068🔥, 0💬
Popular Posts:
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL? Sometimes you need ...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...