Adatbázisindexelés
Adatbázisindexelés (Database Indexing) is a data structure technique used to improve the speed of data retrieval operations on a database table. An index is a data structure, most commonly a B-tree, that stores a small portion of the table's data in a sorted order, along with pointers to the original data rows. When a query is executed, the database system can use the index to quickly locate the desired rows without having to scan the entire table. This is analogous to the index in a book, which allows you to find specific topics without reading every page.
Creating indexes can significantly speed up SELECT queries, especially on large tables where filtering or sorting
Common types of indexes include B-tree indexes, hash indexes, and full-text indexes. B-tree indexes are the most