|
xgd -> RE: Joining 2 databases (5/22/2007 11:31:43)
|
Sorry for not replying sooner, but I dug my heels in and came up with something that I "think", "hope", & "pray" is working. SELECT DISTINCT UPS_Invoices.InvoiceDate, UPS_Invoices.[Transaction Date], UPS_Invoices.AccountNumber, UPS_Invoices.UPSTrackingID, UPS_Invoices.Ref1, UPS_Invoices.Ref2, UPS_Invoices.Ref3, UPS_Invoices.Ref4, UPS_Invoices.Ref5
FROM UPS_Invoices
LEFT JOIN AR_19InvoiceHistoryTracking ON UPS_Invoices.UPSTrackingID = AR_19InvoiceHistoryTracking.TrackingID
WHERE (((UPS_Invoices.InvoiceDate)='::Invoice_Date::') AND ((AR_19InvoiceHistoryTracking.TrackingID) Is Null));
I could not have done it without your help. Thanks again. If I run into issues I'll let you know.
|
|
|
|