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

  • Home
  • SEARCH
  • 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 240957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:42:47+00:00 2026-05-11T20:42:47+00:00

I’ve had the same problem with sql for a while and as I sit

  • 0

I’ve had the same problem with sql for a while and as I sit down to write the same ‘brute-force’ hack I always use, I figure there MUST be a more efficient way to do what I want to do.

I have tables similar to this:

grades(gradeID, taskID, grade, username, date)
tasks(taskID, task...)
assignment(assignmentID, title...)
assignment_tasks(assignmentID, taskID)
assignment_students(assignmentID, username)
students(username, forename...)

the last 5 tables are pretty static, set up once and mostly left alone.

for the grades table, a new record is created every time a new grade is entered for a task.

I want to produce a summary table for an assignment, which might consist of say, 5 tasks and each student may have any number of grades for each task, with the most recent one being the one I want to display in the summary.

What I’d normally do is query a list of students, and a list of assignment tasks, then build a giant nested for loop looping through each task for each student, querying the most recent grade for each, so assuming 30 students, 5 tasks, that’s 152 queries, which has always struck me as waaay too many.

I figure (hope) I have a horribly embarrassing gap in my sql knowledge and there’s a much cleverer way to do it.

Edit:
Thanks for the answer – I’m still working on building the actual database so I can test it, but I suspect that the answer below doesn’t cover the following issues:

if a student hasn’t attempted a task/assignment, there won’t be any entries for them in the grades table but they still need to show in the summary table with a default grade for each task (“u”). I think this bit makes it harder.

Edit again:
I have the embryo database now and it works in that I get a list of most recent grades with gaps where there’s no grade. Transposing that list is now the subject of another question!

  • 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-11T20:42:47+00:00Added an answer on May 11, 2026 at 8:42 pm
    SELECT  tasks.*, students.*,
            (
            SELECT  grade
            FROM    grades
            WHERE   grades.task_id = tasks.task_id
                    AND grades.username = students.username
            ORDER BY
                    date DESC
            LIMIT 1
            ) AS lastgrade
    FROM    assignments a
    JOIN    assignment_tasks at
    ON      at.assignmentID = a.assignmentID
    JOIN    assignment_students ast
    ON      ast.assignmentID = a.assignmentID
    JOIN    tasks
    ON      tasks.task_id = at.task_id
    JOIN    students
    ON      students.username = ast.username
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 220k
  • Answers 220k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Dictionary to Element: Dictionary<string, string> dict = new Dictionary<string,string>(); XElement… May 12, 2026 at 11:53 pm
  • Editorial Team
    Editorial Team added an answer SELECT TOP 1 t_DATA_CashiersChecksIssued.ControlNbr, t_DATA_CashiersChecksIssued.Audit_DateAdded, t_DATA_CashiersChecksIssued.BatchNbr, t_DATA_CashiersChecksIssued.SerialNbr, t_DATA_CashiersChecksIssued.CheckRTN, t_DATA_CashiersChecksIssued.CheckAccountNbr, t_DATA_CashiersChecksIssued.Amount,… May 12, 2026 at 11:53 pm
  • Editorial Team
    Editorial Team added an answer I believe your instinct is correct but your mistake is… May 12, 2026 at 11:53 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS
I want use html5's new tag to play a wav file (currently only supported

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.