spNetAccount_DeleteNetAccountRelations
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@NetAccountID | int | IN |
Definition
Copy
CREATE PROCEDURE dbo.spNetAccount_DeleteNetAccountRelations
(
@NetAccountID int
)
AS
BEGIN
DELETE FROM [NetAccountRelation] WHERE NetAccountID = @NetAccountID OR RelationAccountID = @NetAccountID
END