//使用or,代码如下: where * from article where article_category=2 or article_category=3 order by article_id desc limit 5 // 执行时间:11.0777 //使用in,代码如下: select * from article where article_category in (2,3) order by article_id desc limit 5 // 执行时间:11.2850 //使用union all,代码如下: ( select * from article where article_category=2 order by article_id desc limit 5 ) union all ( select * from article where article_category=3 order by article_id desc limit 5 ) order by article_id desc limit 5 // 执行时间:0.0261
教程链接:
随意转载~但请保留教程地址★