Forum Moderators: open
What I can't figure out is whether or not I can query the database once with all the IDs, retrieving all the data in one swoop, then parsing it up from there, or if I have to run a seperate query for each item. It's really not that big a deal if it has to be one at a time, but obviously I'd rather err on the side of efficiency if possible.
Say, for example, my user has selected the following ids:
id=2
id=16
id=93
id=102
Can anyone elighten me about syntax I can use in my SELECT query to retrieve all the corresponding rows in one query? Is this even possible?
Thanks in advance,
cEM