How to hint the index to use in a MySQL select query?(如何提示要在 MySQL 选择查询中使用的索引?)
问题描述
我有一个 MySQL 查询(运行 MySQL 5.0.88),我正在尝试加快速度.基础表有多个索引,对于有问题的查询,使用了错误的索引(i_active - 16.000 行,而 i_iln - 7 行).
I have a MySQL query (running MySQL 5.0.88), which I'm trying to speed up. The underlying table has multiple indices and for the query in question, the wrong index is used (i_active - 16.000 rows, vs. i_iln - 7 rows).
我对 MySQL 不是很有经验,但读到有一个 use index 提示,它可以强制 mySQL 使用某个索引.我正在这样尝试:
I'm not very experienced with MySQL but read there is a use index hint, which can force mySQL to use a certain index. I'm trying it like this:
SELECT art.firma USE INDEX (i_iln)
...
但这会产生 MySQL 错误.
but this produces a MySQL error.
问题:
谁能告诉我我做错了什么?(除了运行 5.0.88,我无法更改.)
Question:
Can anyone tell me what I'm doing wrong? (Except running 5.0.88, which I can't change.)
推荐答案
你错过了
FROM table
正确的 SQL 应该是:
Correct SQL should be:
SELECT art.firma FROM your_table USE INDEX (i_iln) WHERE ....
这篇关于如何提示要在 MySQL 选择查询中使用的索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何提示要在 MySQL 选择查询中使用的索引?
基础教程推荐
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
