G
Guest
I have mutiple queries (ie. Query1a, Query1b...QueryFinal) where QueryFinal
connects Query1a and 1b together. I want to be able to do this all in one
query if possible. The only way to do this (I believe) is to go into the SQL
View and build subqueries
Does anyone know a good site explaining this? I know it should look
something like this:
Select A.Field, B.Field
(
Select .... Query1a stuff
(.....
)A
Select .... Query2a stuff
(.....
)B
)
GROUP BY...
connects Query1a and 1b together. I want to be able to do this all in one
query if possible. The only way to do this (I believe) is to go into the SQL
View and build subqueries
Does anyone know a good site explaining this? I know it should look
something like this:
Select A.Field, B.Field
(
Select .... Query1a stuff
(.....
)A
Select .... Query2a stuff
(.....
)B
)
GROUP BY...