boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

How to create stored procedure to delete a record from the SQL Server database?

Updated on     Kisan Patel

This tutorial will show you how to create stored procedure to delete a record from the SQL Server database?

CREATE PROCEDURE DeleteRegionDetails
-- Add the parameters for the stored procedure here
@RegionId int
@Age smallint
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
Delete Region Where RegionID = @RegionId
END

Notice that we have only one parameter in the above stored procedure as we need only that to find out the record having RegionId and delete it.


SQL Server

Leave a Reply