标签:post new article track 查询 建表 错误 默认值 msyql
mysql 默认值不要为null,最好为空
否则,当你查询的时候,会引起一些异常
比如
select * from a where b!=‘new‘
假设有一条数据b=null,你是查询不出来的
解决的方法能够改为
select * from a where ifnull(b,‘‘)!=‘new‘
最好就是建表的时候,默认设置为空,不要null
标签:post new article track 查询 建表 错误 默认值 msyql
原文地址:http://www.cnblogs.com/cxchanpin/p/6917977.html