自己创建了一个Student表然后按照自己所学的总结一下这几个通配符的语法。
--查询所有姓"王"学生的姓名,性别,班级
--1.'%'的使用:代表0个或多个字符
select Sname ,Ssex , class from student where sname like '王%';
--查询名字第二个字为"芳"学生的姓名,性别,班级
--1.'_'的使用:代表一个字符
select Sname ,Ssex , class from student where sname like '_芳%';
--查询名字姓"李"或者"王"学生的姓名
--1.'[]'的使用:表示在某一范围的字符
select Sname ,Ssex , class from student where sname like '[王,李]%';
--查询姓"李"且名字为三个汉字的学生姓名
--1.'[^]'的使用:表示不再某一范围的字符
select Sname ,Ssex , class from student where sname like '李_[^]';
(ps:%号另外讲解)