如何检索最后一个“m”来自“1-n”的实例使用 JPQL 的关系?
无论如何,是否可以使用 JPQL 从 1 到 n 关系中检索最后的“m”个实例?
例如。检索以下“x”个用户的最后“m”个操作。
Is there anyway to retrieve the last "m" instances from a 1 to n relationship using JPQL?
Ex. Retrieve the last "m" actions for the following "x" Users.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于单个用户,您可以仅在查询上使用 maxResults。
否则,由于 OneToMany 中没有顺序,或者是否有顺序列,如何确定“最后”实例?
也许是这样的,
For a single user you can just use maxResults on the Query.
Otherwise, how do you determine the "last" instances as there is no order in a OneToMany, or do you have an order column?
Perhaps something like,