IT·科技如何使用Salesforce的SOQL获取每日创建的记录数如何使用Salesforce的SOQL获取每日创建的记录数打开开发者控制台打开 Query Editor 选项卡粘贴并执行以下SOQL。1 select day_only(createdDate), count(createdDate) from account group by day_only(createdDate) order by count(createdDate) desc limit 10 请将 account 更改为您想要获取的任意对象名称后执行。参考Is there a way to group by the date portion of a datetime field in SOQL?