Oracle LIKE语句

一、Oracle LIKE语句 语法

在 oracle 中,like 条件与 where 子句中使用通配符的 select、insert、update 和 delete 一起使用。它允许模式匹配。

语法:

expression LIKE pattern [ESCAPE 'escape_character' ] 

参数说明:

  • expression:列的名称。
  • pattern:要在表达式中匹配的模式。模式可以是以下之一:
Wildcard Explanation
% 用于匹配字符串
_ 用于匹配单个字符

二、Oracle LIKE语句 示例

表1:

表2:

示例 1

查询: select * from table1 where name like 's%'

示例 2

查询: select * from table1 where name like '22___'

示例 3

查询: select * from table1 where name NOT like 's%'

热门文章

优秀文章