Vii. MySQL Index selection

Source: Internet
Author: User
Tags mysql index

1. myisam,bdb,innodb,memory single table supports at least 16 indexes2.Create IndexId_index onEMP (ID) Create an index of an ID field named Id_index for the EMP table3.Drop IndexId_index onEMP Delete id_index index of EMP table4. Explain xxxxxxx, you can view the relevant execution results for optimizing the table5The most appropriate index column is the "condition column" instead of "select column" such asSelectName fromEmpwhere  Year >=  the; It's best to create an index on the year field instead of the Name field6. Using indexed fields, the value of the field is best unique, because the more unique the index, the greater the significance7The. Btree index is accessed through the index, while the hash index is scanned with a full table

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.