maw230
12-28-2009, 05:37 AM
does anyone know if its faster to append a query to a table, then query that table, or to just query the first query with another?? it seems like the append process is taking a while and i wondered if i should just save that for the final query..
pbaldy
12-28-2009, 09:26 AM
If I'm understanding correctly, I would just query the first query with another, not put the records in a table. There might be rare circumstances where the calculations or whatever in the first made it more efficient to put those records in a table first, but generally query on query would be better.
maw230
12-28-2009, 10:37 AM
thanks, that's what i was looking for