Oracle Tutorial

What is Oracle
SQL Keywords

Oracle Wildcards

Oracle Wildcards

Oracle Aliases

Oracle Aliases

MySQL Tutorial

MySQL Tutorial

PL/SQL Tutorial

PL/SQL Tutorial

Oracle Interview Questions

Oracle Interview Questions and Answers


Oracle Wildcard Characters

Oracle support wildcard character to simulate any other character(s) in a string. Usually wildcard characters are used with the LIKE operator and LIKE operator is used in a WHERE clause to search for matching patter in string.

Note: Two type of wildcards are used in conjointment with the LIKE operator:
% - The percent sign perform 1 or more characters
_ - The underscore perform a one character

Here are some examples showing different LIKE operators with '%' and '_' wildcards:

LIKE OperatorDescription
WHERE Address LIKE 'c%'Finds field values starts with "c"
WHERE Address LIKE '%c'Finds field values ends with "c"
WHERE Address LIKE '%and%'Finds field values that have "and" in any position
WHERE Address LIKE '_2%'Finds field values that have "2" in the second position
WHERE Address LIKE 'c%z'Finds Finds values that starts with "a" and ends with "z"

Oracle Using % (percent) wildcard Example 1

The following Oracle statement is used to search "address" start with "12-13" pattern matching:

Example

Oracle Using % (percent) wildcard Example 2

The following Oracle statement is used to search "address" ends with "Bhopal" pattern matching:

Example

Oracle Using % (percent) wildcard Example 3

The following Oracle statement is used to search "address" containing the pattern "civil":

Example

Oracle Using _ (underscore) wildcard Example

The following Oracle statement is used to search all customer with a "address" starting with any character and followed by "2":

Example

Oracle Using [charlist] wildcard Example

The following Oracle statement is used to search all customer with a "address" starting with "2", "c", or "b":

Example

Oracle Using [charlist] wildcard Example

The following Oracle statement is used to search all customer with a "address" starting with "a", "b", "c" or "d":

Example

Oracle Using [!charlist] wildcard Example

The following Oracle statement is used to search all customer with a "address" NOT starting with "a", "b", "c" or "d":

Example