开发者

Storing empty strings vs NULLs in MySQL database?

I have a PHP/MySQL application that stores "开发者_开发技巧blank" values in some cases as '' (empty strings) and in other cases as NULLs.

Having this mixed format certainly causes a problem when comparing, so I’m wondering which one is the better storage mechanism? '' or NULL?


While this is confusing, actually you should store null for a number of reasons :

  1. Checking against null is usually faster than checking an empty string in most databases
  2. Null commonly means "i don't know", empty string means "I know : it's empty". It gives you better semantics.
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜