-- WHERE last_name REGEXP '^field'; -- the last name must start with 'field' -- WHERE last_name REGEXP 'field$'; -- must end with 'field' -- WHERE last_name REGEXP ...