我想檢索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
因
我想從Salesforce API檢索案例記錄。我只有案例ID (don't ask why)的開始,所以我已經試過以下查詢: SELECT Id FROM Case WHERE Id LIKE 'whatever...%'
不幸的是,這將返回以下錯誤: SELECT Id FROM Case WHERE Id LIKE '500DABCD...%'
^
ERROR at
我試圖使用Salesforce API(使用自定義PatronManager對象)構建應用程序,並且當我運行以下「父對子」查詢時,我收到一條錯誤消息,指出關係是不明白: SELECT Name, (SELECT PatronTicket__InstanceDate__c FROM PatronTicket__EventInstance__r) FROM PatronTicket__Ticketab
我正在執行在SFDC中創建的我自定義對象的查詢。但我收到以下錯誤: {'[{"message":"\nSELECT FS_Account_Name__c from FS_Work_Order__c\ERROR at Row:1:Column:34\nsObject type 'FS_Work_Order__c' is not supported. If you are attempting to
我遇到了一些問題,即按日期篩選我的SOQL查詢,其中日期字段屬於我查詢的對象的子項。 我找不到文檔中任何事情,我嘗試了兩種不同的查詢,這兩者的失敗: SELECT Name, (SELECT Date__c FROM Child__r)
FROM Parent Where Date__c >= <todays_date>
SELECT Name, (SELECT Date__c FROM C
I am trying to query the relationship "Assigned_To__r" within the "Case" object, so I can return the Name of the User that is currently assigned to the case.I have tried many different syntaxes, and r
比方說,你跑,看起來像這樣的SOQL彙總查詢: select OwnerId, sum(ExpectedRevenue)val from Opportunity GROUP BY ROLLUP(OwnerId)
無論出於何種原因,也有與ExpectedRevenue領域沒有機會填充。 你得到一個表,看起來像這樣: VAL ___ | OWNERID |Id1
|Id2
|