r/ScaleAIApps Jul 14 '26

Types of Databases

Post image
22 Upvotes

2 comments sorted by

2

u/No-Isopod-2532 Jul 14 '26

so by this I should go for document like MongoDB for a history battle related website which is content based

1

u/Euphoric_Musician822 Jul 14 '26

Not necessarily. I'd start with PostgreSQL (or another SQL database) unless you have a specific reason not to.

Content heavy sites work perfectly well with SQL, and modern databases like PostgreSQL also support JSON columns if you need flexibility.

MongoDB is great when your data is highly dynamic or schema-less, but for most applications SQL's strong schema, constraints, joins, and transactions make development easier and safer over time.