0

I have this table:

enter image description here

I need to count every row where tblEventID is 32. So the result will be 3. (easy aggregate function):

SELECT COUNT(status) FROM ... 

BUT:

I need to also add the value in column plusOnes to the overall.

So the result must be 3 (count) + 2 + 2 + 0 = 7.

Meaning I have to look at each row individually, add the value from plus one and in the end add the total count.

How is this achieved?

1 Answer 1

1

You can achieve this by adding the count of rows, and the sum of plusOnes together

SELECT COUNT(status) + SUM(plusOnes) FROM ...
Sign up to request clarification or add additional context in comments.

1 Comment

Hey, thats easy! Didnt think it was gonna be just these few lines. Awesome!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.