I have a MySQL database with these two tables:
Tutor(tutorId, initials, lastName, email, phone, office)
Student(studentId, initials, lastName, email, tutorId)
What is the query to return the initials and last names of any student who share the same tutor?
I tried SELECT intials, lastName FROM Student WHERE tutorId = tutorId
but that just returns the names of all students.