20
Jun
Learn how to use sql to convert string to lowercase
There are two functions on sql to change string to lowercase. Those are LOWER() and LCASE() and both do the same thing at the end.
Example
SELECT LOWER(keyword) FROM your_table;
By admin|Computer, Internet, MySQL
There are two functions on sql to change string to lowercase. Those are LOWER() and LCASE() and both do the same thing at the end.
Example
SELECT LOWER(keyword) FROM your_table;