In general, which is more expensive? A double-nested for loop and one call to a database or a call to a database for each of N items in only one for loop?
Not looki
If you are going to process every item, just make one call unless it would use an outrageous amount of memory.