like操作符

百分号%通配符

表示任意字符出现任意次数

1
select title from passage where content like 'tom cat%'

匹配以tom cat开头的内容,接受tom cat之后的任意字符,不管它有多少字符

通配符可以在搜索模式中任意位置使用

1
select title from passage where content like '%jerry%';

null无法用通配符匹配

下划线_通配符

_通配符只能匹配一个字符

使用通配符的技巧

  • 不要过度使用通配符
  • 尽量不要在开头处使用通配符
  • 注意通配符的位置