Subject | Re: Request new feature - better perfomance |
---|---|
Author | |
Post date | 2014-10-20T19:18:37Z |
Try this one:
select x.* from (
select something, anotherthing,
(select sum(thirdthing) from second b where b.something = a.something) total
from a
) x where x.total > 10