<aside> ⚙️
</aside>
select count(*) from product where product_name like '%블루베리%';
select count(*) from product where product_name like '%안드로이드%';
select count(*) from product where product_name like '%청바지%';
select count(*) from product where product_name like '%여름%';
Full Scan
으로 테이블 전체를 읽어 데이터를 탐색한다.select count(*) from product where product_name like '블루베리%';
select count(*) from product where product_name like '안드로이드%';
select count(*) from product where product_name like '청바지%';
select count(*) from product where product_name like '여름%';