Alter a Stored Procedure in a SQL Server
Course- SQL Sever Store Procedure >
We can modified Store procedure using ALter Key word.
Alter PROCEDURE registration
(
@studentid INT, --Input parameter , Studentid of the student
@studentname VARCHAR (200) OUT, -- Output parameter to collect the student name
@StudentEmail VARCHAR (200)OUT -- Output Parameter to collect the student email
)
AS
BEGIN
SELECT @studentname= Firstname+' '+Lastname,
@StudentEmail=email FROM tbl_Students WHERE studentid=@studentid
END