Yanıtlar:
Bunu yapabilirsiniz:
UPDATE table_name SET column=lower(column)
Www.postgresql.org/docs/9.1/static/functions-string.html adresine bakın.
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
yaparken bu hatayı alıyorum .
UPDATE table_name SET column = LOWER(column) WHERE column != LOWER(column);
yapacaktır.