_匹配单个字符

%匹配多个字符

[a-g]匹配a-g中任一字符

[^abcdefg]不匹配其中任一

where name like '%gle'

where name like '_oogle'

where name like '[a-g]oogle'