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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:05:23+00:00 2026-05-27T14:05:23+00:00

I have a problem with the SUM(tblReview.GradePoint) I get 6 as result for GroupID

  • 0

I have a problem with the SUM(tblReview.GradePoint) I get 6 as result for GroupID Ballon because I have three products with GroupID Ballon, but I want the result to be 2 because there is only one review with that groupID in tblReview, how can I do that?

SELECT      Product.GroupID,
            max(Product.ProductID) as ProductID,
            max (Product.BrandID) as BrandID,
            max (Product.Year) as Year,
            max (Product.Name) as Name,
            max (tblBrand.BrandName)as BrandName,
            SUM(tblReview.GradePoint) as GradePoint

FROM        Product INNER JOIN
            tblBrand ON Product.BrandID = tblBrand.BrandID LEFT OUTER JOIN
            tblReview ON Product.GroupID = tblReview.GroupID

GROUP BY Product.GroupID


HAVING COUNT(distinct Product.GroupID) = 1

ORDER BY GradePoint DESC

Product
ProductID   GroupID     BrandID
--------------------------------------
 1          Ballon      10
 2          Ballon      10
 3          Ballon      10
 4          Ball        21
 5          Ball        21
 6          Chess       2
 7          Chess       2
 8          Hat         30


tblReview    
ProductID   GroupID     GradePoint
------------------------------------------
 2           Ballon     2
 4           Ball       1
 5           Ball       1
 5           Ball       1
 6           Chess      -1
 8           Hat        1


tblBrand    
BrandID     ProductID
-----------------------
 10         1
 10         2
 10         3
 21         4
 21         5
 2          6
 2          7
 30         8
  • 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-27T14:05:23+00:00Added an answer on May 27, 2026 at 2:05 pm

    Try this:

    SELECT      Product.GroupID,
                max(Product.ProductID) as ProductID,
                max (Product.BrandID) as BrandID,
                max (Product.Year) as Year,
                max (Product.Name) as Name,
                max (tblBrand.BrandName)as BrandName,
                max(tblReview.GradePoint) as GradePoint
    
    FROM        Product INNER JOIN
                tblBrand ON Product.BrandID = tblBrand.BrandID LEFT OUTER JOIN
                (SELECT GroupID, SUM(GradePoint) GradePoint FROM tblReview GROUP BY GroupID) tblReview ON Product.GroupID = tblReview.GroupID
    
    GROUP BY Product.GroupID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well I have a little problem. I want to get the sum of all
I have a problem with this query trying to get a sum and a
I have small problem. What I want to achieve is adding sum of values
I have a problem with an SQL query. SELECT SUM(table_colum) AS value, SUM(value *
I have problem SIMILAR to preventing form data reposting, but not quite the same
I have problem about program to find the sum of 10 numbers in an
I have a problem with a MySQL statement: select sum(x) as sum, 01.06.2010 as
I have a problem with the following HQL query: select sum(MYTABLE.COUNTER) from ( select
I met a problem with sum function: the data have a datetime column and
this is a solution for the subset sum problem. It uses backtracking. I have

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.