Subject | Fw: [firebird-support] Request new feature - better perfomance |
---|---|
Author | Virna Constantin |
Post date | 2014-10-20T04:37:37Z |
Maybe I was not clear as I should be but here is an example in Firebird:select something,anotherthing,(select sum(thirdthing) from second b where b.something = a.something) total from a where(select sum(thirdthing) from second b where b.something = a.something) > 10tray sentence:select a.someting, a.anotherthing, b.totalfrom first a inner join (select someting,sum(thirdhing) as totalfrom second group by someting ) b on a.someting=b.sometingwhere b.total>10