fnGetClientCategorizedFields
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ClientsID | int | IN |
Definition
Copy
CREATE FUNCTION [dbo].[fnGetClientCategorizedFields]
(
@ClientsID int
)
RETURNS TABLE
AS
RETURN (select * from dbo.vwCategorizedFields where clientsID=@clientsID or clientsID=0)