sql 서버 단순 저장 프로세스

658 단어
다음은 간단한 저장 프로세스이다
스토리지 프로세스 실행 execmyprocedure(참고: my procedure는 저장 프로세스의 이름)
CREATE PROCEDURE my_procedure                        --      my_procedure     
AS
BEGIN    --             ----------------------------------
	--      
	declare my_cursor cursor for
	select id,name from my_user
	--    
	open my_cursor
	--    
	declare   @id int
	declare   @name varchar(50)
	--    
	fetch next from my_cursor into @id,@name
	while @@FETCH_STATUS=0
	begin
		
		print(@id)
		select * from my_user where id=@id
		fetch next from my_cursor into @id,@name
	end
	--      
	close my_cursor
	deallocate my_cursor            --    ,      
END
GO

좋은 웹페이지 즐겨찾기