SalesForce SOQL加入导致联系

时间:2016-03-17 19:57:45

标签: salesforce soql salesforce-service-cloud

我尝试使用SOQL和JOIN从SalesForce Lead中查询数据,并获取通过contacts对象创建的潜在客户的联系信息。 我不确定使用哪些对象如何去做。 有谁知道可以与SOQL关系查询一起使用的详细模式。 我已尝试过以下链接中的一些示例,但不知道如何对潜在客户,联系人执行相同操作:

https://developer.salesforce.com/blogs/developer-relations/2013/05/basic-soql-relationship-queries.html

1 个答案:

答案 0 :(得分:0)

首先,你没有正确提到你想要的东西

List<lead> info = [Select * from Lead where Id = 'Id name of that Particular record of lead'];

system.debug(info);

现在您可以在日志中查看该特定潜在客户的所有信息。