Skip to main content Join the Agentforce Virtual Hackathon to build innovative solutions and compete for a $50k Grand Prize. Sign up now. Terms apply.
2 réponses
  1. 8 juin 2015, 04:42
    in Soql we are using sub query up to 5 times
  2. 7 juin 2015, 18:11
    Yes, you can do this via a sub query using the relationship name

     

    select Id

    (

    select Name

    from Contacts

    ),

    (

    selet Name

    from Opportunities

    )

    from Account

    where Id = 'xxxxxx'

     
0/9000