I need to insert an excel sheet in access and retransform it into a star scheme.
However I am having some difficulty with the SQL code to do so!
So far I have managed to set up this SQL code:
"INSERT INTO [Master Table E2E] ( ProductID )
SELECT [Product].ID
FROM [Master Table E2E] INNER JOIN Product ON [Master Table E2E].Product = Product.Product_name;"
this adds the lines underneath my table in stead of in my table
What is the error in the code?
Is there an easier way?
Thanks!!!
However I am having some difficulty with the SQL code to do so!
So far I have managed to set up this SQL code:
"INSERT INTO [Master Table E2E] ( ProductID )
SELECT [Product].ID
FROM [Master Table E2E] INNER JOIN Product ON [Master Table E2E].Product = Product.Product_name;"
this adds the lines underneath my table in stead of in my table
What is the error in the code?
Is there an easier way?
Thanks!!!
Laatst bewerkt: