0

使用 BQL 从 BQL 中选择非重复项目的最佳方法是什么?

Search<PRTaxCode.prGovtRefNbr, 
 Where<PRTaxCode.prGovtRefNbr, IsNotNull>,
    And<PRTaxCode.prGovtRefNbr, ***not already in results***>>?

当前结果:52-55555555555 52-55555555555 <--删除此重复项 52-12345678 52-144550099

结果应该是:52-55555555555 52-12345678 52-144550099

4

1 回答 1

1

使用 Aggregate 和 GroupBy 构造可以得到预期的结果。

找到了我自己的答案:

  Search4<PRTaxCode.prGovtRefNbr, 
    Where<PRTaxCode.prGovtRefNbr, IsNotNull>, 
Aggregate<GroupBy<PRTaxCode.prGovtRefNbr>>>
于 2014-10-06T15:31:45.887 回答