REGEXP_REPLACE 함수 : 정규식 함수로, 정규식을 이용해 replace를 한다.
REGEXP_REPLACE 함수
select ename, regexp_replace(sal,'[0-3]','*') from emp;
숫자 0부터 3까지는 다 *로 표현되었다.