you need to display all the rows in the employees table that contain a null value in the department_id column. which comparison operator should you use
Answers
Answered by
0
select * from employees where dept_id IS NULL
Similar questions