উত্তর:
তুমি এটি করতে পারো:
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);
করবে।