回答:
あなたはこれを行うことができます:
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);
にできます。