[SQL]去除left join左连接中的null空数据

今天在做查询的时候碰到了左连接需要去除null数据的问题,遂记录如下。

错误:

select propsdef.*, playerbag.COUNT from playerbag left join propsdef on playerbag.propsid == propsdef.ID and propsdef.maintype = 2;

执行结果

[SQL]去除left join左连接中的null空数据_第1张图片

出现了很多的null数据,于是修改如下。

解决方法:

select propsdef.*, playerbag.COUNT from playerbag left join propsdef on playerbag.propsid == propsdef.ID where propsdef.maintype = 2;

将后面的and修改为了where,于是问题解决了。

查明了原因:

1、 on条件是在生成临时表时使用的条件,它不管on中的条件是否为真,都会返回左边表中的记录
2、where条件是在临时表生成好后,再对临时表进行过滤的条件。这时已经没有left join的含义(必须返回左边表的记录)了,条件不为真的就全部过滤掉。

 

你可能感兴趣的:(sql,left,join,null)