MSSQL update - replace : 기존의 데이터 변경하기
페이지 정보
본문
특정 컬럼의 문자들을 부분적으로 변경하고 싶을때 자바, 오라클, mssql 도 replace함수를 사용합니다.
SQL 인젝션 복구에 활용하면 매우 효과적으로 대응이 가능합니다.
사용법
문법 : replace( '대상문자열', '기존데이터', '바꿀데이터')
확인 : select replace([칼럼명], '기존데이터', '바꿀데이터'), * from [테이블명]
적용 : update [테이블명] set [컬럼명] = replace([컬럼명],'기존데이터','바꿀데이터')
1. 일반컬럼 : varchar, char, nvarchar, char
subject 라는 칼럼 내용중에 '변경전' 를 '변경후' 로 변경
변경될 자료 미리 확인
select replace(subject, '변경전', '변경후'), * from 테이블 where idx = '68'
위에서 변경될 자료를 미리 본후 이상없으면 아래 쿼리 실행
update 테이블 set subject= replace(subject, '변경전', '변경후') where idx = '68'
2. 날짜컬럼 : datetime
regDate 라는 datetime 컬럼에 '2012-01-17 12:22:35:66' 의 자료에서
2012-01-17 만 2008-03-21 로 변경하고자 할때
select replace(regDate, '2012-01-17', '2008-03-21'), * from 테이블 where idx = '68'
update tblBoard set regDate = replace(regDate, '2012-01-17', '2008-03-21') where idx = '68'
요렇게 하면 변경이 안됩니다.
날짜 형식은 저장되는 순서가 다르기 때문에 아래와 같이 convert 함수를 함께 사용해야 합니다.
update 테이블 set regDate = replace(convert(char(10), regDate, 112), '20120117', '20080321') where idx = '68'
update 테이블 set regDate = replace(convert(char(10), regDate, 20), '2012-01-17 13:50:45', '2008-03-21 13:50:45') where idx = '68'
update 테이블 set regDate = replace(convert(char(10), regDate, 20), '2012-11-05', '2012-07-09') where idx ='4' and idx = '17'
결과값이 아래와 같이 보여도 정상변경된것입니다.
(186 row(s) affected)
3. 텍스트컬럼 : text, ntext
update 테이블 set subject = replace(bd_content,'변경전','변경후') where idx='4'
요렇게 하면 에러가 뜹니다.
replace 함수의 인수 1에 대한 인수 데이터 형식 text이(가) 잘못되었습니다.
text 칼럼을 varchar(max) 로 임시 변경후 replace가 처리되어야 합니다.
update 테이블 set subject = replace(convert(varchar(max), subject),'변경전','변경후') where idx='4'
관련자료
http://ellieya.tistory.com/66
http://blog.naver.com/westlee25/150078828020
http://egloos.zum.com/littletrue/v/4144042
SQL 인젝션 복구에 활용하면 매우 효과적으로 대응이 가능합니다.
사용법
문법 : replace( '대상문자열', '기존데이터', '바꿀데이터')
확인 : select replace([칼럼명], '기존데이터', '바꿀데이터'), * from [테이블명]
적용 : update [테이블명] set [컬럼명] = replace([컬럼명],'기존데이터','바꿀데이터')
1. 일반컬럼 : varchar, char, nvarchar, char
subject 라는 칼럼 내용중에 '변경전' 를 '변경후' 로 변경
변경될 자료 미리 확인
select replace(subject, '변경전', '변경후'), * from 테이블 where idx = '68'
위에서 변경될 자료를 미리 본후 이상없으면 아래 쿼리 실행
update 테이블 set subject= replace(subject, '변경전', '변경후') where idx = '68'
2. 날짜컬럼 : datetime
regDate 라는 datetime 컬럼에 '2012-01-17 12:22:35:66' 의 자료에서
2012-01-17 만 2008-03-21 로 변경하고자 할때
select replace(regDate, '2012-01-17', '2008-03-21'), * from 테이블 where idx = '68'
update tblBoard set regDate = replace(regDate, '2012-01-17', '2008-03-21') where idx = '68'
요렇게 하면 변경이 안됩니다.
날짜 형식은 저장되는 순서가 다르기 때문에 아래와 같이 convert 함수를 함께 사용해야 합니다.
update 테이블 set regDate = replace(convert(char(10), regDate, 112), '20120117', '20080321') where idx = '68'
update 테이블 set regDate = replace(convert(char(10), regDate, 20), '2012-01-17 13:50:45', '2008-03-21 13:50:45') where idx = '68'
update 테이블 set regDate = replace(convert(char(10), regDate, 20), '2012-11-05', '2012-07-09') where idx ='4' and idx = '17'
결과값이 아래와 같이 보여도 정상변경된것입니다.
(186 row(s) affected)
3. 텍스트컬럼 : text, ntext
update 테이블 set subject = replace(bd_content,'변경전','변경후') where idx='4'
요렇게 하면 에러가 뜹니다.
replace 함수의 인수 1에 대한 인수 데이터 형식 text이(가) 잘못되었습니다.
text 칼럼을 varchar(max) 로 임시 변경후 replace가 처리되어야 합니다.
update 테이블 set subject = replace(convert(varchar(max), subject),'변경전','변경후') where idx='4'
관련자료
http://ellieya.tistory.com/66
http://blog.naver.com/westlee25/150078828020
http://egloos.zum.com/littletrue/v/4144042
댓글목록
등록된 댓글이 없습니다.