Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

How to handle percent (%) underscore (_) and quotes within SQL LIKE queries

Oracle Database Tips by Donald BurlesonJanuary 8, 2015

Question:  I am getting unexpected results when trying to prefix wildcards (% and _) with an escape character in a LIKE clause.  I also have quotes within the LIKE string, and I need SQL to treat these as literal quotes and not as string terminators.  How does Oracle manage these special characters within SQL queries?

Answer:  Oracle handles special characters with the ESCAPE clause, and the most common ESCAPE is for the wildcard percent sign (%), and the underscore (_).  For handling quotes within a character query, you must add two quotes for each one that is desired.  This will display "Larry's the Man!":

select 'Larry''s the Man!' from dual;

Most Oracle professionals use the UNIX escape character "\" backslash, but you can define any escape character that you desire in SQL*Plus. 

For an example using underscores, this query wants to display all values that contain the string "_to_" (e.g. hard_to_get within a query).  Here, we must escape the underscore:

set escape '\'
select stuff from mytab
where
   mycol like '%\_to\_%';
 
Or:
 
select stuff from mytab
where
   mycol like '%\_to\_%' escape '\';
 
For another example, assume that we want to seek columns that contain a percent sign (%).  Here we must leave the front and % while escaping the middle percent sign:
 
where
   mycol like '%\%%';
 
 
For more details and examples of scripts using escape characters, see these notes:
 
If you like Oracle tuning, you might enjoy my book "Oracle Tuning: The Definitive Reference", with 950 pages of tuning tips and scripts. 

You can buy it direct from the publisher for 30%-off and get instant access to the code depot of Oracle tuning scripts.


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.