I have four different tables
class(classID, className)
person(personID, name)
schedule(personID, classID)
enrollment(personID, grade)
What is the easiest way to get each distinct column in one table? I understand that I would start with enrollment, get the personID and grade, add them to the result table, then use the personID to get the name as well as the classID, and then use the classID to get the className. I just don't know exactly how to do that.