MySQL: INDEXES are awesome
Автор: Bro Code
Загружено: 11 нояб. 2022 г.
Просмотров: 74 868 просмотров
#mysql #tutorial #course
-- INDEX (BTree data structure)
-- Indexes are used to find values within a specific column more quickly
-- MySQL normally searches sequentially through a column
-- The longer the column, the more expensive the operation is
-- UPDATE takes more time, SELECT takes less time
-- Single column index
CREATE INDEX last_name_idx
ON customers (last_name);
-- Multi column index
CREATE INDEX last_name_first_name_idx
ON customers (last_name, first_name);

Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: