Underscore: The Other SQL Wildcard Used For Single Characters

Read Time:1 Min, 17 Sec

Well, somewhere in the many years that I have been working with and writing SQL statements I missed something very useful that can be used as a wildcard for a single character: the underscore (_).

Yep, that’s right. The underscore can be used in a “where like” clause as a wildcard for a single character.

It works like so:

 SELECT * FROM OL910.F9860 WHERE SIOBNM LIKE '_55%'

Ranges can also be specified in a “where like” clause.

Wildcard character Description Example
% Any string of zero or more characters. WHERE title LIKE ‘%computer%’ finds all book titles with the word ‘computer’ anywhere in the book title.
_ (underscore) Any single character. WHERE au_fname LIKE ‘_ean’ finds all four-letter first names that end with ean (Dean, Sean, and so on).
[ ] Any single character within the specified range ([a-f]) or set ([abcdef]). WHERE au_lname LIKE ‘[C-P]arsen’ finds author last names ending with arsen and starting with any single character between C and P, for example Carsen, Larsen, Karsen, and so on. In range searches, the characters included in the range may vary depending on the sorting rules of the collation.
[^] Any single character not within the specified range ([^a-f]) or set ([^abcdef]). WHERE au_lname LIKE ‘de[^l]%’ all author last names starting with de and where the following letter is not l.

source: msdn

UPDATE: 5-28-2015

What if our “where clause” string contains an underscore?

 SELECT * FROM TABLE WHERE COLUMN LIKE 'some[_]string%'

Author

Stewart Schatz

Career: Principal CNC Consultant for Syntax Systems Limited specializing Oracle JD Edwards EnterpriseOne and the technology that supports it. Side Hustle: Owner/Operator of E1Tips.com Location: Lancaster, PA USA  What I like to do: Invest in Family, Explore Technology, Lead Teams, Share Knowledge/Experience, Hunt, Hike, etc.
Happy
Happy
0
Sad
Sad
0
Excited
Excited
0
Sleepy
Sleepy
0
Angry
Angry
0
Surprise
Surprise
0

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Previous post How To Include Third Party Or Custom JAR files In BSSV
Next post EnterpriseOne UBE Runtime Performance Audit