盯着这where or 终于出了点感觉

Posted zuochanzi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了盯着这where or 终于出了点感觉相关的知识,希望对你有一定的参考价值。

有两个表

这是ucbi表

 技术分享图片

这是cai表

技术分享图片

 

SELECT
ucbi.Userid,
ucbi.Carid,
ucbi.rechargetime,
ucbi.Datetime
FROM
usercaridbindinfo ucbi
LEFT JOIN carauthinfo cai ON cai.Receiver = ‘15801377365‘

应该会产生如下的中间表

技术分享图片

WHERE
ucbi.Userid = ‘15801377365‘ or ucbi.Userid = cai.Userid;

技术分享图片

出现了重复  是不是可以想成where 循环,

ucbi.Userid = ‘15801377365‘ or ucbi.Userid = cai.Userid;

拆分开  ucbi.Userid = cai.Userid; 有两条符合 13311069699 和 13311069600

ucbi.Userid = ‘15801377365‘ or ucbi.Userid = 13311069699 ;

ucbi.Userid = ‘15801377365‘ or ucbi.Userid = 13311069600 ;

where 一共是两次循环, 

第一次过滤 ucbi.Userid = ‘15801377365‘ or ucbi.Userid = 13311069699 ;

第二次过滤ucbi.Userid = ‘15801377365‘ or ucbi.Userid = 13311069600 ; 

于是出现了重复.









以上是关于盯着这where or 终于出了点感觉的主要内容,如果未能解决你的问题,请参考以下文章

Codeigniter 的 `where` 和 `or_where`

ThinkPHP 中 where条件 or,and 同时使用

mysql where条件使用了or会不会扫全表

教义or Where inside and Where

mybatis——逆向工程中 where (条件1)and (条件2 or 条件3 or 条件4)

Laravel 查询生成器 where 和 or where