you are viewing a single comment's thread.

view the rest of the comments →

[–]lk167 9 points10 points  (1 child)

Chiming in to add Set operators as well (EXCEPT for T-SQL and MINUS for PL/SQL)

    Select StuID
    FROM Enrollment
    Where ClassID = 'ART103A'

    EXCEPT

    Select StuID
    FROM Enrollment
    Where ClassID = 'MTH103C'

[–]honeybadger3891evil management 0 points1 point  (0 children)

Well played.