Write a query to find a list of invalid email address from a table in MySQL?
SELECT * FROM `customers` WHERE `email` NOT REGEXP '^[^@]+@[^@]+\.[^@]{2,}$';
BY Best Interview Question ON 20 Sep 2022
SELECT * FROM `customers` WHERE `email` NOT REGEXP '^[^@]+@[^@]+\.[^@]{2,}$';