How would you select all the users whose phone is null MySQL?
SELECT id, name FROM users WHERE phone IS NULL;
BY Best Interview Question ON 11 Mar 2020
SELECT id, name FROM users WHERE phone IS NULL;