I have a couple of tables that store the status history and the address status of a person. In SQL the query would be something like
Select P.Forename, P.Surname,
S.Status,
A.Line1, A.Line2, A.Line3, A.City
From Person P
Join StatusHistory S
On P.PersonUID = S.ParentUID
And S.Date = (Select Max(Date)
from StatusHistory S1
where S.ParentUID = S1.ParentUID)
Join AddressHistory A
On P.PersonUID = A.ParentUID
And A.Date = (Select Max(Date)
from AddressHistory A1
where A.ParentUID = A1.ParentUID)
Can the equivalent of this be done directly in Crystal Reports 10 without using the Command connection type or any SQL?
Select P.Forename, P.Surname,
S.Status,
A.Line1, A.Line2, A.Line3, A.City
From Person P
Join StatusHistory S
On P.PersonUID = S.ParentUID
And S.Date = (Select Max(Date)
from StatusHistory S1
where S.ParentUID = S1.ParentUID)
Join AddressHistory A
On P.PersonUID = A.ParentUID
And A.Date = (Select Max(Date)
from AddressHistory A1
where A.ParentUID = A1.ParentUID)
Can the equivalent of this be done directly in Crystal Reports 10 without using the Command connection type or any SQL?