基礎14_轉義字符和特殊字符ASCII

1、摘要
spa


PSQL轉義字符

2、PLSQL轉義字符

PLSQL對應的字符和序號關係3d



2、PLSQL特殊字符

PLSQL對應的字符和序號關係code


1. 轉義字符爲' ';orm

    
    
    
    
select * from bxj_test where testchar like 'sdd _%' escaape ' ';
--sdd_kk

2. 轉義字符爲'\';

        
        
        
        
select  *  from  bxj_test  where  testchar  like  'sdd\_%'  escape  '\' ;   
--sdd_kk  
3. 轉義字符爲'=';

        
        
        
        
select  *  from  bxj_test  where  testchar  like  'sdd=_%'  escape  '=' ;
--sdd_kk  

4. 轉義字符爲'/';

        
        
        
        
select  *  from  bxj_test  where  testchar  like  'sdd/_%'  escape  '/' ;
--sdd_kk  

5. 查找包含全部'_'的字段。

        
        
        
        
select  *  from  bxj_test  where  testcharlike '%\_%'  escape  '\' ;
--sdd_kk  

6. 查找含有'%'的全部字段:

        
        
        
        
select  *  from  bxj_test  where  testchar  like  '%\%%'  escape  '\' ;
--dffa%asfs
--1%2345
--1%54321
--2%54321
--%%54321  

7. 是'&'不能經過轉義字符查找,經過ASCII進行裝換

        
        
        
        
select  *  from  bxj_test  where  testchar  like  '%\&%'  escape '\' ;

--ORA-01424: 轉義符以後字符缺失或非法  

select ascii('&') from dual;
--38
select * from bxj_test where testchar like '%'||chr(38)||'%';
--A&B  


Thanks and Regardsblog

2015-05-06 Created By BaoXinjianci



相關文章
相關標籤/搜索