How to combine Select Into and Alter Table (ms access sql):
SELECT table1.field1
INTO table2
FROM table1;
And second one:
ALTER TABLE table2 ADD COLUMN ID autoincrement;
I was trying UNION ALL but I got message 'action query can't be used as row source'. Is it possible to combine them using different syntax?