How I do select specific records using regular expressions?
Yes, MySQL does support regular expressions. And it also has a much simpler method where by you can select records that contain the string you’re seeking. You do this by using either the LIKE or RLIKE clause. To select records using the LIKE clause, you pad the value with a % sign on each side to act as a wildcard.