MySQL use index () optimization query

Source: Internet
Author: User

MySQL use index () optimization query

Force Index/ignore The syntax of INDEX:

SELECT * * * from TABLE [{use| ignore| Force} INDEX (key_list)] WHERE ...

Use INDEX
After the table name in your query statement, add use index to provide the index column you want MYSQ to refer to
Table, you can let MySQL no longer consider other available indexes.
Eg:select * FROM mytable use INDEX (mod_time, name) ...

IGNORE INDEX
If you simply want MySQL to ignore one or more indexes, you can use IGNORE index as the
For Hint.
Eg:select * from Mytale IGNORE INDEX (priority) ...

Force INDEX
To force MySQL to use a specific index, you can use the forces index as Hint in the query.
Eg:select * FROM MyTable Force INDEX (mod_time) ...

MySQL use index () optimization query

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.