Posts tagged "sql"

5 posts tagged with sql.

How SQL Query Planners Decide What Your Query Does
sqldatabasesperformancedeveloper-tools
How SQL Query Planners Decide What Your Query Does

You write SQL declaratively, but the database engine decides how to execute it. We open up Postgres EXPLAIN to show how query planners actually choose strategies.

May 9, 2026 ·9 min read
Data Normalization Explained: 1NF, 2NF, 3NF Without the Jargon
databasessqldata-modelingbackend
Data Normalization Explained: 1NF, 2NF, 3NF Without the Jargon

Normalization rules sound abstract until you see what a denormalized table looks like after six months of updates. This guide explains the normal forms using simple, concrete examples.

March 23, 2026 ·9 min read
Understanding Database Indexes: How They Work and When to Use Them
databasessqlperformancebackend
Understanding Database Indexes: How They Work and When to Use Them

An index can turn a ten-second query into a millisecond query — or slow down your writes significantly if misused. Understanding the data structure behind indexes makes both outcomes predictable.

March 20, 2026 ·10 min read
NoSQL vs SQL: Choosing the Right Database for Your Project
sqlnosqldatabasesarchitecture
NoSQL vs SQL: Choosing the Right Database for Your Project

The choice between SQL and NoSQL is not about which is better — it is about matching the data model to your access patterns. Here is a framework for making that decision with confidence.

March 17, 2026 ·10 min read
SQL Basics: From Zero to Writing Real Queries
sqldatabasesbeginnersbackend
SQL Basics: From Zero to Writing Real Queries

SQL is one of the most valuable skills a developer can have — and the fundamentals are surprisingly approachable. Start here to write your first real queries confidently.

March 14, 2026 ·12 min read