mysql查询id,IN根据结果模糊问题
阿神
阿神 2017-04-17 13:47:58
0
2
631

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的结果做模糊?谢谢了

阿神
阿神

闭关修行中......

모든 응답 (2)
黄舟
select id,title,content from myarticle where id IN(219,220,222,225) and (content like '明明' or title like '明明');
    阿神

    and的优先级比or高,所以A and B or C实际是(A and B) or C,你要用括号来改变优先级A and (B or C)才行。

      최신 다운로드
      더>
      웹 효과
      웹사이트 소스 코드
      웹사이트 자료
      프론트엔드 템플릿
      회사 소개 부인 성명 Sitemap
      PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!