답변:
당신은 이것을 할 수 있습니다 :
UPDATE table_name SET column=lower(column)
www.postgresql.org/docs/9.1/static/functions-string.html을 참조하십시오
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
시도하는 동안 이 오류가 발생 합니다.
UPDATE table_name SET column = LOWER(column) WHERE column != LOWER(column);
것입니다.