Technical Publications

[5]SELECT lastname, firstname, classnumFROM Student s NATURAL JOIN Enroll e [FROM student s, enroll c]WHERE s.major = ‘Math’[AND s.stuid = e.stuid] – if didn’t use NJ Get a table of all faculty, their names and the number of courses they each teach (need to outer join and group by). ................
................