A blog about everything and nothing
If you are working in a MySQL database and you want to make all rows in column to lower case for a specific table then you can do it like this: UPDATE tablename SET columnname = LOWER(columnname); And you're done!
UPDATE tablename SET columnname = LOWER(columnname);