|
Posted by Rik Wasmus on 09/01/07 03:00
On Wed, 29 Aug 2007 19:04:31 +0200, Jerry Stuckle
<jstucklex@attglobal.net> wrote:
> giloosh wrote:
>> On Aug 29, 12:20 pm, Jan Thomä <k...@insomnia-hq.de> wrote:
>>> giloosh wrote:
>>>> Would i just loop through the rows that were checked and add them to
>> Thanks Jan.
>> I will do a few SQL tests to see which method is faster.
>>>> the WHERE STATEMENT using the OR condition?
>>>> select * from rows where id = 3 or id = 2 or id = 6 or id = 10
>>> You could try the IN variant like:
>>>
>>> select * from rows where id in ( ?, ?, ?, ?);
>>>
>>> This might be a bit faster than the ORs...
>>>
>>> Best regards,
>>> Jan
>
> You could even ask in a SQL group, since this isn't a PHP question.
Allthough the advice make sense :)
--
Rik Wasmus
My new ISP's newsserver sucks. Anyone recommend a good one? Paying for
quality is certainly an option.
[Back to original message]
|