Understanding LIKE vs ILIKE in PostgreSQL

 The ILIKE operator is a PostgreSQL extension that works exactly like the LIKE operator, except that it is case insensitive. This means that it does not matter whether the string and the pattern have the same case or not. For example, the pattern 'A%' matches both 'apple' and 'Apple' when using the ILIKE operator.

Comments

Popular posts from this blog

Import and Export data

PostgreSQL CREATE INDEX Statement