TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What do you use instead of SQL?

1 pointsby kite_and_codeover 2 years ago
I see SQL (query language) being used widely. I am wondering: is there something better? Did you choose or find a (better/different) alternative instead of SQL at some time or in a certain context?

2 comments

jqpabc123over 2 years ago
<i>Did you choose or find a (better&#x2F;different) alternative instead of SQL at some time or in a certain context?</i><p>SQL is often used with a general purpose, relational database management system (RDBMS). This is appropriate when the problem space is large and parts of it are unknown or likely to change in ways you can&#x27;t begin to predict at the current time. In other words, when functionality and flexibility are more important than raw speed.<p>When the problem space is more limited and more clearly defined, this can be overkill or mistargeted. Then something like a simple indexed key&#x2F;value store might be more appropriate.<p>Years of working with SQL and RDBMS often leads to a mindset where programmers are convinced that it is the only possible solution to every problem. If a hammer is all you know, everything looks like a nail. The reality often is that it is the one solution they know best or feel most comfortable with.
y5y5y5jjjjover 2 years ago
most people that switch from SQL don&#x27;t do it for good reasons....