Hi,
I have a query in MS ACCESS, I ran it in MS ACCESS:
SELECT * FROM table1
INNER JOIN table2 ON table1.f1=table2.f1 WHERE table1.f2=table2.f2
It works fine. However, I need to save the results into another table. So, I changed it to:
SELECT * Into a1
FROM table1 INNER JOIN table2 ON table1.f1=table2.f1 WHERE table1.f2=table2.f2
It does not work. I receive this error: "Cannot Open database. It may not be a database that your application recognizes, or the file may be corrupt." Does anybody know how I can save the results in a database or txt file?
Thank you very much.