Recently end users have started to notice explicit simple quotes couples (''
) on empty fields.
I have no idea what would have caused that, and was not yet in my company at the time it began to appear.
By looking in the database, I saw a lot of text
values filled ''
...
...as well as others just kept empty, in the same columns:
I tried to access by query to these values (by trying several syntax)...
...but found no result(with each one of them):
These fields are not null but I cannot seem to access them, and it is quite a big deal if I want to up date them to an empty value (an actual '').
My main goal is to get rid of all the ''
appearances to end up having only wether fields filled by users or empty ones. My side goal is to understand better how this happened and how to prevent it in the first place.
In fact they are empty strings and you can find them with this query:
select *
from segments
where se_comments = '';
The second image in the question shows three empty strings, three nulls and two empty strings.