//조회시 변경하여 조회 select (replace(컬럼명,'변경전데이터','변경후데이터')) 컬럼명 from 테이블명 //예시 select (replace(strImageFilePath,'\\192.168.0.100\','')) strImageFilePath from tbl_Result //실제데이터 변경 Update 테이블명 Set 컬럼명 = (replace(컬럼명 ,'변경전데이터','변경후데이터')) //예시 Update tbl_Result Set strImageFilePath = (replace(strImageFilePath,'\\192.168.0.100\','')) |
'공부 > SQL' 카테고리의 다른 글
[MSSQL] 특정 문자열 변경 Replace (0) | 2022.02.28 |
---|---|
[MSSQL] 중복 데이터 삭제 (0) | 2021.08.26 |
[Oracle] 테이블 컬럼 변경 (0) | 2021.07.19 |
[MSSQL] 테이블 수정 시 오류_테이블을 다시 만들어야 하는 변경 내용 저장 사용 안 함 (0) | 2021.07.19 |
[Oracle] 세션강제종료 (0) | 2021.07.15 |