Case Sencative Search in oracle using like

The LIKE conditions specify a test involving pattern matching. Whereas the equality operator (=) exactly matches one character value to another, the LIKE conditions match a portion of one character value to another by searching the first value for the pattern specified by the second. LIKE calculates strings using characters as defined by the input character set…


select * from CR_CLIENT_INFO
where REGEXP_LIKE (CI_CLIENT_NAME,’KHAI’,'i’)

1.’i’ specifies case-insensitive matching.
2.’c’ specifies case-sensitive matching.
3.’n’ allows the period (.)

3 Responses to “Case Sencative Search in oracle using like”

  1. jNMSho The Author is crazy!!!

  2. 32Y6un Right from this article begin to read this blog. Plus a subscriber:)))

  3. Dkz9Io I must admit, the webmaster has written cool!!!

Leave a Reply

You must be logged in to post a comment.