SQLite For Beginners: Indexes, beyond the basics

preview_player
Показать описание
If you want to level up your database skills, the area you should probably focus on first is Indexes.

So, are you familiar with the various types of indexes you can create?

Check out this video to learn more.

Рекомендации по теме
Комментарии
Автор

This is gold content. Thanks for sharing.

ahmelq
Автор

Very good content and presentation as usual! Please keep it up 👍

joao.penteado
Автор

Amazing content! Thank you for recording and sharing.

In regard to non-sensitive queries, SQLite has case-insensitivate collates to be used for this purpose:

create table variables (key text collate nocase, value);

joeljuca
Автор

Going through this series of videos I am picking up interesting SQLITE stuff and knowledge. Thanks for that and keep it up.

brunoseys
Автор

Only a minute in but this is so well presented and useful. Thank you

dannydevelops
Автор

Great. If your db keeps updating frequently, creating covering index, might not be efficient? Right

thedelanyo