shteev
Programmer
- Jul 15, 2003
- 42
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
SELECT [field1], [field2], [just have a load of NULL fields]
FROM [table2]
Is this possible?
SELECT [field1], [field2], [field3]
FROM [table1]
UNION
SELECT [field1], [field2], [just have a load of NULL fields]
FROM [table2]
Is this possible?