디비에서 특정문자를 변경 하는 방법아시는분 전체 디비내에 aaaaa 라는 문자를 bbbb 로 한번에 검색해서 한번에 바꾸는 방법 좀 알려주세요 정보
디비에서 특정문자를 변경 하는 방법아시는분 전체 디비내에 aaaaa 라는 문자를 bbbb 로 한번에 검색해서 한번에 바꾸는 방법 좀 알려주세요
본문
디비에서 특정문자를 변경 하는 방법아시는분
전체 디비내에 aaaaa 라는 문자를 bbbb 로 한번에 검색해서 한번에 바꾸는 방법 좀 알려주세요
전체 디비내에 aaaaa 라는 문자를 bbbb 로 한번에 검색해서 한번에 바꾸는 방법 좀 알려주세요
댓글 전체

update `테이블명` set 컬럼명 = replace(컬럼명, '찾을문자', '변경할문자');
ex)
update `g4_write_E000004` set wr_content = replace(wr_content, '../data/smarteditor', 'http://gekota.com/data/smarteditor');
ex)
update `g4_write_E000004` set wr_content = replace(wr_content, '../data/smarteditor', 'http://gekota.com/data/smarteditor');