mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 05:14:04 +00:00
725 B
725 B
| title | tweet_id | thread_slug | author_username | images | created_at | slug | |
|---|---|---|---|---|---|---|---|
| You can create DB indices for transformed versions of columns | 1512463807167139846 | weekly-thread-2022-14 | tobias_petry |
|
2022-04-08T16:14:06+00:00 | you-can-create-db-indices-for-transformed-versions-of-columns |
⚡️ Database Tip
Most developers are puzzled that indexes are not used for e.g. WHERE LOWER(email) = ?. But contrary to common belief, an index can be created for these cases! It's called a function-based index and is supported by MySQL and PostgreSQL.