码迷,mamicode.com
首页 > 数据库 > 详细

mysql中容易忽略的问题

时间:2015-12-23 10:37:13      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

1. null是不可比较的(跟java中的NaN类似),因此其比较操作总是false比如:

update table set channel = #channel# where order_id = 12345  and channel <> ‘AA‘  (如果channel为null,则channel<>‘AA‘也总是不成立的)

 

2. count distinct的bug:select count(distinct three_part_extend) from table_order where three_part_extend is not null and three_part_extend<>‘{}‘

具体见:http://dinglin.iteye.com/blog/1976026  http://dinglin.iteye.com/blog/1982176

 

mysql中容易忽略的问题

标签:

原文地址:http://www.cnblogs.com/xinglongbing/p/5068897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!