CREATE PROCEDURE dbo.Delete_register_mst
@intglcode int
AS
delete from register_mst
where intglcode=@intglcode
RETURN

Comments ( 0 )