답변:
참조 http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_lower를
UPDATE table_name SET tag = LOWER(tag)
UPDATE table_name SET tag = BINARY LOWER(tag)
대소 문자를 구분하지 않는 일치를 위해.
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
update table set tag = LOWER(tag)
전체 열을 업데이트하지 않으려는 경우 대소 문자를 구분하지 않고 "WHERE"절을 포함하는 버전 :
UPDATE table
SET tag = LOWER(tag)
WHERE LOWER(tag) != tag
COLLATE Latin1_General_CS_AS
COLLATE 라인은 데이터베이스가 대소 문자를 구분하지 않는 일치를 사용하는 경우 작동합니다.