The general idea is that fields in different tables have exactly the same
name, I suppose.
The field *names* can be the same or different, it makes no
difference. However you must have the same number of total fields, and
they must match in datatype and size: that is if you select a Long
Integer Number, a Text, and a Date in one of the SELECT clauses of the
UNION, you must select a Long Integer Number, a Text, and a Date in
each of the SELECTs.
Any idea why there is no graphical interface to create unionquery's?
They're an uncommonly used and rather advanced technique. The query
grid is simply a user friendly tool to create SQL strings; the SQL is
"the real query". Since a UNION query can be quite complex (you could
have a dozen tables with different fieldnames and criteria) and since
most uses of a UNION presuppose that you're intentionally using an
advanced tool, the GUI interface would be more trouble to build and
use than it would be worth - or so I read Microsoft's attitude.
John W. Vinson[MVP]