<aside> ⚙️

</aside>

1. 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 '%여름%';

fullscan1.png

2. B-TREE INDEX

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 '여름%';