I have two different tables US and UK in my Access database. I have imported these two tables from two different excel files. Now I am creating a query for Union of these two tables and query runs perfectly. My query is given below:
SELECT ID,Month,Year,Country
From UK
ORDER BY ID;
UNION SELECT ID,Month,Year,Country
From US;
Now I want to create a new Table where the out put of the above query will store. I want to write a SQL code for that. I am totally new in Sql so need help to resolve it.
UNION ALL, and skip theORDER BY.