Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link SQL Related Articles: Select with SUM 2002-12-04 -- Ray Goudie Newsgroups: comp.lang.clarion
How about using the following:
---
SELECT CmpID, sum(case when Amt > 0 then Amt end) AS Debits,
sum(case when Amt < 0 then Amt end) AS Credits,
sum(case when Amt = 0 then Amt end) AS ZeroAmts
FROM GLFINAN
GROUP BY CmpID
---
-Ray.
"Ben Kim (Vertical Dimensions, Inc.)"
Today is November 21, 2024, 6:50 am This article has been viewed 35223 times. Google search has resulted in 21 hits on this article since January 25, 2004.
|
|