fnGetNetGroupRelationID
Return
| Return Type |
|---|
| int |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @NetGroupID | int | IN | |
| @NetAccountID | int | IN |
Definition
Copy
CREATE FUNCTION [dbo].[fnGetNetGroupRelationID]
(
@NetGroupID int,
@NetAccountID int
)
RETURNS int
AS
BEGIN
RETURN(
SELECT ID
FROM [NetGroupRelation]
WHERE
(NetGroupID = @NetGroupID AND NetAccountID = @NetAccountID)
)
END