spring-jdbc 用于具有超过 1000 个 id 的 IN 查询
我有一个这样的查询 -
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我只需将 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.
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?