gpt4 book ai didi

salesforce - Soql查询以检索两个日期之间的机会

转载 作者:行者123 更新时间:2023-12-04 17:27:14 26 4
gpt4 key购买 nike

我正在尝试检索在2011年1月1日至2011年6月30日之间创建的机会。

Select o.CreatedDate, o.Id, o.LastModifiedDate
from Opportunity o
where o.CreatedDate > '1/1/2011' and o.CreatedDate < '12/31/2011'
order by o.LastModifiedDate

由于createdate是日期时间,因此我收到一条错误消息,指出createdDate是日期时间,不应将其括在引号中。

有人可以帮忙如何使此查询工作。我只希望此查询使其在apex资源管理器中运行,这不是apex代码的一部分

最佳答案

SOQL查询以检索两个日期之间的机会:

Select o.CreatedDate, o.Id, o.LastModifiedDate 
from Opportunity o
where o.CreatedDate > 2011-01-01T00:00:00Z and o.CreatedDate < 2011-12-31T00:00:00Z

关于salesforce - Soql查询以检索两个日期之间的机会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6660639/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com