MariaDB SQL

MariaDB REPLACE (문자열 변환 함수)

ssamhago 2024. 4. 22. 23:48
728x90
320x100

REPLACE

 

 

 

REPLACE Function

 

 

 

문법
REPLACE(str, from_str, to_str)

 

 

 

설명
문자열 from_strto_str 문자열로 대체한 문자열 str을 반환합니다.
REPLACE()는 from_str을 검색할 때 대소문자의 일치여부를 확인하여 수행합니다.

 

 

 

Examples
SELECT REPLACE('www.r-ayo.com', 'w', 'Ww');
* 결과 :  WwWwWw.r-ayo.com

 

 

 

728x90
반응형