SQL字符匹配

Posted on 2022-06-19 15:04  foghorn  阅读(1038)  评论(0编辑  收藏  举报

一般形式

列名 [not] like 'str'

匹配串可以是以下四种通配符:

  • 单下划线 _:匹配任意一个字符;
  • %:匹配0个或多个字符;
  • [ ]:匹配[ ]中的任意一个字符(若要比较的字符是连续的,则可以用连字符“-”表 达 );
  • [^ ]:不匹配[ ]中的任意一个字符。

例1

查询学生表中姓‘张’的学生的详细信息。
select * from table where name like '张%'

例2

查询姓“张”且名字是3个字的学生姓名。
select * from table where name like '张__'

例3

查询学生表中姓‘张’、姓‘李’和姓‘刘’的学生的情况。
select * from table where name like '[张李刘]%'

例4

查询表中名字的第二个字为‘小’或‘大’的学生信息。
select * from table where name like '_[小大]%'

例5

查询表中所有不姓‘刘’的学生信息。
select * from table where name not like '刘%'

例6

查询学号的最后一位不是2、3、5的学生信息。
select * from table where stu_no like '%[^235]'

Copyright © 2025 foghorn
Powered by .NET 9.0 on Kubernetes