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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:39:50+00:00 2026-06-16T03:39:50+00:00

I want to display data like such where I am GROUP on DATE :

  • 0

I want to display data like such where I am GROUP on DATE:

Date        Star1   Star2   Star3   Star4   Star5
2012-10-25  null    null    null     1       1

My Current table has three (3) columns, displays:

ID DATE        RATING
5  2012-10-25    4
6  2012-10-25    5

I am using this query to try to achieve the above data:

SELECT 
    DATE,
    CASE
        WHEN RATING = 1 THEN 1
        ELSE NULL
    END AS STAR1,
    CASE
        WHEN RATING = 2 THEN 1
        ELSE NULL
    END AS STAR2,
    CASE
        WHEN RATING = 3 THEN 1
        ELSE NULL
    END AS STAR3,
    CASE
        WHEN RATING = 4 THEN 1
        ELSE NULL
    END AS STAR4,
    CASE
        WHEN RATING = 5 THEN 1
        ELSE NULL
    END AS STAR5
FROM
    table1
WHERE
    DATE = '2012-10-25'
GROUP BY DATE
ORDER BY DATE

This only spits out one rating tho:

Date        Star1   Star2   Star3   Star4   Star5
2012-10-25  null    null    null    null      1

Its like it is not GROUPing on Date, how can I achieve this?

  • 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-16T03:39:51+00:00Added an answer on June 16, 2026 at 3:39 am

    It’s a bit surprising that MySQL allows such a query, since the GROUP BY doesn’t cover all the non-aggregated columns in your SELECT list.

    If you wrap your CASE statements into counts, then I think you’ll end up with what you want:

    SELECT 
        DATE,
        COUNT(CASE
            WHEN RATING = 1 THEN 1
            ELSE NULL
        END) AS STAR1,
        COUNT(CASE
            WHEN RATING = 2 THEN 1
            ELSE NULL
        END) AS STAR2,
        COUNT(CASE
            WHEN RATING = 3 THEN 1
            ELSE NULL
        END) AS STAR3,
        COUNT(CASE
            WHEN RATING = 4 THEN 1
            ELSE NULL
        END) AS STAR4,
        COUNT(CASE
            WHEN RATING = 5 THEN 1
            ELSE NULL
        END) AS STAR5
    FROM
        table1
    WHERE
        DATE = '2012-10-25'
    GROUP BY DATE
    ORDER BY DATE
    

    Please let me know how you do with that approach.

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

Sidebar

Related Questions

I want display data from database in Listbox...Here is my code, It is not
I want to display data in two columns as below Entry 1 Entry 2
I want to display data in a tabular form using <ul> and <li> as
I want to display data feed from an external database in a sidebar in
I want to display data from database in DataGridView...This is my code...Its not working...Can
I have multiple SharePoint lists and want to display data from them on to
I have asp:DropDownList control which i want to display data to user who don't
On one of our Java application screens, we want to display data loaded from
I want to display the data per user. But it displays all the data
I want to display the data retrieved from the JSP page in my List.

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.