mysql sql語句中用括弧處理or和and的運算順序

來源:互聯網
上載者:User

標籤:

需求,我要檢索出 a =1 或者 b=1 並且 c = 0 或者 c=1 時候的結果

例子:

select * from test where a = 1 or b = 1 and ( c = 0 or c = 1)

這裡會檢索 a=1 或者 b=1 的結果集,再過濾掉出其中 c=0 或者 c=1 的結果

如果我們換個寫法

select * from test where a = 1 or b = 1 and c = 0 or c = 1

這樣會檢索 a=1 或者 b =1 或者 c=1的結果集,再過濾出其中 c=0的結果,這個不是我期望的,所以用括弧括起來調整他們的處理順序就OK了。

 

 

先篩選同一個醫院或同一個科室的使用者list,再按照發醫說數量和粉絲數再篩選一次使用者list,

正確SQL:

SELECT a.* FROM xm_user a WHERE (a.user_hospital = ‘301醫院‘ or a.user_department = ‘骨科‘) and a.user_id != 1
and not EXISTS (SELECT b.* FROM xm_user_friendship b WHERE b.fs_from_user_id = 1 and b.fs_to_user_id = a.user_id );

錯誤SQL:

SELECT a.* FROM xm_user a WHERE  a.user_hospital = ‘301醫院‘ or a.user_department = ‘骨科‘ and a.user_id != 1
and not EXISTS (SELECT b.* FROM xm_user_friendship b WHERE b.fs_from_user_id = 1 and b.fs_to_user_id = a.user_id );

mysql sql語句中用括弧處理or和and的運算順序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.