I have a MySQL database of keywords that are presently mixed-case. However, I want to convert them all to lowercase. Is there an easy command to do this, either using MySQL or MySQL and PHP?
|
|
|
||
|
|
|
|
You can use the functions LOWER() or LCASE(). These can be used both on columns or string literals. e.g.
or
LCASE() can be substituted for LOWER() in both examples. |
||
|
|
|
|
I believe in php you can use
so you could make a php to read all the entries in the table then use that command to print them back as lower case |
||
|
|
|
|
Yes, the function is LOWER() or LCASE() (they both do the same thing). For example:
|
||
|
|
|
|
Did you try looking it up? Google, manual... http://dev.mysql.com/doc/refman/5.1/en/string-functions.html#function_lower
|
||
|
|
|
|
|
||
|
|
