I have several queries which are identical in structure and use the same
field names except for one field that uses an expression (the expression is
what makes the queries different).
How would I create another query that combines these queries back together
again?
Cheese - 17 Sep 2007 00:44 GMT
One more thing...
I would like to accomplish this (if possible) without creating new tables or
appending records.
tina - 17 Sep 2007 01:44 GMT
suggest you read up on Union queries in Access Help, to see if that will
suit your purpose.
hth
> One more thing...
>
> I would like to accomplish this (if possible) without creating new tables or
> appending records.
Pieter Wijnen - 17 Sep 2007 08:15 GMT
SELECT A.* FROM Query1 A
UNION ALL
SELECT A.* FROM Query2 A
etc
Pieter
> One more thing...
>
> I would like to accomplish this (if possible) without creating new tables
> or
> appending records.
CompGeek78 - 17 Sep 2007 03:56 GMT
> I have several queries which are identical in structure and use the same
> field names except for one field that uses an expression (the expression is
> what makes the queries different).
>
> How would I create another query that combines these queries back together
> again
Why not just make one query that has all of the expressions in the
same query instead of many queries?