Oracle 기존 컬럼에서 값을 +1 해주기
페이지 정보
본문
Oracle 빈 컬럼에 1씩 증가시켜서 데이터를 증가하기
ROWNUM을 이용하여 빈값에 UPDATE를 1씩 증가시켜서 하는 방법
update [테이블명] set [증가할 컬럼] = ROWNUM
값이 있는 컬럼에 1씩 증가하기
update [테이블명] set [증가할 컬럼] = NVL(MAX([증가할 컬럼]), 0)+ 1
select 를 활용해서 컬럼에 1 증가하기
SELECT
NVL(max(to_number([증가할 컬럼])), 0) +1 AS [증가할 컬럼]
from [테이블명]
(where 조건식)
참고자료
https://1061025.tistory.com/116
https://okky.kr/article/340919?note=1097000
https://alisyabob.tistory.com/151
ROWNUM을 이용하여 빈값에 UPDATE를 1씩 증가시켜서 하는 방법
update [테이블명] set [증가할 컬럼] = ROWNUM
값이 있는 컬럼에 1씩 증가하기
update [테이블명] set [증가할 컬럼] = NVL(MAX([증가할 컬럼]), 0)+ 1
select 를 활용해서 컬럼에 1 증가하기
SELECT
NVL(max(to_number([증가할 컬럼])), 0) +1 AS [증가할 컬럼]
from [테이블명]
(where 조건식)
참고자료
https://1061025.tistory.com/116
https://okky.kr/article/340919?note=1097000
https://alisyabob.tistory.com/151
댓글목록
등록된 댓글이 없습니다.