|
When appending fields from multiple tables into one field you wish to combine the following
fields from different tables into the one field.
table#1fields: Name, areas, date
table#2
fields: Name, areas, date
table#3
fields: Name, areas, date
To do this you will need to
build a union select query. You cannot do this in the normal design grid (but
will use the query design grid to start off).
Build a simple SELECT query by
following the query wizard, just adding table#1 and the three fields.
Open this query in Design view
then, on the View tab, select SQL view and the SQL view for the query will open.
It will look like this (or similar):
SELECT table#1.Name,
table#1.areas, table#1.date
FROM table#1;
Copy these two lines of code
and paste beneath;
|