I have three select query that I would like to run together.
I know the fields has to be the same. (They are)
I know:
SELECT field1,field2, etc
FROM [Name of query]
UNION
SELECT field1,field2, etc
FROM [Name of query];
How do i add the third query?? Do I just repeat the above, for one more...