1 % 通配符,可匹配任意长度的字符
查询 course_name 以 python 开头的记录

查询 course_name 包含"爬虫"的记录

2 _ 通配符,一次只能匹配任意一个字符
查询 course_name 以 python 开头,并且 python 后只有 2 个字符的记录

好帮手慕燕燕 ·
更新于 2022-04-17
查询 course_name 以 python 开头的记录

查询 course_name 包含"爬虫"的记录

查询 course_name 以 python 开头,并且 python 后只有 2 个字符的记录
