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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:47:49+00:00 2026-06-02T22:47:49+00:00

ok, So the query I would like to solve: I would like to express

  • 0

ok, So the query I would like to solve:

I would like to express the following business rule:

Display the groups (for a particular tutorial (tutorialID) and week (week)) that require additional reviews.

So basically I need to determine the amount of members in a group, I then need to aggregate all the scrum reviews for that week and that group, and see if this amount equals the amount of members in the group. If it does, this means that all members have been reviewed for that week, and therefore does not need to be displayed.

Assumptions: a member can only be reviews once per week.

I’ve tried the following SQL, however I get the following error Subquery returns more than 1 row

SELECT groupName, g.groupId
FROM `student` s, `group` g
WHERE s.GroupId = g.GroupId 
AND s.GroupId IS NOT NULL
AND s.tutorialId =  2
GROUP by s.GroupId
AND s.GroupID = (
    SELECT GroupId
    FROM student
    GROUP BY GroupId
    HAVING  count(*)> (
        SELECT count(*)
        FROM scrumreview r, student s
        WHERE r.reviewee = s.studentID
        GROUP BY GroupId    
        AND r.week = 5
        )
    )

Student
enter image description here

scrumreview
enter asdasddescription here

group
enter image description here

  • 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-02T22:47:51+00:00Added an answer on June 2, 2026 at 10:47 pm

    Your inner query (starting on line 8) returns multiple groupids. The equality operator = compares 1-to-1, but what you want is to compare 1-to-many, which you can do with IN.

    So, to fix this, on line 7 change the code from this…

    AND s.GroupID = (
    

    …to this:

    AND s.GroupID IN (
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i would like to have a query that will solve my problem in native
I would like to do a sql query that would take two views and
I'm building a forum. Now I would like to create a query that returns
Using a FindByAttributes query I would like to get the oldest element out of
I have a MySQL query where I would like it to have a pseudo
I would like to query the mdns database of avahi-daemon through HTTP. Is there
I would like to query the AOT to see if a table name exists
I would like to query the next sentence in Hibernate: from Attribute where tDate
I would like to write nested query with Doctrine; Sample SQL is like below:
I would like to use a SQL query on a CSV file using C#.

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.