SQL語句中AND OR運算符優先級

在SQL語句中,OR的優先級比AND的優先級要低,好比:web select * from user where id in (1,2,3) and hobbies like '%Fishing%' or hobbies like '%Running%'; 本想着找到一個id是1,2,3中的一個並且喜歡釣魚或者跑步的人,可是上面的語句其實是這樣執行的:sql select * from user
相關文章
相關標籤/搜索