SQL command to convert all tags in lowercase?

Try this SQL query:

UPDATE wp_terms SET name=LOWER(name);