To have students (student_id, course_id, course_name) who take exactly only one course, using a simple SQL statement with no sub-query and no join at all
student_id course_id course_name
---------------------------------------------
1 1000 'CS 101'
2 1000 'CS 101'
1 2000 'CHEM 200'
2 3000 'ENG 211'
3 1000 'CS 101'
4 5000 'Bio 400'
Any one please me on this. Tried many approaches but couldn't get the answer without sub query.