如何在内连接表上强制建立索引?

发布于 2024-08-22 14:28:17 字数 186 浏览 5 评论 0原文

如何在与此类似的查询上强制索引。我需要分别对 foo 和 bar 强制建立索引。

SELECT foo.*, bar.*
FROM foo
INNER JOIN bar ON foo.rel_id = bar.rel_id
WHERE foo.status = 1
  AND bar.status = 1

How do I force indexes on a query similar to this. I need to force an index on foo and bar individually.

SELECT foo.*, bar.*
FROM foo
INNER JOIN bar ON foo.rel_id = bar.rel_id
WHERE foo.status = 1
  AND bar.status = 1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

肤浅与狂妄 2024-08-29 14:28:17

假设 foo 上存在索引 a,bar 上存在索引 b

SELECT foo.*, bar.*
FROM foo FORCE INDEX (a)
INNER JOIN bar FORCE INDEX (b) ON foo.rel_id = bar.rel_id
WHERE foo.status = 1
  AND bar.status = 1

将强制在 MySql 上选择索引

Assuming index a exists on foo and index b on bar:

SELECT foo.*, bar.*
FROM foo FORCE INDEX (a)
INNER JOIN bar FORCE INDEX (b) ON foo.rel_id = bar.rel_id
WHERE foo.status = 1
  AND bar.status = 1

would force index selection on MySql

三人与歌 2024-08-29 14:28:17

显而易见的事情是在两个表的 rel_idstatus 上创建覆盖索引以满足 join 和 where 要求。

到目前为止你尝试过什么?

编辑

您提供 索引提示 但每个人的关键答案似乎是你不应该这样做。

从 MySQL 4.0.9 开始,您还可以使用
FORCE INDEX,其作用类似于 USE INDEX
(index_list) 但加上
假设表扫描是
非常昂贵。换句话说,一个
仅当不存在时才使用表扫描
使用给定索引之一的方法
查找表中的行。

The obvious thing would be to create a covering index on rel_id and status of both tables to satisfy the join and where requirement.

What have you tried so-far?

edit

You provide index hints but the crux of everyone answering seems to be that you shouldn't have to do that.

From MySQL 4.0.9 on, you can also use
FORCE INDEX, which acts like USE INDEX
(index_list) but with the addition
that a table scan is assumed to be
very expensive. In other words, a
table scan is used only if there is no
way to use one of the given indexes to
find rows in the table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文