Which query will display only those employees who have been assigned phone code?

A.
Select *
From employees
Where phone_code in (null)
B.
Select *
From employees
Where phone_code <> null;
C.
Select *
From employees
Where phone_code is not null;
D.
Select *
From employees
Where phone_code != null;