DNH (Visitor) Jan 24, 2001
I have a one to many relationship, where one student may have more than one class. I would like to send each student a list of the classes they are taking for verification.
I ran this query:
SELECT DISTINCT student_id, course_name
FROM Student
GROUP BY student_id...
I have a one to many relationship, where one student may have more than one class. I would like to send each student a list of the classes they are taking for verification.
I ran this query:
SELECT DISTINCT student_id, course_name
FROM Student
GROUP BY student_id;
and here is part of the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.