What Does It Mean for a Column to Be Indexed
When optimizing queries on a database table, most developers tend to just create an index on the field to be queried. They have questions like
I donβt real...
Similar Articles (10 found)
π 70.7% similar
21 minutes
Introduction to PostgreSQL Indexes
Whoβs this for
This text is for developers that have an intuitive knowledge of what database indexes are...
π 63.6% similar
9 min read
Feb 02, 2026
Table of contents
01 The βUse the Right Toolβ Trap02 Why This Matters Now: The AI Era03 βBut Specialized Databases Are Better!...
π 62.8% similar
Build Your Own Database
A step-by-step guide to building a key-value database from scratch.
If you were to build your own database today, not knowing ...
π 62.7% similar
What are Common Table Expressions(CTEs) and when to use them?
- Introduction
- Setup
- Common Table Expressions (CTEs)
- Performance comparison
- Tear...
π 60.2% similar
25 SQL tips to level up your data engineering skills
- Introduction
- Setup
- SQL tips
- 1. Handy functions for common data processing scenarios
- 1.1...
π 58.3% similar
Everyone Loves pgvector (in theory)
If youβve spent any time in the vector search space over the past year, youβve probably read blog posts explaining...
π 57.8% similar
Relational Databases Explained
How Relational Databases Work. This post talks about how indexes and transactions work on the inside of relational data...
π 57.1% similar
Python is, in a lot of ways, a very rich language. After years of using it, I still regularly discover new parts of the ecosystem, even in the standar...
π 55.9% similar
How to Join a fact and a type 2 dimension (SCD2) table
- Introduction
- What is an SCD2 table and why use it?
- Setup
- Joining fact and SCD2 tables
-...
π 55.6% similar
To check the distribution of values that PostgreSQL has collected on some columns of a table, you can use the pg_stats system catalog table. This tabl...