https://www.runoob.com/mysql/mysql-functions.html
https://www.runoob.com/mysql/mysql-operator.html
1. 正则表达式

- 几个实例
select name from users where name REGEXP '^小'; // 查找'小'开头的数据

// 查找名字里面有字母 i 的数据select name from users where name REGEXP 'i';

// 查找名字以 '小'开头或者 存在 'i'的数据select name from users where name REGEXP '^小|i';

