Hi, I want to make a union query which adds 2 tables together; but I want it to contain a field which is in one table, but not the other. For entries in the second table, I want the union query to contain a NULL. So, something like this:
SELECT [field1], [field2], [field3]
FROM [table1]
UNION...