Can't figure out why ORDER BY within a nested select statement doesn't work... For example:
A normal select order by statement works fine:
select id from posts where zid=5 order by id desc;
but a nested select order by statement does not work?:
select id from posts where zid in (select id from zids where qid=57 order by id desc);
Is it not allowed? It doesn't produce any errors, but changing from ASC & DESC changes nothing...