I am trying to validate email addresses in my google bigquery table. I am using following query to do that but bigquery is throwing an error. I am not sure what is wrong in my code. I found the regex for validation on below story:- What characters are allowed in an email address?
select email
FROM my table
WHERE REGEXP_CONTAINS(email, regex)
here regex is the