Instead of running one query for each user with the queries are different from each other on the 'WHERE' part like:
... WHERE user.userid = '12'
... WHERE user.userid = '222'
... WHERE user.userid = '109'
you can combine them all into one query by using ... WHERE user.userid IN ('12', '222', '109')
I'm not sure where the queries came from but if they were introduced by a mod you've installed, it's better to contact the mod creator to fix the queries. seriously, mod coders should always think about optimization at all time when coding their mods.
|