码迷,mamicode.com
首页 > 其他好文 > 详细

特殊字符

时间:2017-04-30 12:46:19      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:key   div   sql   转义符   sel   定义   字符   keyword   psi   

select q‘a字符串a‘ from dual
q‘ 单引號转义符。a能够随意字符。完整输出字符串.


定义:escapekeyword经经常使用于使某些特殊字符,如通配符:‘%‘,‘_‘转义为它们原

来的字符的意义,被定义的转义字符通常使用‘\‘,可是也能够使用其它的符号。

实例:

SQL> select * from t11 where name like ‘%_%‘;

NAME
----------
aa_a
aaa
SQL> select * from t11 where name like ‘%\_%‘ escape ‘\‘;

NAME
----------
aa_a

注意:假设是 ‘/‘ 作为检索字符, 必须 用 ‘/‘ 作为转义符, 正斜扛也一样.
select * from wan_test where psid like ‘%//%‘ escape ‘/‘;

select * from
(select ‘a%‘ s from dual
union all
select ‘ab‘ s from dual)
where s like ‘a\%‘ escape ‘\‘

特殊字符

标签:key   div   sql   转义符   sel   定义   字符   keyword   psi   

原文地址:http://www.cnblogs.com/claireyuancy/p/6788974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!