XE 글제목 변경 예시
update xe_documents set title=replace(title, '변경할단어명','변경하고자하는단어명')
적용
방법
update 변경될 테이블 set 변경될 컬럼=replace(변경될컬럼, '찾을문자열','변경될 문자열') where 조건문;
적용 예시
update personnel set picture=replace(picture,'/personnel/upload/','') where hname = 테스트;
update 변경될 테이블 set 변경될 컬럼=replace(변경될컬럼, '찾을문자열','변경될 문자열') where 조건문;
적용 예시
update personnel set picture=replace(picture,'/personnel/upload/','') where hname = 테스트;