1. REPLACE() : 문자열 한 개 치환 SELECT REPLACE(컬럼, '문자열', '바꿀문자') select customerid, custstate, replace(custstate,'A','000') from customers; 2. REGEXP_REPLACE() : 다중 문자열 치환 REGEXP_REPLACE(컬럼, '문자열1|문자열2|문자열3', '바꿀문자') 1. 다중 문자열을 하나의 문자열로 치환하기 --custstate 지역 중 WA 지역에 사는 사람과 WA 가 아닌 지역에 사는 사람을 구분해서 보여주세요.-- select customerid, custstate, regexp_replace(custstate,'TX|OR|CA','Others') as newstate_flag from..