select id,title,content from myarticle where id IN(219,220,222,225) and content like '明明' or title like '明明';
用 where id IN(219,220,222,225),给我返回别的 267的文章怎么让后面的like 根据 IN的结果做模糊?谢谢了
闭关修行中......
select id,title,content from myarticle where id IN(219,220,222,225) and (content like '明明' or title like '明明');
and has a higher priority than or, so A and B or C is actually (A and B) or C. You have to use brackets to change the priority A and (B or C).
A and B or C
(A and B) or C
A and (B or C)
and has a higher priority than or, so
A and B or C
is actually(A and B) or C
. You have to use brackets to change the priorityA and (B or C)
.