R
RD
I'm trying to find the difference between these two views in a MS Access
Project file connected to SQL Server 2000. The first returns approximately
1400 records, while the second returns 970 records. The group wants to know
what the 430 records are.
SELECT DISTINCT
dbo.BOM.Component, dbo.PartMaster.DescText,
dbo.PartMaster.StockUOM, dbo.PartMaster.ISC, dbo.PartMaster.OMC,
dbo.PartMaster.LeadTime, dbo.PartMaster.OrderMultiple,
dbo.PartMaster.OrderQuantity
FROM dbo.BOM INNER JOIN
dbo.PartMaster ON dbo.BOM.Component =
dbo.PartMaster.PartNumber
SELECT DISTINCT
dbo.BOM.Component, dbo.PartMaster.DescText,
dbo.PartMaster.StockUOM, dbo.PartMaster.ISC, dbo.PartMaster.OMC,
dbo.PartMaster.LeadTime, dbo.PartMaster.OrderMultiple,
dbo.PartMaster.OrderQuantity, dbo.Suppliers.SupplierName
FROM dbo.BOM INNER JOIN
dbo.PartMaster ON dbo.BOM.Component =
dbo.PartMaster.PartNumber INNER JOIN
dbo.PartXReference ON dbo.PartMaster.PartNumber =
dbo.PartXReference.PartNumber INNER JOIN
dbo.Suppliers ON dbo.PartXReference.SupplierID =
dbo.Suppliers.SupplierID
How do I flush out the 430 records?
Project file connected to SQL Server 2000. The first returns approximately
1400 records, while the second returns 970 records. The group wants to know
what the 430 records are.
SELECT DISTINCT
dbo.BOM.Component, dbo.PartMaster.DescText,
dbo.PartMaster.StockUOM, dbo.PartMaster.ISC, dbo.PartMaster.OMC,
dbo.PartMaster.LeadTime, dbo.PartMaster.OrderMultiple,
dbo.PartMaster.OrderQuantity
FROM dbo.BOM INNER JOIN
dbo.PartMaster ON dbo.BOM.Component =
dbo.PartMaster.PartNumber
SELECT DISTINCT
dbo.BOM.Component, dbo.PartMaster.DescText,
dbo.PartMaster.StockUOM, dbo.PartMaster.ISC, dbo.PartMaster.OMC,
dbo.PartMaster.LeadTime, dbo.PartMaster.OrderMultiple,
dbo.PartMaster.OrderQuantity, dbo.Suppliers.SupplierName
FROM dbo.BOM INNER JOIN
dbo.PartMaster ON dbo.BOM.Component =
dbo.PartMaster.PartNumber INNER JOIN
dbo.PartXReference ON dbo.PartMaster.PartNumber =
dbo.PartXReference.PartNumber INNER JOIN
dbo.Suppliers ON dbo.PartXReference.SupplierID =
dbo.Suppliers.SupplierID
How do I flush out the 430 records?