源地址:https://zhidao.baidu.com/question/350891282.html
(FirstName='Thomas' OR FirstName='William') AND LastName='Carter' 會得到 lastname 必須為 carter ,firstname 為 thomas 或者 william的人
thomas carter
william carter
FirstName='Thomas' OR FirstName='William' AND LastName='Carter' 可以得到 william carter 或者 firstname 為ithomas lastname 不一定是 carter的人 比如:
thomas carter
william carter
thomas king
就是 or 和and 的先后順序的問題, and 的優先級比 or的高 ,a or b and c 先計算 b and c 的結果 再去計算 a 的。