I am enhancing an old application that is using a query similar to the below. I would like to convert the syntax to start using the explicit JOIN syntax. What would be the 'explicit join syntax' query for the below:
Select
DTL.DetailId
, HDR.PersonId
from
CMPN.Header HDR
, CMPN.Detail DTL
, CMPN.DetailStatus DST
, CMPN.AdjustmentsDetails CAD
where
HDR.HeaderId = DTL.HeaderId
and DTL.DetailId = DST.DetailId
and DTL.DetailId = CAD.DetailId
and DST.DetailStatusCode = 'Approved'
and DST.ExpirationTimestamp IS NULL
and HDR.Group = 'Group A'
;