LIKE
Introduction to PostgreSQL LIKE operator
SELECT
first_name,
last_name
FROM
customer
WHERE
first_name LIKE 'Jen%';first_name | last_name
------------+-----------
Jennifer | Davis
Jennie | Terry
Jenny | Castro
(3 rows)PostgreSQL LIKE operator examples
1) Basic LIKE operator examples
2) Using the LIKE operator with table data

3) Using the LIKE operator a pattern that contains both wildcards

4) PostgreSQL NOT LIKE examples

PostgreSQL extensions of the LIKE operator

Operator
Equivalent
PostgreSQL LIKE operator with ESCAPE option
Last updated