Student (student_id, student_name, year, GPA) Course (course_id, course_name, credits, dept_id ) Enroll (student_id, course_id, mark, grade)
SELECT stu.student_name FROM Student AS stu, Enroll AS enr
WHERE stu.student_id = enr.student_id AND enr.course_id = "SCS1008" AND enr.mark < 80
ORDER BY stu.student_name;
There use Stu.Student_name.
I want to know from where the stu has come and without any attribute as stu, how to use it.