DQL从r_object_id获取i_chronicle_id

发布于 2024-09-19 19:08:35 字数 283 浏览 4 评论 0原文

我有这样的情况: 我需要找出文档的 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 技术交流群。

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

发布评论

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

评论(1

你的心境我的脸 2024-09-26 19:08:35

尝试执行类似以下

select r_object_id from dm_document 
where i_chronicle_id in (
    select i_chronicle_id from dm_document (ALL) where r_object_id = ID('?')
)

操作 类型选择所有版本后的 (ALL) 关键字

try doing something like the following

select r_object_id from dm_document 
where i_chronicle_id in (
    select i_chronicle_id from dm_document (ALL) where r_object_id = ID('?')
)

The (ALL) keyword after the type selects all versions

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