Computer Science, asked by pawandiwate123, 4 months ago

Command used to display all the
rows where the city column is not
empty.
SELECT * FROM dept WHERE city =
O
O
SELECT * FROM depi WHERE city =
'EMPTY
O
SELECT * FROM dept WHERE city IS
NOT NULL;
O
SELECT * FROM dept WHERE city IS
NULL;​

Answers

Answered by hanockgamer611
8

Answer:

SELECT * FROM dept WHERE city IS

SELECT * FROM dept WHERE city ISNULL;

Similar questions