select * from books where title like '%the%';
select * from books where title like 'the%';
select * from books where title like '%the';
-- stock_quantity 의 숫자가, 2자리인 데이터 찾기 select * from books where stock_quantity like '__';