Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9066483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T16:44:33+00:00 2026-06-16T16:44:33+00:00

I got stuck in a scenario where I need to add columns from two

  • 0

I got stuck in a scenario where I need to add columns from two rows after using GROUP BY.
My query goes as:

select AcctId,DC,sum(TrnAmt) from TableId
group by AcctId,DC
order by AcctId,DC

Result:-

VcrAcctId      DrCr  SumTranAmt
51            C    37469
51      D      37000

My expected result is:

VcrAcctId      Actual
51     37469-37000

How can I get my expected result in the same query?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T16:44:33+00:00Added an answer on June 16, 2026 at 4:44 pm

    Based on discussion in the comments I think you need

    SELECT AcctId,
           Sum(CASE DC
                 WHEN 'C' THEN TrnAmt
                 WHEN 'D' THEN -TrnAmt
                 ELSE 0
               END) AS DC
    FROM   TableId
    GROUP  BY AcctId
    ORDER  BY AcctId 
    

    If in fact you do want the credits and debits split out you can use

    SELECT AcctId,
           Sum(CASE
                 WHEN DC = 'C' THEN TrnAmt
                 ELSE 0
               END) AS C,
           Sum(CASE
                 WHEN DC = 'D' THEN TrnAmt
                 ELSE 0
               END) AS D
    FROM   TableId
    GROUP  BY AcctId
    ORDER  BY AcctId 
    

    You could cast the SUM expressions to varchar and concatenate them to get the results shown in the question if that is what is actually needed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got stuck with the following scenario like I have two timers. If user
Got stuck here: http://jsfiddle.net/UFkg8/ Right now the animation is top-down. What do I need
I got stuck with this problem. I wrap two tables inside of a h:form.
I've got a little problem using UIDeviceOrientationDidChangeNotification. After I leave a certain ViewController (the
I got stuck in a scenario where I am selecting average of each column
I got stuck with this scenario. Let me explain as follows. I have a
I've got a bit of a complex scenario that I'm stuck on trying to
Got stuck and need some help, This should be relatively simple but it's been
I've got a scenario where I need to do a join across three tables.
I got two classes User and Role which are mapped to each other using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.