Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Як вибрати всі записи з таблиці "customers", які не мають значення в колонці "email" (пусте поле)?
SELECT * FROM customers WHERE email = NULL
SELECT * FROM customers WHERE email IS NULL
SELECT * FROM customers WHERE email NOT EXISTS
SELECT * FROM customers WHERE email = ''
SELECT * FROM customers WHERE email EMPTY
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!