A review of the LIKE operator
The LIKE
operator allows us to filter our queries by matching one or more characters in text data. By using the %
wildcard we can match one or more characters in a string. This is useful when you want to return a result set that matches certain characteristics and can also be very helpful during exploratory data analysis or data cleansing tasks.
Let's explore how different usage of the %
wildcard will return different results by looking at the film
table of the Sakila DVD Rental database.
This exercise is part of the course
Functions for Manipulating Data in PostgreSQL
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Select all columns
SELECT ___
FROM film
-- Select only records that begin with the word 'GOLD'
WHERE title ___ 'GOLD___';