function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
duc.lamduc.lam 

Combining Parent-Child Relationship Query with Child-Parent Relationship Query

I have two different relationship queries, one is parent-child and the other child-parent:
 
SELECT a.Id, cc.LastName FROM Case a, a.Contact cc
SELECT Id, (SELECT Field, NewValue FROM Histories) FROM Case
 
How do I combine it into one query?
 
SuperfellSuperfell
select id, contact.lastName, (select field, newvalue from histories) from case
Software EngineSoftware Engine

Hi,

What is the parent table for Campaign, User Tables