Hello everyone,
I have the following query, which involves 2 tables:
SELECT ViewpointPdfProperties.ViewPointID, ViewpointPdfProperties.FileName, ViewpointPdfProperties.FolderPath, ViewpointPdfProperties.Extension, ViewpointPdfProperties.FileSize_KB, ViewpointPdfProperties.DateCreated, ViewpointPdfProperties.DateModified
FROM ViewpointPdfProperties
WHERE ViewpointPdfProperties.FileName NOT IN
(SELECT PdfMetaData.FileName FROM PdfMetaData WHERE DateValue([PdfMetaData].[DateCreated])>='04/1/2017');
Executing this throws following error:
Invalid Memo, OLE, or Hyperlink Object in subquery 'PdfMetadata.FileName'
Please note that I cannot use LEFT/RIGHT JOIN since both table's contents are coming from 2 completely different sources and they don't have a common ID to join them on. The only common field is the FileName itself.
Any prompt assistance would be greatly appreciated.
Thank you very much.
I have the following query, which involves 2 tables:
SELECT ViewpointPdfProperties.ViewPointID, ViewpointPdfProperties.FileName, ViewpointPdfProperties.FolderPath, ViewpointPdfProperties.Extension, ViewpointPdfProperties.FileSize_KB, ViewpointPdfProperties.DateCreated, ViewpointPdfProperties.DateModified
FROM ViewpointPdfProperties
WHERE ViewpointPdfProperties.FileName NOT IN
(SELECT PdfMetaData.FileName FROM PdfMetaData WHERE DateValue([PdfMetaData].[DateCreated])>='04/1/2017');
Executing this throws following error:
Invalid Memo, OLE, or Hyperlink Object in subquery 'PdfMetadata.FileName'
Please note that I cannot use LEFT/RIGHT JOIN since both table's contents are coming from 2 completely different sources and they don't have a common ID to join them on. The only common field is the FileName itself.
Any prompt assistance would be greatly appreciated.
Thank you very much.