DECLARE @User_id varchar (12)
, @pi_no int
, @pReg_cnt int
, @pReg_no int
-- 변수선언
, @pi_no int
, @pReg_cnt int
, @pReg_no int
-- 변수선언
DECLARE cursor_name CURSOR FOR
select pReg_no, User_id, pi_no, pReg_cnt from tbl_luckyCoin_prizeReg order by pReg_no
OPEN cursor_name
FETCH NEXT FROM cursor_name into @pReg_no, @User_id, @pi_no, @pReg_cnt
-- Check @@FETCH_STATUS to see if there are any more rows to fetch.
WHILE @@FETCH_STATUS = 0
BEGIN
-- 작업 기술
-- This is executed as long as the previous fetch succeeds.
FETCH NEXT FROM cursor_name into @pReg_no, @User_id, @pi_no, @pReg_cnt
END
CLOSE cursor_name
DEALLOCATE cursor_name
'Databases' 카테고리의 다른 글
IP 주소를 사용하여 SQL Server 데이터베이스에 연결했을 때 속도문제 (1) | 2007.04.25 |
---|---|
페이징 처리 sp (1) | 2007.04.25 |
SQL쿼리 분석시-주요 단축키 (1) | 2007.04.25 |
꼭 필요한 tip 몇가지 (1) | 2007.04.25 |
Oracle에서 Not In 과 Not exists 차이점 (1) | 2007.04.25 |