List the student number, subject code, year, and the term of the students who register to only ONE subject in 2012 session 3.
SELECT StudentNum, RSubjectCode, Year, SessionTerm
FROM <TABLE>
WHERE Year ='2012'
AND SESSIONTERM = '3';
This selects everyone from year 2012 and session 3. How do I only find out the student who registered ONE subject only?