DQL从r_object_id获取i_chronicle_id
我有这样的情况: 我需要找出文档的 i_chronicle_id 。如果我尝试使用 r_object_id(即从 dm_document 选择 i_chronicle_id,其中 r_object_id='some id',它将返回 i_chronicle_id。那么没问题。但是如果有人修改了文档(签出并签入),我的上述查询不会工作,因为在这种情况下 r_object_id 发生了变化,我不知道在这种情况下有人可以帮助我进行 dql 吗?
注意:我搜索 i_chronicle_id 的原因是为了获取最新的 r_object_id。
I have a situation like this:
I need to find out the i_chronicle_id of a document. If I try with r_object_id(i.e select i_chronicle_id from dm_document where r_object_id='some id', it will return me the i_chronicle_id. Then no problem. But if someone has modified the document(checked out and checked in) my above query doesn't work because the r_object_id has changed in that situation, which I do not know. Can anyone help me with dql in such a situation?
Note: The reason why I search for the i_chronicle_id is to get the latest r_object_id.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试执行类似以下
操作 类型选择所有版本后的 (ALL) 关键字
try doing something like the following
The (ALL) keyword after the type selects all versions