MariaDB REPLACE (문자열 변환 함수) REPLACE Function 문법 REPLACE(str, from_str, to_str) 설명 문자열 from_str을 to_str 문자열로 대체한 문자열 str을 반환합니다. REPLACE()는 from_str을 검색할 때 대소문자의 일치여부를 확인하여 수행합니다. Examples SELECT REPLACE('www.r-ayo.com', 'w', 'Ww'); * 결과 : WwWwWw.r-ayo.com MariaDB SQL 2024.04.22