Is it possible to do a nested sql select in MySQL?
Ex select * from sometable where id in (select id from anothertable);
David
No, but subqueries (or sub-selects) in MySQL is on the developers "Things that must done in the real near future" list.
Some ways to go around this are described in the manual (chapter 5.4.1)...
/N.B