Mysql中的 and 与or 优先级别

最近 在开发中用到了多个条件 并且有 or 的条件语句
当 select * from table  where  a and  条件 b  OR 条件 c 的时候
需要将 or 条件用括号括起来再用 and 连接 如下
select  * from table where 条件 a and  (条件 b OR 条件 c);

你可能感兴趣的:(mysql)