indexálást
Indexálást, or indexing, is the process of creating a data structure that improves the speed of data retrieval operations on a database. Think of it like the index at the back of a book; instead of reading through the entire book to find a specific topic, you can quickly locate the relevant page number. In databases, an index is a separate data structure, often a B-tree or hash table, that stores a sorted copy of one or more columns from a table. This allows the database system to find rows matching specific query criteria much faster than it would if it had to scan the entire table.
When a query is executed, the database's query optimizer can choose to use an index if it