'MariaDB Check String Length Performance

Can anybody explain the impact on the performance of the query when we are using the Length() function to check the length of string (Varchar) data?

SELECT LENGTH(FIRST_NAME), FIRST_NAME FROM MIT_STUDENTS;

This is my query above for the length() function. Can anyone explain the performance of length() function in the above query?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source