Need help creating a simple sql query

I need to search for a specific domain name is part of a random generated email that has been put into a SQL database. So an email address in one record may be jim123432@invalid.com and the next frank95434@invalid.com and so on. They will all have the invalid.com in common. So if i can search the table in this column for emails that have “invalid.com” in the email address and then I want to set that field to NULL.

i think I have part of it figured out but I need help with the last part. if not, I am open for the correct way to do this.

UPDATE q2gbj_users SET email = null WHERE (need help with this part)

Many thanks,
Houston

WHERE email LIKE '%invalid.com'

Thank you sir. Worked like a charm.

Many thanks,
Houston