UFN_NAMEFORMATFUNCTION_ISJOINT
Returns true if the given function is joint.
Return
| Return Type |
|---|
| bit |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_NAMEFORMATFUNCTION_ISJOINT(
@ID uniqueidentifier
) returns bit
as
begin
declare @retval bit = 0;
select @retval = ISJOINTFUNCTION from dbo.NAMEFORMATFUNCTION where ID = @ID;
return @retval;
end