spring-jdbc 用于具有超过 1000 个 id 的 IN 查询

发布于 2024-12-09 01:55:31 字数 246 浏览 3 评论 0原文

我有一个这样的查询 -

SELECT * FROM mytable WHERE id IN()

IN 将获取超过 1000 的 id 列表。所以我的查询在 Oracle 上失败了。

一种选择是我将 ids 插入临时表中,并更改上述查询以与这个新表连接。

spring-jdbc 有提供什么来解决这个问题吗?我可以遵循什么模式来编写我的 DAO 吗?

I have a query like this -

SELECT * FROM mytable WHERE id IN()

The IN will get list of ids which are more than 1000. So my query fails on Oracle.

One option is that I insert the ids in a temp table and change the above query to join with this new table.

Does spring-jdbc provides anything to solve this? Is there any pattern I can follow to write my DAO?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人│生佛魔见 2024-12-16 01:55:31

我只需将 ID 列表分成 1000 个块,然后对每个块执行相同的查询。这可以很容易地封装在可重用的实用方法中。

I would just partition the list of IDs in chunks of 1000, and execute the same query for each chunk. This can be easily encapsulated in a reusable utility method.

如果没结果 2024-12-16 01:55:31

id 首先从哪里来?如果可以从现有表中检索它们,那么使用包含 ids 的表的子选择来构建 sql 会很容易吗?

Where do the ids come from in the first place? If they can be retrieved from existing tables then it would be easy to construct your sql with a subselect against the tables containing the ids?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文