PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come rimuovo tutti gli spazi da un campo in un database Postgres in una query di aggiornamento?

update users
  set fullname = replace(fullname, ' ', '');