mcnewsxp
unread,Feb 25, 2013, 10:36:58 AM2/25/13You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
SELECT a.LetterDate, LetterTypeLkup.LetterDescription
FROM CLetterHistory b INNER JOIN
LetterHistory a ON b.LetterID = a.RecID INNER JOIN
LetterTypeLkup ON a.LetterType = LetterTypeLkup.LetterTypeID
WHERE b.CID = @cid
UNION
SELECT LetterDate, LetterTypeLkup.LetterDescription
FROM LetterHistoryLog c INNER JOIN
LetterTypeLkup ON c.LetterTypeID = LetterTypeLkup.LetterTypeID
WHERE c.CID = @cid