我正在尝试检索 01-01-2011 和 06-30-2011 之间创建的机会。
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 代码的一部分