|
>From: Vernon Hamberg [mailto:vhamberg@attbi.com] >Not sure if there's a way to combine the sums in one statement Sure you can: select sum(case when whvarl = 'Y' then whallc else whfldb end) from vern/ffd Also, I would have expected with dummyfile (tempsum) as (select sum(whallc) from x where whvarl='Y' union select sum(whfldb) from x where whvarl<>'Y') select sum(tempsum) from dummyfile to work, but it would appear that the with statement doesn't allow union selects. -Walden ------------ Walden H Leverich III President Tech Software (516) 627-3800 x11 (208) 692-3308 eFax WaldenL@TechSoftInc.com http://www.TechSoftInc.com
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.