Câu trả lời:
Bạn có thể làm được việc này:
UPDATE table_name SET column=lower(column)
Tham khảo www.postgresql.org/docs/9.1/static/fifts-opes.html
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
trong khi thử điều này.
UPDATE table_name SET column = LOWER(column) WHERE column != LOWER(column);
sẽ làm.