select 필드1 from 테이블 where 필드2 like '단어%' 라고 실행을 하면 앞자리에 단어가 포함된 값을 찾아 온다. example1 쿼리 - select 유저이름, 전화번호 from 유저정보테이블 where 유저이름 like '홍%' 결과 홍길동 010-xxx-xxxx 홍아무개 010-xxx-xxxx example2 쿼리 - select 유저이름, 전화번호 from 유저정보테이블 where 유저이름 like '%길%' 결과 홍길동 010-xxx-xxxx 김길동 010-xxx-xxxx 다음과 같은 결과를 얻을 수 있다.