I have a column eventDate which contains trailing spaces. I am trying to remove them with the PostgreSQL function TRIM(). More specifically, I am r
eventDate
TRIM()
SELECT replace((' devo system ') ,' ','');
It gives: devosystem
devosystem