There are three tables, Students, Classes, Student_Class
Is it possible to select students who are not registered in any classes without using NOT IN?
e.g. Select studentname from Students Where studentid NOT IN (Select Distinct studentid From Student_Class)