저장 프로시저 그룹화
지난 스터디에서 배운건데, 실제 활용도는 별로 없을듯하나.
버전 관리등에 사용해도 괜찮아보임.
지난 스터디에서 배운건데, 실제 활용도는 별로 없을듯하나.
버전 관리등에 사용해도 괜찮아보임.
--* 파일명 : 저장 프로시저 그룹화
--* 작성자 : 이장래
--* 작성일 : 2006년 9월 23일
--* 내 용 : ;number를 사용한 저장 프로시저 그룹화 예제
--* 작성자 : 이장래
--* 작성일 : 2006년 9월 23일
--* 내 용 : ;number를 사용한 저장 프로시저 그룹화 예제
-- usp_GetCustomer;1 저장 프로시저 만들기
CREATE PROC usp_GetCustomer;1
AS
SELECT CustomerID, City, CompanyName FROM Customers
ORDER BY CustomerID
GO
CREATE PROC usp_GetCustomer;1
AS
SELECT CustomerID, City, CompanyName FROM Customers
ORDER BY CustomerID
GO
-- usp_GetCustomer;2 저장 프로시저 만들기
CREATE PROC usp_GetCustomer;2
AS
SELECT CustomerID, City, CompanyName FROM Customers
ORDER BY City
GO
CREATE PROC usp_GetCustomer;2
AS
SELECT CustomerID, City, CompanyName FROM Customers
ORDER BY City
GO
-- 프로시저 수행하기
EXEC usp_GetCustomer;1
GO
EXEC usp_GetCustomer;2
GO
EXEC usp_GetCustomer;1
GO
EXEC usp_GetCustomer;2
GO
-- 프로시저 삭제하기
DROP PROC usp_GetCustomer
DROP PROC usp_GetCustomer