1

我正在尝试编写一个 SOQL 查询来检索一些 Salesforce Content 记录,并且在确定下一步时遇到了一些困难。如果该文档的任何版本的自定义字段具有值(不为空),我想排除该文档的所有版本。这是我正在尝试做的精简版:

Select  Id, Title
From    ContentVersion
Where   ContentDocumentId Not In
        (
           Select ContentDocumentId,
           From   ContentVersion
           Where  Custom_Field__c != null
        )

所以我知道你不能编写一个子查询来针对与它的外部查询相同的对象,所以很明显我上面指定的内容是行不通的。关于什么会起作用的任何建议?

谢谢你。

4

1 回答 1

4

你可以尝试这样的事情:

Select C.Id from ContentDocument C where 
    ID not in ( Select ContentDocumentId
        From   ContentVersion
        where Custom_Field__c != null)
于 2012-01-20T10:32:59.440 回答