Database index Principle

Source: Internet
Author: User

Database index Principle

An index is a structure that sorts the values of one or more columns in a database table (for example, the last name (lname) column of the employee table. If you want to search for him or her by the name of a specific employee, the index will help you get information faster than searching all rows in the table.

The database index uses the B + tree. If you query the content of two tables:

Select * from a, B where a. id = B. id;

You only need to create an index on the id of Table B. Because there is no condition for "Left Table a" in the query, it is all output, so the index of Table a is not used;

A table creates a composite index for two columns. Only when both columns are used, the index is taken. Otherwise, the index will not be taken. However, creating a single index will occupy more space.

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.