스마트웹앱콘텐츠전문가/데이터베이스

[MySql]문자열 치환

9D4U 2020. 5. 21. 11:51
728x90
반응형

~/test1/~ => ~/test2/~ 

로 바꾸고 싶은 경우,

 

 - 변경 후의 데이터 조회(데이터 변경 이전 상황)

SELECT REPLACE(testColumn, '/test1/', '/test2/') as test FROM tableName; 

- 변경 실행

UPDATE tableName SET testColumn = REPLACE(testColumn , '/test1/', '/test2/');

 

 

 

728x90