Re: Multiple AND on many-many-table.

2001-02-07 Thread Bob Hall
>Bob Hall wrote: > > > > >I want to do a select like > > > > > >select id from test > > >where id in (select id from test where value in (1,2,3) > > >and id in (select id from test where value in (4,6,7) > > >and id in (select id from test where value in (1,6,25) > > > > Even if MySQL sup

Re: Multiple AND on many-many-table.

2001-02-06 Thread Steve Ruby
Bob Hall wrote: > > >I want to do a select like > > > >select id from test > >where id in (select id from test where value in (1,2,3) > >and id in (select id from test where value in (4,6,7) > >and id in (select id from test where value in (1,6,25) > > Even if MySQL supported subqueries, this qu

Re: Multiple AND on many-many-table.

2001-02-06 Thread Bob Hall
>Does anybody know what is the fastest way to run a large multiple >AND type query on a many-many table and the least memory hungry. Sir, what is a type query, and what in the world is a many-many table? >For example if I have >create table test (id int, value int); > >which has many-to-many

Re: Multiple AND on many-many-table.

2001-02-05 Thread Steve Ruby
Steve Ruby wrote: > > Does anybody know what is the fastest way to run a large multiple > AND type query on a many-many table and the least memory hungry. > > For example if I have > create table test (id int, value int); > > which has many-to-many on id, and value > > I want to do a selec

Multiple AND on many-many-table.

2001-02-05 Thread Steve Ruby
Does anybody know what is the fastest way to run a large multiple AND type query on a many-many table and the least memory hungry. For example if I have create table test (id int, value int); which has many-to-many on id, and value I want to do a select like select id from test where id