Home > Database > Mysql Tutorial > #ORACLE 每日一点# ESCAPE用法

#ORACLE 每日一点# ESCAPE用法

WBOY
Release: 2016-06-07 15:26:32
Original
1493 people have browsed it

作用:escape关键字经常用于使某些特殊字符,如通配符:'%','_'转义为它们原来的字符的意义, 被定义的转义字符通常使用'\',但是也可以使用其他的符号(字母数字也可)。 SQL SELECT * FROM emp WHERE ename LIKE 'a%%' ESCAPE 'a'; EMPNO ENAME JOB MGR HIR

作用:escape关键字经常用于使某些特殊字符,如通配符:'%','_'转义为它们原来的字符的意义,

           被定义的转义字符通常使用'\',但是也可以使用其他的符号(字母数字也可)。

 

SQL> SELECT *  FROM emp WHERE ename LIKE 'a%%' ESCAPE  'a';
 
EMPNO ENAME JOB    MGR HIREDATE       SAL      COMM DEPTNO
----- ---------- --------- ----- ----------- --------- --------- ------
 7935 %CC  CLERK  7782 7/11/2012   1200.00               20

 

ESCAPE 'a' 将通配符%转义字符

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template