I am using the following query
SELECT *
FROM people
WHERE email NOT LIKE '%_@__%.__%'
referred from the link to validate the email address.
The query is working fine in all scenarios except when the email
is invalid due to a space.
For example, the query is failing for the following invalid email
address value.
@ .
Can we find the column with space using a Like
statement?