일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- for loop
- python
- graphene-django
- check_password
- tkinter Radio 동적버튼
- SQL
- array
- Django
- Django-allauth
- flask
- FastAPI
- GraphQL
- allauth
- numpy
- Today
- Total
객
[MSSQL]코드 자동증가값 스크립트 본문
작업 하다가 작성한 스크립.
각각의 코드의 정수형 값을 자동 증가 하도록 한것.
IF (@work_id = 4)
BEGIG
select @cnt = count(*) from 테이블명 WHERE doc_id = @doc_id and doc_type = @doc_type and form_id = @form_id IF(@cnt != 0)
begin
select @SqeNo = reviewDocNo2 from 테이블명 WHERE doc_id = @doc_id and doc_type = @doc_type and form_id = @form_id
iF(@SqeNo != '')
begin
--특정 한 곳의 자릿수가 2 , 3 인지 검사
set @etc_cnt = LEN(substring (@SqeNo , 5 , charindex('-', substring(@SqeNo , 5, LEN(@SqeNo)))-1)
IF(@etc_cnt = 2) --2이면 실행 되는 곳
begin
set @SqeNo1 = substring(@SqeNo, 0 , 16) + convert(nvarchar , convert(int , substring(@SqeNo , 16 , 1)) + 1) + 'R'
end
ELSE IF(@etc_cnt = 3) --3일때 실행
begin
set @SqeNo1 = substring(@SqeNo, 0 , 17) + convert(nvarchar , convert(int , substring(@SqeNo , 17 , 1)) + 1) + 'R'
end
ELSE
begin
set @SqeNo1 = 0
end
end
--자동 증가한 코드 값을 필드에 업데이트 시킴
update 테이블명 set reviewDocNo2 = @SqeNo1 where doc_id = @doc_id and doc_type = @doc_type and form_id = @form_id
end
END
'[PL] > DB' 카테고리의 다른 글
[postgresql] substring 비교 (0) | 2013.08.04 |
---|---|
[MSSQL]해당년도 동안 입력된 레코드의 갯수 알아보는 스크립트 (0) | 2011.11.16 |
[MSSQL]시퀀스 초기화 (0) | 2011.09.18 |
[mssql ] 비밀번호 잊졌을때 변경 방법 (0) | 2011.07.09 |
[MSSQL] 저장프로시저1 (0) | 2011.05.27 |