INSERT INTO tblProduct
(ProductNumber, IMProductNumber, ProductDescription, MSRP, IMPrice, Weight, Length, Width, Height, Taxable, fkManufacturer)
SELECT TOP (5) tblIngramMicroImport.VendorPartNumber, tblIngramMicroImport.IMPartNumber,
tblIngramMicroImport.Description1 + ' ' + tblIngramMicroImport.Description2 AS Description, tblIngramMicroImport.RetailPrice,
tblIngramMicroImport.CustomerPrice, tblIngramMicroImport.Weight, tblIngramMicroImport.Length, tblIngramMicroImport.Width,
tblIngramMicroImport.Height, 1 AS Taxable, 1 AS fkManufacturer
FROM tblIngramMicroImport
where tblIngramMicroImport.VendorPartNumber not in
(select tblProduct_1.ProductNumber from tblProduct tblProduct_1)
|