Usando Google o el Manual de referencia (
https://www.sqlite.org/lang_corefunc.html).
En el segundo puedes ver esto:
Cita: trim(X) / trim(X,Y)
The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. If the Y argument is omitted, trim(X) removes spaces from both ends of X.
Con lo cual hacer un UPDATE para que elimine esos espacios en blanco no te debería resultar complicado. ¿no?