Heim > Fragen und Antworten > Hauptteil
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的结果做模糊?谢谢了
黄舟2017-04-17 13:49:58
select id,title,content from myarticle where id IN(219,220,222,225)
and
(content like '明明' or title like '明明');
阿神2017-04-17 13:49:58
and的优先级比or高,所以A and B or C
实际是(A and B) or C
,你要用括号来改变优先级A and (B or C)
才行。