Interview Questions

How would you select all the users, whose phone number is null?

MySQL and SQL


(Continued from previous question...)

How would you select all the users, whose phone number is null?

SELECT user_name FROM users WHERE ISNULL(user_phonenumber);

(Continued on next question...)

Other Interview Questions