mysql union all 条件查询问题

我是应该在子句里面就把查询条件加上再union all还是union all后在结果集加查询条件

比如是这种好

(select * from A where id>10) union all (select * from B where id>10) limit 10

还是这种

select a.* from ((select * from A) union all (select * from B)) a where a.id>10
阅读 4.3k
1 个回答

第一种能用到索引,第二种不能使用索引,所以第一种方案好

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题