जवाबों:
तुम यह केर सकते हो:
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);
करेगा।