You will need to update the data from the query or through code, because the presentation of the data table truncates trailing spaces
UPDATE Table1 SET Table1.Foo = " "
WHERE (((Table1.ID)=1));
then it will return the results later.
SELECT Table1.ID, Table1.Foo
FROM Table1
WHERE (((Table1.Foo)=" "));
source
share