select name,email from t where email REGEXP "@163[.,]com$";
==
select name,email from t where email like "@163%.com" or "@163%,com"
select name,email from t where email REGEXP "@163[.,]com$";
==
select name,email from t where email like "@163%.com" or "@163%,com"