Estou usando o PostgreSQL 9.1 e tenho uma tabela de usuários com uma login
coluna.
os nomes de login diferenciam maiúsculas de minúsculas, por exemplo, Bob, MikE, john. Gostaria de transformar todos esses registros em minúsculas. Como eu posso fazer isso?
postgresql
functions
flyer88
fonte
fonte
UPDATE table_name SET column = LOWER(column) WHERE column != LOWER(column);
basta fazer isso.HINT: No function matches the given name and argument types. You might need to add explicit type casts.
ao tentar isso.