I have an SQL query (Query1) that gets its data from two different tables...works fine.
SELECT tblProduct.ProductID, tblProduct.PartNumber, tblProduct.Product, tblProduct.Purchaseprice
FROM tblProduct
UNION SELECT tblProductsMYOB.ProductID, tblProductsMYOB.PartNumber, tblProductsMYOB.Product, tblProductsMYOB.Purchaseprice
FROM tblProductsMYOB
ORDER BY PartNumber;
I now want to get (import?) those query results into a table in the same database. The table can be a new table or an existing table with fields that include those mentioned above.
Help would be appreciated
Bob
SELECT tblProduct.ProductID, tblProduct.PartNumber, tblProduct.Product, tblProduct.Purchaseprice
FROM tblProduct
UNION SELECT tblProductsMYOB.ProductID, tblProductsMYOB.PartNumber, tblProductsMYOB.Product, tblProductsMYOB.Purchaseprice
FROM tblProductsMYOB
ORDER BY PartNumber;
I now want to get (import?) those query results into a table in the same database. The table can be a new table or an existing table with fields that include those mentioned above.
Help would be appreciated
Bob