Ankesh.
All postsEngineering

MongoDB vs SQL: How I Actually Choose

A
Ankesh Kumar
August 2, 2026 1 min read
MongoDB vs SQL: How I Actually Choose

It depends on the shape of your data

If your data is deeply relational with lots of joins, SQL wins. If it’s document-shaped and evolves quickly, MongoDB gets out of your way faster.

My rule of thumb

For early-stage MVPs where the schema is still moving, I default to MongoDB. Once the data model stabilizes and reporting matters more, I’ll reach for Postgres.

#databases#mongodb#backend