조회
select (replace(컬럼명,'변경전데이터','변경후데이터')) 컬럼명 from 테이블명
ex)
 select (replace(strImageFilePath,'\\192.168.0.114\','')) strImageFilePath from tbl_Result

변경
 Update 테이블명 Set 컬럼명 = (replace(컬럼명,'변경전데이터','변경후데이터'))
 Select * From 테이블명
ex)
 Update tbl_Result Set strImageFilePath = (replace(strImageFilePath,'\\192.168.0.114\',''))
 Select * From tbl_Result
 

 

'공부 > SQL' 카테고리의 다른 글

[MSSQL기능] 상위 N개 행 편집  (0) 2023.03.30
[MSSQL설정] DB복원시 MDF기본 위치 설정  (0) 2022.05.06
[MSSQL] 중복 데이터 삭제  (0) 2021.08.26
[MSSQL] 특정 문자 변경 쿼리  (0) 2021.08.13
[Oracle] 테이블 컬럼 변경  (0) 2021.07.19

+ Recent posts