spDelete_NetGroupRelation

Parameters

Parameter Parameter Type Mode Description
@PKID int IN

Definition

Copy



        CREATE PROCEDURE [dbo].[spDelete_NetGroupRelation]
        (
            @PKID int
        )
            AS
            BEGIN

            DELETE FROM [NetGroupRelation] WHERE ID = @PKID

            END