InterviewSolution
Saved Bookmarks
| 1. |
What is indexing and how do you create an index in MySQL? |
|
Answer» A DATABASE index is the structure of a fact that improves the velocity of operations in a table. It can be created the USAGE of one or greater columns, presenting the FOUNDATION for each fast random lookups and efficient ORDERING of getting admission to records. Indexes are used to locate rows with specific column values quickly. ExampleCREATE INDEX [index name] ON [table name]([column name]); |
|