SELECT
	*
FROM
	product
WHERE
	product_name LIKE "%100\%%";

\%로 %의 기능을 무력화시켜 일반 문자처럼 사용할 수 있다 (Escape).

 

+ Recent posts