PostgreSQL – ILIKE operator
The PostgreSQL ILIKE operator is used query data using pattern matching techniques. Its result include strings that are case-insensitive and follow the mentioned pattern.
It is important to know that PostgreSQL provides with 2 special wildcard characters for the purpose of patterns matching as below:
- Percent ( %) for matching any sequence of characters.
- Underscore ( _) for matching any single character.
Syntax: string ILIKE pattern;
For the sake of this article we will be using the sample DVD rental database, which is explained here and can be downloaded by clicking on this link in our examples.
Now, let’s look into a few examples.
Example 1:
Here we will make a query to find the customer in the “customer” table by looking at the “first_name” column to see if there is any value that begins with “ke” using the ILIKE operator in our sample database.
SELECT first_name, last_name FROM customer WHERE first_name ILIKE 'Ke%';
Output:
Notice few things in the above example, the WHERE clause contains a special expression: the first_name, the LIKE operator, and a string that contains a percent (%) character, which is referred to as a pattern.
Example 2:
Here we will query for customers whose first name begins with any single character, is followed by the literal string “aR”, and ends with any number of characters using the ILIKE operator in our sample database.
SELECT first_name, last_name FROM customer WHERE first_name ILIKE '_aR%';
Output:
Please Login to comment...