Consider the following SQL code snippet. Which special WHERE operators can be used instead of the current operator to achieve the same result and handle NULL values?
SELECT * FROM Employees WHERE department = 'Sales' OR department = 'Marketing' OR department IS NULL;