Forum OpenACS Q&A: speed - how many tables to query at once?

Supposing that I want to select data out of 6 different tables for one
dynamic page. Would the select be performed quicker if I do it within
one single query or should I query certain things on their own?
Collapse
Posted by MaineBob OConnor on
I've done multiple separate selects on one table and also
I've done one huge select on the one table and the huge
select seems quite faster....  This is anecdotal.  I didn't do
a controlled timed comparison... and the selects were different.

-Bob

Collapse
Posted by Don Baccus on
Most of the time querying at once should be faster, as Bob's testing
suggests.