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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:36:51+00:00 2026-05-24T07:36:51+00:00

In my SQl server Sp. `SELECT rating as [Rating],count(id) as [RatingCount] FROM MMBPollResults where

  • 0

In my SQl server Sp.

`SELECT rating as [Rating],count(id) as [RatingCount]
FROM MMBPollResults
where mmb_id = @MMbid
GROUP BY rating 

This SP returns the rating for each user.
i:e rating    ratingcount
`    1           2
     2           1
     5           4

So this means that

2users have rated the transaction with 1star
1 user has rated the transaction with 2stars
4 users have rated the transaction with 5stars

This is how I need the output

rating    ratingcount
`    1           2
     2           1
     3           0
     4           0
     5           4

Sorry, if this is a silly question
Thanks
Sun

  • 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-24T07:36:53+00:00Added an answer on May 24, 2026 at 7:36 am

    You need a table with 1 to 5. This could be a number table or some other rating table.

    Here I use a simple UNION to make a table with 1 to 5

    SELECT 
        List.Rating,
        count(MMB.*) as [RatingCount]
    FROM
        (
        SELECT 1 AS Rating
        UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 UNION ALL SELECT 5
        ) List
        LEFT JOIN
        MMBPollResults MMB ON List.Rating = MMB.Rating AND MMB.mmb_id = @MMbid
    GROUP BY
        List.Rating 
    ORDER BY
        List.Rating;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this subquery works in SQL Server: select systemUsers.name, (select count(id) from userIncidences where idUser
I have this SQL Server query SELECT count(distinct [IP]) as GlobalUniqueIPcount, --RangeUniqueIPcount (SELECT count(distinct
I have the SQL statement (SQL Server ) SELECT COUNT(ActionName) AS pageCount FROM tbl_22_Benchmark
I find this quite odd on Microsoft SQL Server: SELECT * FROM deliveries WHERE
I need report from multi table I use this query (SQL Server) Select CASE
I want write this query in SQL Server from ( select DISTINCT salary from
I have this query in sql server 2000: select pwdencrypt('AAAA') which outputs an encrypted
If I try to run this query in SQL Server 2005: SELECT 1 WHERE
I normally use the following code in SQL Server: IF EXISTS (SELECT * FROM
I need to implement the following query in SQL Server: select * from table1

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.