MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL LN() function

In this context, we will learn how we can use the MySQL LN() function with proper syntax and good examples.

Introduction of MySQL LN() function

For evaluation of the natural logarithm of a mentioned number with base e, the LN() function in MySQL is used. It will return NULL when the number is greater than 0.

Syntax of the MySQL LN() function

The syntax of the MySQL LN() function is given as follows:

LN(Y);

Parameters or arguments used in MySQL LN() function:

Only one parameter is accepted by LN() function, as mentioned above in the syntax and described below as follows.

Y: This is the number whose logarithm value with base e we want to calculate. It should be a positive number.

Returns: It will return the natural logarithm of the given number Y with base e.

The application used for LN() function:

The LN() function can be used in the given below MySQL versions:

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Examples of MySQL LN() function:

Now, we will look into some examples of MySQL LN functions.

Example 1:

Here, we will find the logarithm of the given numbers with base e using the LN() function in MySQL.

SELECT LN(1000) AS Ln_Val ;

Output:

LN_VAL
6.907755278982137
1 row in set (0.00 sec)

Example 2:

Here, we will find the logarithm of 0 with base e using the LN() function in MySQL.

SELECT LN(0) AS Ln_Val ;

Output:

LN_VAL
NULL
1 row in set (0.00 sec)

Example 3:

The LN function can also be used to find the logarithmic value with base e of column data. To demonstrate, create a table named Commodity.

CREATE TABLE Commodity(
Commodity_id INT AUTO_INCREMENT,  
Commodity_name VARCHAR(100) NOT NULL,
Purchasing_price DECIMAL(13, 2) NOT NULL,
Selling_price DECIMAL(13, 2) NOT NULL,
Service_grade Decimal(6, 2) NOT NULL,
PRIMARY KEY(Commodity_id)
);

Inserting into the Commodity table:

Now we will add some data to the Commodity table –

INSERT INTO  
Commodity(Commodity_name, Purchasing_price, Selling_price, Service_grade)
VALUES
('Touring Bike,' 20000.00, 30050.00, 4.17 ),
('Mountain Bike,' 30005.50, 40000.56, 10.00 ),
('Road Bike,' 10000.20, 21000.56, -3.59 ),
('Road Bicycle,' 15200.50, 18000.00, -0.50 ),
('Racing Bicycle,' 30500.50, 45000.00, 3.00) ;

Reading data from the table :

Now we will Show all data in Commodity Table –

Select * from Commodity;

Output:

COMMODITY_IDCOMMODITY_NAMEPURCHASING_PRICESELLING_PRICESERVICE_GRADE
1Touring Bike20000.0030050.004.17
2Mountain Bike30005.5040000.5610.00
3Road Bike10000.2021000.56-3.59
4Road Bicycle15200.5018000.00-0.50
5Racing Bicycle30500.5045000.00 3.00

Now, we are going to find the logarithmic values with base e for all the records present in the Service_grade column.

Select Commodity_id, Commodity_name, Purchasing_price,  
Selling_price, Service_grade,
LN(Service_grade) AS GRADELOGN  
FROM Commodity;

Output:

COMMODITY_IDCOMMODITY_NAMEPURCHASING_PRICESELLING_PRICESERVICE_GRADEGRADELOGN
1Touring Bike20000.0030050.004.171.4279160358107101
2Mountain Bike30005.5040000.5610.002.302585092994046
3Road Bike10000.2021000.56-3.59NULL
4Road Bicycle15200.5018000.00-0.50NULL
5Racing Bicycle30500.5045000.00  

Summary:

In this context, we have learned how we can use the MySQL LN() function to find the LN values from given arguments respectively.