본문 바로가기

Program/ASP

update select top

DB 업데이트시 원하는 갯수만 업데이트 하는 구문


update 테이블명 set test = @test
from(select top 1 seq from 테이블명 where 비교 = @비교 order by seq desc) B
where B.xxx = 0 and 테이블명.seq = B.seq


'Program > ASP' 카테고리의 다른 글

asp 요일 함수  (0) 2011.11.08
asp 숫자 문자 구분  (0) 2011.08.23
" 큰따음표 DB저장시 변환 Chr(34)  (0) 2010.12.04
ASP 소수점 표시하기  (0) 2010.09.17
ASP 스크립트 시간제한 초과  (0) 2010.09.13