9 - Wildcards and LIKE

% any number of characters _ one character

select *
from client
where client_name LIKE '%LLC%';

02

Find employees born in a month with specified number of characters _

select * from employee
where birth_date LIKE '____-02%';