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 7018267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:01:28+00:00 2026-05-27T23:01:28+00:00

I am using SQL Server 2008 I am trying to tally the wins and

  • 0

I am using SQL Server 2008

I am trying to tally the wins and losses for any given bike. Each time a user votes, he casts a vote for one bike (1) and a vote against another bike (0).

My vote table looks like this:

VoteID --- BikeID ---- Vote
1          100         1
2          101         0
3          100         0
4          101         1
5          102         1
6          100         0
7          102         0
8          101         1

I want my results to look like this when I run a query for a specific bike

Wins -- Losses
5       6

Right now, my results look like this:

Wins --- Losses
5        NULL
NULL     6   

My query looks like this:

SELECT  SUM(CASE WHEN Vote = 1 THEN 1 END) AS Wins,
    SUM(CASE WHEN Vote = 0 THEN 1 END) AS Losses
FROM     Votes
WHERE    BikeID = 101
GROUP BY Vote

What do I need to do to get the results on one line?

  • 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-05-27T23:01:28+00:00Added an answer on May 27, 2026 at 11:01 pm
    SELECT  SUM(CASE WHEN Vote = 1 THEN 1 ELSE 0 END) AS Wins,
        SUM(CASE WHEN Vote = 0 THEN 1 ELSE 0 END) AS Losses
    FROM     Votes
    WHERE    BikeID = 101
    

    The problem is your case statements did not cover all conditions, and so were returning null for the cases where they did not account for.

    Also, you did not need the group by vote, since you aren’t actually selecting the vote outside the aggregates.

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

Sidebar

Related Questions

Using SQL Server 2008 and any available features of TSQL, I am trying to
I'm using SQL Server 2008 (non-R2) and trying to use Report Builder 3.0. When
I am using SQL Server 2008 developer edition. I was trying to attach the
I am using SQL Server 2008 & 2005 (Express). I'm trying to extract part
I've just installed SQL Server 2008 Developer edition and I'm trying to connect using
I'm trying to export records from SQL Server 2008 to mdb file using OpenDataSource.
I'm trying to setup the Entity Framework with SQL Server 2008. I'm using Guids
Using SQL Server 2008 Reporting services: I'm trying to write a report that displays
Using SQL Server 2008, I am trying to do something similar to this post
I am using SQL Server 2008. I am trying to do some basic math

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.