sql语句中not in 不好使的原因之一

场景说明:查询某表中的某字段的值没有在另外一个表中对应的字段中出现过

比如现在有两个表,一个产品表product,一个优惠券批次表coupon,coupon中的product_code字段与product中的product_code形成一对一 的关系,现在有需求查询未绑定过的产品信息

一开始not exists搞,但是查了半天没搞懂,退而求其次,想用not in查询,发现查不出来,不好使。。。。但是in是好使的,于是查网上说使用not in可能会出现其他结果,至于原因,他没写....不靠谱啊

先观察此段sql:
select distinct product_code from coupon;

发现有一列为null,于是想是不是null的问题,于是有如下sql:

select product_code from product where product_code not in(select distinct product_code from coupon where product is not null);

运行后,好使了...

又考虑使用in会影响效率,于是改成如下sql:

select product_code from product pro left jion coupon cou on pro.product_code=cou.product_code where cou.product_code is null;

问题解决,原因,当使用左连接时,如果pro.product_code=cou.product_code没有成立的话,连接形成的总表属于coupon的全为null,所以可以使用如上语句

你可能感兴趣的:(mysql)