yii---where or该如何使用
生活随笔
收集整理的這篇文章主要介紹了
yii---where or该如何使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
今天調試YII項目的時候,遇到一個奇葩的事兒,在調試 where or 查詢的時候:調試語句是這樣:
$str = static::find()->where(['or','username' => $username,'mobile' => $account]); echo "<br>"; echo $str->createCommand()->getRawSql();很明顯,我要到這個數據庫里面找到 username等于$username,或者是mobile等于$account的數據。但是這樣得到的SQL是:
SELECT * FROM `user` WHERE (dd_18314416390) OR (18314416390)很明顯是不對的,即使是放到MYSQL上執(zhí)行,也是錯的。
究其原因:yii where or 寫錯啦!
應該這樣:
$str = static::find()->where(['or',['username'=>$username],['mobile' => $account]]); echo "<br>"; echo $str->createCommand()->getRawSql();這樣生成的SQL是這樣的:
SELECT * FROM `user` WHERE (`username`='dd_18314416390') OR (`mobile`='18314416390')這樣就對啦!
轉載于:https://www.cnblogs.com/e0yu/p/10038976.html
總結
以上是生活随笔為你收集整理的yii---where or该如何使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Effective_STL 学习笔记(二
- 下一篇: 《设计模式》3.结构型模式