In my DB I have a document type "CPYEVREQ" for a given source that needs to have a companion "MER". The former is a request for medical records, and the latter document type the fulfillment of that request. So "source" is going to be the doctor or clinic for which we want medical records. This code will pair these request and responses up nicely: "SELECT PDFParentBookmark.DocumentType, PDFParentBookmark.DocumentSource, PDFParentBookmark_1.DocumentSource, PDFParentBookmark_1.DocumentTypeFROM PDFParentBookmark AS PDFParentBookmark_1 INNER JOIN PDFParentBookmark ON PDFParentBookmark_1.DocumentSource = PDFParentBookmark.DocumentSource
WHERE (((PDFParentBookmark.DocumentType)="CPYEVREQ") AND ((PDFParentBookmark_1.DocumentType)="MER"));
"
BUT I want to identify the document types "CPYEVREQ" for which we do NOT have a matching MER.