案例
方法一:
select * from goods where name REGEXP "8"
方法二:
select * from goods where name like '%8%'
解析:从goods表中查找name字段中包含数字8的所有元组
案例
方法一:
select * from goods where name REGEXP "8"
方法二:
select * from goods where name like '%8%'
解析:从goods表中查找name字段中包含数字8的所有元组