I have a PHP/MySQL application that stores "blank" values in some cases as ''
(empty strings) and in other cases as NULL
s.
Having this mixed format certainly causes a problem when comparing, so I’m wondering which one is the better storage mechanism? ''
or NULL
?