PDA

Click to See Complete Forum and Search --> : 2 queries, 1 recordset


ender_pete
Nov 16th, 2000, 12:46 PM
i want to insert the results of 2 queries into 1 recordset
the queries have all the same fields and stuff...
i just need to know if it is possible so i don't sit here and waste time trying to get it to work.
thanks

Lafor
Nov 16th, 2000, 03:33 PM
select * from tbl1
union
select * from tbl2

paulw
Nov 17th, 2000, 04:44 AM
Don't forget that a UNION query is read-only. If you want to update it, create a temporary table...

Cheers,

P.

ender_pete
Nov 17th, 2000, 06:53 AM
i forgot all about unions
thanks guys