MySQL LCASE Function

MySQL LCASE is a synonym of the LOWER function, and it is useful to convert the given string into lowercase. In this article, we show you how to use this string LCASE with an example, and the basic syntax of it is as shown below: SELECT LCASE(Expression) FROM [Source] MySQL LCASE Example The LCASE Function query converts … Read more

MySQL LOWER Function

The MySQL LOWER function is one of the String methods, which is useful to convert the specified character expression to lowercase and the syntax of it is as shown below: SELECT LOWER (Expression) FROM [Source] To demonstrate this MySQL string lower or lowercase function, we are going to use the customer details table data that … Read more