TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What do you use instead of SQL?

1 点作者 kite_and_code超过 2 年前
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 条评论

jqpabc123超过 2 年前
<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.
y5y5y5jjjj超过 2 年前
most people that switch from SQL don&#x27;t do it for good reasons....