excalibur78
IS-IT--Management
(SELECT [Store #], [Datatec Posts BOM]
FROM [Masterfile]
WHERE [Datatec Posts BOM] >= '4/29/2003')
(SELECT [Masterfile].[Store #], [Masterfile].[Datatec Posts BOM], [Inventory Tracking].[Store #], [Inventory Tracking].[BOM Build Date], [Inventory Tracking].[DatatecSupp]
FROM [Masterfile], [Inventory Tracking]
WHERE [Masterfile].[Store #] = [Inventory Tracking].[Store #] and [Inventory Tracking].[BOM Build Date] Is Not Null
and [Masterfile].[Datatec Posts BOM] Is Not Null and [Inventory Tracking].[DatatecSupp] Is Null
and [Masterfile].[Datatec Posts BOM] >= '4/29/2003')
I'm trying to join these 2 record sets so that the fields from the second recordset join to the end of the first recordset even if they don't exist in the first recordset.
Having no luck I think I'm just over thinking things.
Thanks,
David
FROM [Masterfile]
WHERE [Datatec Posts BOM] >= '4/29/2003')
(SELECT [Masterfile].[Store #], [Masterfile].[Datatec Posts BOM], [Inventory Tracking].[Store #], [Inventory Tracking].[BOM Build Date], [Inventory Tracking].[DatatecSupp]
FROM [Masterfile], [Inventory Tracking]
WHERE [Masterfile].[Store #] = [Inventory Tracking].[Store #] and [Inventory Tracking].[BOM Build Date] Is Not Null
and [Masterfile].[Datatec Posts BOM] Is Not Null and [Inventory Tracking].[DatatecSupp] Is Null
and [Masterfile].[Datatec Posts BOM] >= '4/29/2003')
I'm trying to join these 2 record sets so that the fields from the second recordset join to the end of the first recordset even if they don't exist in the first recordset.
Having no luck I think I'm just over thinking things.
Thanks,
David